2727import java .util .regex .Pattern ;
2828
2929/**
30- * Google Cloud Logging sinks can be used to control the export of your logs. Each sink specifies
31- * the export of a set of log entries to a certain destination. A sink consists of a name, unique to
32- * the project, a filter for choosing the log entries to export and a destination for the log
30+ * Stackdriver Logging sinks can be used to control the export of your logs. Each sink specifies the
31+ * export of a set of log entries to a certain destination. A sink consists of a name, unique to the
32+ * project, a filter for choosing the log entries to export and a destination for the log
3333 * entries.
3434 *
3535 * <p>Sink destination can either be a Google Cloud Storage bucket (see
@@ -56,7 +56,7 @@ public abstract static class Destination implements Serializable {
5656 private final Type type ;
5757
5858 /**
59- * Type of destination for Google Cloud Logging sink.
59+ * Type of destination for Stackdriver Logging sink.
6060 */
6161 public enum Type {
6262 /**
@@ -375,8 +375,8 @@ static <T extends Destination> T fromPb(String destinationPb) {
375375 }
376376
377377 /**
378- * Available log entry formats. Log entries can be written to Cloud Logging in either format and
379- * can be exported in either format. Version 2 is the preferred format.
378+ * Available log entry formats. Log entries can be written to Stackdriver Logging in either format
379+ * and can be exported in either format. Version 2 is the preferred format.
380380 */
381381 public enum VersionFormat {
382382 V1 (LogSink .VersionFormat .V1 ),
@@ -434,7 +434,7 @@ public abstract static class Builder {
434434 * Sets an advanced logs filter. Only log entries matching that filter are exported. The filter
435435 * must be consistent with the log entry format specified with
436436 * {@link #versionFormat(VersionFormat)}, regardless of the format of the log entry that was
437- * originally written to Google Cloud Logging. Example (V2 format):
437+ * originally written to Stackdriver Logging. Example (V2 format):
438438 * {@code logName=projects/my-projectid/logs/syslog AND severity>=ERROR}.
439439 *
440440 * @see <a href="https://cloud.google.com/logging/docs/view/advanced_filters">Advanced Log
@@ -538,7 +538,7 @@ public <T extends Destination> T destination() {
538538 /**
539539 * Returns an advanced logs filter. Only log entries matching that filter are exported. The filter
540540 * must be consistent with the log entry format specified in {@link #versionFormat()}, regardless
541- * of the format of the log entry that wa originally written to Google Cloud Logging. Example (V2
541+ * of the format of the log entry that wa originally written to Stackdriver Logging. Example (V2
542542 * format): {@code logName=projects/my-projectid/logs/syslog AND severity>=ERROR}.
543543 *
544544 * @see <a href="https://cloud.google.com/logging/docs/view/advanced_filters">Advanced Log
0 commit comments