Skip to content

Commit 2a36004

Browse files
1 parent d9a23a6 commit 2a36004

10 files changed

Lines changed: 70 additions & 52 deletions

File tree

clients/google-api-services-datastream/v1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-datastream</artifactId>
25-
<version>v1-rev20260318-2.0.0</version>
25+
<version>v1-rev20260321-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-datastream:v1-rev20260318-2.0.0'
38+
implementation 'com.google.apis:google-api-services-datastream:v1-rev20260321-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-datastream/v1/2.0.0/com/google/api/services/datastream/v1/Datastream.java

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -499,10 +499,14 @@ public Get set(String parameterName, Object value) {
499499
}
500500
}
501501
/**
502-
* Lists information about the supported locations for this service. This method can be called in
503-
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
504-
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
505-
* public locations as well as private or other locations specifically visible to the project.
502+
* Lists information about the supported locations for this service. This method lists locations
503+
* based on the resource scope provided in the [ListLocationsRequest.name] field: * **Global
504+
* locations**: If `name` is empty, the method lists the public locations available to all projects.
505+
* * **Project-specific locations**: If `name` follows the format `projects/{project}`, the method
506+
* lists locations visible to that specific project. This includes public, private, or other
507+
* project-specific locations enabled for the project. For gRPC and client library implementations,
508+
* the resource name is passed as the `name` field. For direct service calls, the resource name is
509+
* incorporated into the request path based on the specific service implementation and version.
506510
*
507511
* Create a request for the method "locations.list".
508512
*
@@ -526,10 +530,15 @@ public class List extends DatastreamRequest<com.google.api.services.datastream.v
526530
java.util.regex.Pattern.compile("^projects/[^/]+$");
527531

528532
/**
529-
* Lists information about the supported locations for this service. This method can be called in
530-
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
531-
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
532-
* public locations as well as private or other locations specifically visible to the project.
533+
* Lists information about the supported locations for this service. This method lists locations
534+
* based on the resource scope provided in the [ListLocationsRequest.name] field: * **Global
535+
* locations**: If `name` is empty, the method lists the public locations available to all
536+
* projects. * **Project-specific locations**: If `name` follows the format `projects/{project}`,
537+
* the method lists locations visible to that specific project. This includes public, private, or
538+
* other project-specific locations enabled for the project. For gRPC and client library
539+
* implementations, the resource name is passed as the `name` field. For direct service calls, the
540+
* resource name is incorporated into the request path based on the specific service
541+
* implementation and version.
533542
*
534543
* Create a request for the method "locations.list".
535544
*

clients/google-api-services-datastream/v1/2.0.0/com/google/api/services/datastream/v1/model/FieldViolation.java

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ public final class FieldViolation extends com.google.api.client.json.GenericJson
4343
* = 2; } optional string email = 1; repeated EmailType type = 2; } string full_name = 1; repeated
4444
* EmailAddress email_addresses = 2; } In this example, in proto `field` could take one of the
4545
* following values: * `full_name` for a violation in the `full_name` value *
46-
* `email_addresses[1].email` for a violation in the `email` field of the first `email_addresses`
47-
* message * `email_addresses[3].type[2]` for a violation in the second `type` value in the third
46+
* `email_addresses[0].email` for a violation in the `email` field of the first `email_addresses`
47+
* message * `email_addresses[2].type[1]` for a violation in the second `type` value in the third
4848
* `email_addresses` message. In JSON, the same values are represented as: * `fullName` for a
49-
* violation in the `fullName` value * `emailAddresses[1].email` for a violation in the `email`
50-
* field of the first `emailAddresses` message * `emailAddresses[3].type[2]` for a violation in
49+
* violation in the `fullName` value * `emailAddresses[0].email` for a violation in the `email`
50+
* field of the first `emailAddresses` message * `emailAddresses[2].type[1]` for a violation in
5151
* the second `type` value in the third `emailAddresses` message.
5252
* The value may be {@code null}.
5353
*/
@@ -96,11 +96,11 @@ public FieldViolation setDescription(java.lang.String description) {
9696
* = 2; } optional string email = 1; repeated EmailType type = 2; } string full_name = 1; repeated
9797
* EmailAddress email_addresses = 2; } In this example, in proto `field` could take one of the
9898
* following values: * `full_name` for a violation in the `full_name` value *
99-
* `email_addresses[1].email` for a violation in the `email` field of the first `email_addresses`
100-
* message * `email_addresses[3].type[2]` for a violation in the second `type` value in the third
99+
* `email_addresses[0].email` for a violation in the `email` field of the first `email_addresses`
100+
* message * `email_addresses[2].type[1]` for a violation in the second `type` value in the third
101101
* `email_addresses` message. In JSON, the same values are represented as: * `fullName` for a
102-
* violation in the `fullName` value * `emailAddresses[1].email` for a violation in the `email`
103-
* field of the first `emailAddresses` message * `emailAddresses[3].type[2]` for a violation in
102+
* violation in the `fullName` value * `emailAddresses[0].email` for a violation in the `email`
103+
* field of the first `emailAddresses` message * `emailAddresses[2].type[1]` for a violation in
104104
* the second `type` value in the third `emailAddresses` message.
105105
* @return value or {@code null} for none
106106
*/
@@ -115,11 +115,11 @@ public java.lang.String getField() {
115115
* = 2; } optional string email = 1; repeated EmailType type = 2; } string full_name = 1; repeated
116116
* EmailAddress email_addresses = 2; } In this example, in proto `field` could take one of the
117117
* following values: * `full_name` for a violation in the `full_name` value *
118-
* `email_addresses[1].email` for a violation in the `email` field of the first `email_addresses`
119-
* message * `email_addresses[3].type[2]` for a violation in the second `type` value in the third
118+
* `email_addresses[0].email` for a violation in the `email` field of the first `email_addresses`
119+
* message * `email_addresses[2].type[1]` for a violation in the second `type` value in the third
120120
* `email_addresses` message. In JSON, the same values are represented as: * `fullName` for a
121-
* violation in the `fullName` value * `emailAddresses[1].email` for a violation in the `email`
122-
* field of the first `emailAddresses` message * `emailAddresses[3].type[2]` for a violation in
121+
* violation in the `fullName` value * `emailAddresses[0].email` for a violation in the `email`
122+
* field of the first `emailAddresses` message * `emailAddresses[2].type[1]` for a violation in
123123
* the second `type` value in the third `emailAddresses` message.
124124
* @param field field or {@code null} for none
125125
*/

clients/google-api-services-datastream/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-datastream</artifactId>
11-
<version>v1-rev20260318-2.0.0</version>
12-
<name>Datastream API v1-rev20260318-2.0.0</name>
11+
<version>v1-rev20260321-2.0.0</version>
12+
<name>Datastream API v1-rev20260321-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-datastream/v1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-datastream</artifactId>
25-
<version>v1-rev20260318-2.0.0</version>
25+
<version>v1-rev20260321-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-datastream:v1-rev20260318-2.0.0'
38+
implementation 'com.google.apis:google-api-services-datastream:v1-rev20260321-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-datastream/v1alpha1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-datastream</artifactId>
25-
<version>v1alpha1-rev20260318-2.0.0</version>
25+
<version>v1alpha1-rev20260321-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-datastream:v1alpha1-rev20260318-2.0.0'
38+
implementation 'com.google.apis:google-api-services-datastream:v1alpha1-rev20260321-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-datastream/v1alpha1/2.0.0/com/google/api/services/datastream/v1alpha1/Datastream.java

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -495,10 +495,14 @@ public Get set(String parameterName, Object value) {
495495
}
496496
}
497497
/**
498-
* Lists information about the supported locations for this service. This method can be called in
499-
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
500-
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
501-
* public locations as well as private or other locations specifically visible to the project.
498+
* Lists information about the supported locations for this service. This method lists locations
499+
* based on the resource scope provided in the [ListLocationsRequest.name] field: * **Global
500+
* locations**: If `name` is empty, the method lists the public locations available to all projects.
501+
* * **Project-specific locations**: If `name` follows the format `projects/{project}`, the method
502+
* lists locations visible to that specific project. This includes public, private, or other
503+
* project-specific locations enabled for the project. For gRPC and client library implementations,
504+
* the resource name is passed as the `name` field. For direct service calls, the resource name is
505+
* incorporated into the request path based on the specific service implementation and version.
502506
*
503507
* Create a request for the method "locations.list".
504508
*
@@ -522,10 +526,15 @@ public class List extends DatastreamRequest<com.google.api.services.datastream.v
522526
java.util.regex.Pattern.compile("^projects/[^/]+$");
523527

524528
/**
525-
* Lists information about the supported locations for this service. This method can be called in
526-
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
527-
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
528-
* public locations as well as private or other locations specifically visible to the project.
529+
* Lists information about the supported locations for this service. This method lists locations
530+
* based on the resource scope provided in the [ListLocationsRequest.name] field: * **Global
531+
* locations**: If `name` is empty, the method lists the public locations available to all
532+
* projects. * **Project-specific locations**: If `name` follows the format `projects/{project}`,
533+
* the method lists locations visible to that specific project. This includes public, private, or
534+
* other project-specific locations enabled for the project. For gRPC and client library
535+
* implementations, the resource name is passed as the `name` field. For direct service calls, the
536+
* resource name is incorporated into the request path based on the specific service
537+
* implementation and version.
529538
*
530539
* Create a request for the method "locations.list".
531540
*

clients/google-api-services-datastream/v1alpha1/2.0.0/com/google/api/services/datastream/v1alpha1/model/FieldViolation.java

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ public final class FieldViolation extends com.google.api.client.json.GenericJson
4343
* = 2; } optional string email = 1; repeated EmailType type = 2; } string full_name = 1; repeated
4444
* EmailAddress email_addresses = 2; } In this example, in proto `field` could take one of the
4545
* following values: * `full_name` for a violation in the `full_name` value *
46-
* `email_addresses[1].email` for a violation in the `email` field of the first `email_addresses`
47-
* message * `email_addresses[3].type[2]` for a violation in the second `type` value in the third
46+
* `email_addresses[0].email` for a violation in the `email` field of the first `email_addresses`
47+
* message * `email_addresses[2].type[1]` for a violation in the second `type` value in the third
4848
* `email_addresses` message. In JSON, the same values are represented as: * `fullName` for a
49-
* violation in the `fullName` value * `emailAddresses[1].email` for a violation in the `email`
50-
* field of the first `emailAddresses` message * `emailAddresses[3].type[2]` for a violation in
49+
* violation in the `fullName` value * `emailAddresses[0].email` for a violation in the `email`
50+
* field of the first `emailAddresses` message * `emailAddresses[2].type[1]` for a violation in
5151
* the second `type` value in the third `emailAddresses` message.
5252
* The value may be {@code null}.
5353
*/
@@ -96,11 +96,11 @@ public FieldViolation setDescription(java.lang.String description) {
9696
* = 2; } optional string email = 1; repeated EmailType type = 2; } string full_name = 1; repeated
9797
* EmailAddress email_addresses = 2; } In this example, in proto `field` could take one of the
9898
* following values: * `full_name` for a violation in the `full_name` value *
99-
* `email_addresses[1].email` for a violation in the `email` field of the first `email_addresses`
100-
* message * `email_addresses[3].type[2]` for a violation in the second `type` value in the third
99+
* `email_addresses[0].email` for a violation in the `email` field of the first `email_addresses`
100+
* message * `email_addresses[2].type[1]` for a violation in the second `type` value in the third
101101
* `email_addresses` message. In JSON, the same values are represented as: * `fullName` for a
102-
* violation in the `fullName` value * `emailAddresses[1].email` for a violation in the `email`
103-
* field of the first `emailAddresses` message * `emailAddresses[3].type[2]` for a violation in
102+
* violation in the `fullName` value * `emailAddresses[0].email` for a violation in the `email`
103+
* field of the first `emailAddresses` message * `emailAddresses[2].type[1]` for a violation in
104104
* the second `type` value in the third `emailAddresses` message.
105105
* @return value or {@code null} for none
106106
*/
@@ -115,11 +115,11 @@ public java.lang.String getField() {
115115
* = 2; } optional string email = 1; repeated EmailType type = 2; } string full_name = 1; repeated
116116
* EmailAddress email_addresses = 2; } In this example, in proto `field` could take one of the
117117
* following values: * `full_name` for a violation in the `full_name` value *
118-
* `email_addresses[1].email` for a violation in the `email` field of the first `email_addresses`
119-
* message * `email_addresses[3].type[2]` for a violation in the second `type` value in the third
118+
* `email_addresses[0].email` for a violation in the `email` field of the first `email_addresses`
119+
* message * `email_addresses[2].type[1]` for a violation in the second `type` value in the third
120120
* `email_addresses` message. In JSON, the same values are represented as: * `fullName` for a
121-
* violation in the `fullName` value * `emailAddresses[1].email` for a violation in the `email`
122-
* field of the first `emailAddresses` message * `emailAddresses[3].type[2]` for a violation in
121+
* violation in the `fullName` value * `emailAddresses[0].email` for a violation in the `email`
122+
* field of the first `emailAddresses` message * `emailAddresses[2].type[1]` for a violation in
123123
* the second `type` value in the third `emailAddresses` message.
124124
* @param field field or {@code null} for none
125125
*/

clients/google-api-services-datastream/v1alpha1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-datastream</artifactId>
11-
<version>v1alpha1-rev20260318-2.0.0</version>
12-
<name>Datastream API v1alpha1-rev20260318-2.0.0</name>
11+
<version>v1alpha1-rev20260321-2.0.0</version>
12+
<name>Datastream API v1alpha1-rev20260321-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-datastream/v1alpha1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-datastream</artifactId>
25-
<version>v1alpha1-rev20260318-2.0.0</version>
25+
<version>v1alpha1-rev20260321-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-datastream:v1alpha1-rev20260318-2.0.0'
38+
implementation 'com.google.apis:google-api-services-datastream:v1alpha1-rev20260321-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)