Skip to content

Commit 170c3ab

Browse files
1 parent aa15b15 commit 170c3ab

File tree

5 files changed

+90
-9
lines changed

5 files changed

+90
-9
lines changed

clients/google-api-services-config/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-config</artifactId>
25-
<version>v1-rev20240410-2.0.0</version>
25+
<version>v1-rev20240424-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-config:v1-rev20240410-2.0.0'
38+
implementation 'com.google.apis:google-api-services-config:v1-rev20240424-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-config/v1/2.0.0/com/google/api/services/config/v1/model/Deployment.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
public final class Deployment extends com.google.api.client.json.GenericJson {
3232

3333
/**
34-
* Optional. Arbitrary key-value metadata storage e.g. to help client tools identifiy deployments
34+
* Optional. Arbitrary key-value metadata storage e.g. to help client tools identify deployments
3535
* during automation. See https://google.aip.dev/148#annotations for details on format and size
3636
* limitations.
3737
* The value may be {@code null}.
@@ -211,7 +211,7 @@ public final class Deployment extends com.google.api.client.json.GenericJson {
211211
private java.lang.String workerPool;
212212

213213
/**
214-
* Optional. Arbitrary key-value metadata storage e.g. to help client tools identifiy deployments
214+
* Optional. Arbitrary key-value metadata storage e.g. to help client tools identify deployments
215215
* during automation. See https://google.aip.dev/148#annotations for details on format and size
216216
* limitations.
217217
* @return value or {@code null} for none
@@ -221,7 +221,7 @@ public java.util.Map<String, java.lang.String> getAnnotations() {
221221
}
222222

223223
/**
224-
* Optional. Arbitrary key-value metadata storage e.g. to help client tools identifiy deployments
224+
* Optional. Arbitrary key-value metadata storage e.g. to help client tools identify deployments
225225
* during automation. See https://google.aip.dev/148#annotations for details on format and size
226226
* limitations.
227227
* @param annotations annotations or {@code null} for none

clients/google-api-services-config/v1/2.0.0/com/google/api/services/config/v1/model/Preview.java

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,15 @@
3131
@SuppressWarnings("javadoc")
3232
public final class Preview extends com.google.api.client.json.GenericJson {
3333

34+
/**
35+
* Optional. Arbitrary key-value metadata storage e.g. to help client tools identifiy preview
36+
* during automation. See https://google.aip.dev/148#annotations for details on format and size
37+
* limitations.
38+
* The value may be {@code null}.
39+
*/
40+
@com.google.api.client.util.Key
41+
private java.util.Map<String, java.lang.String> annotations;
42+
3443
/**
3544
* Optional. User-defined location of Cloud Build logs, artifacts, and in Google Cloud Storage.
3645
* Format: `gs://{bucket}/{folder}` A default bucket will be bootstrapped if the field is not set
@@ -155,6 +164,21 @@ public final class Preview extends com.google.api.client.json.GenericJson {
155164
@com.google.api.client.util.Key
156165
private java.util.List<TerraformError> tfErrors;
157166

167+
/**
168+
* Output only. The current Terraform version set on the preview. It is in the format of
169+
* "Major.Minor.Patch", for example, "1.3.10".
170+
* The value may be {@code null}.
171+
*/
172+
@com.google.api.client.util.Key
173+
private java.lang.String tfVersion;
174+
175+
/**
176+
* Optional. The user-specified Terraform version constraint. Example: "=1.3.10".
177+
* The value may be {@code null}.
178+
*/
179+
@com.google.api.client.util.Key
180+
private java.lang.String tfVersionConstraint;
181+
158182
/**
159183
* Optional. The user-specified Worker Pool resource in which the Cloud Build job will execute.
160184
* Format projects/{project}/locations/{location}/workerPools/{workerPoolId} If this field is
@@ -165,6 +189,27 @@ public final class Preview extends com.google.api.client.json.GenericJson {
165189
@com.google.api.client.util.Key
166190
private java.lang.String workerPool;
167191

192+
/**
193+
* Optional. Arbitrary key-value metadata storage e.g. to help client tools identifiy preview
194+
* during automation. See https://google.aip.dev/148#annotations for details on format and size
195+
* limitations.
196+
* @return value or {@code null} for none
197+
*/
198+
public java.util.Map<String, java.lang.String> getAnnotations() {
199+
return annotations;
200+
}
201+
202+
/**
203+
* Optional. Arbitrary key-value metadata storage e.g. to help client tools identifiy preview
204+
* during automation. See https://google.aip.dev/148#annotations for details on format and size
205+
* limitations.
206+
* @param annotations annotations or {@code null} for none
207+
*/
208+
public Preview setAnnotations(java.util.Map<String, java.lang.String> annotations) {
209+
this.annotations = annotations;
210+
return this;
211+
}
212+
168213
/**
169214
* Optional. User-defined location of Cloud Build logs, artifacts, and in Google Cloud Storage.
170215
* Format: `gs://{bucket}/{folder}` A default bucket will be bootstrapped if the field is not set
@@ -461,6 +506,42 @@ public Preview setTfErrors(java.util.List<TerraformError> tfErrors) {
461506
return this;
462507
}
463508

509+
/**
510+
* Output only. The current Terraform version set on the preview. It is in the format of
511+
* "Major.Minor.Patch", for example, "1.3.10".
512+
* @return value or {@code null} for none
513+
*/
514+
public java.lang.String getTfVersion() {
515+
return tfVersion;
516+
}
517+
518+
/**
519+
* Output only. The current Terraform version set on the preview. It is in the format of
520+
* "Major.Minor.Patch", for example, "1.3.10".
521+
* @param tfVersion tfVersion or {@code null} for none
522+
*/
523+
public Preview setTfVersion(java.lang.String tfVersion) {
524+
this.tfVersion = tfVersion;
525+
return this;
526+
}
527+
528+
/**
529+
* Optional. The user-specified Terraform version constraint. Example: "=1.3.10".
530+
* @return value or {@code null} for none
531+
*/
532+
public java.lang.String getTfVersionConstraint() {
533+
return tfVersionConstraint;
534+
}
535+
536+
/**
537+
* Optional. The user-specified Terraform version constraint. Example: "=1.3.10".
538+
* @param tfVersionConstraint tfVersionConstraint or {@code null} for none
539+
*/
540+
public Preview setTfVersionConstraint(java.lang.String tfVersionConstraint) {
541+
this.tfVersionConstraint = tfVersionConstraint;
542+
return this;
543+
}
544+
464545
/**
465546
* Optional. The user-specified Worker Pool resource in which the Cloud Build job will execute.
466547
* Format projects/{project}/locations/{location}/workerPools/{workerPoolId} If this field is

clients/google-api-services-config/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-config</artifactId>
11-
<version>v1-rev20240410-2.0.0</version>
12-
<name>Infrastructure Manager API v1-rev20240410-2.0.0</name>
11+
<version>v1-rev20240424-2.0.0</version>
12+
<name>Infrastructure Manager API v1-rev20240424-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-config/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-config</artifactId>
25-
<version>v1-rev20240410-2.0.0</version>
25+
<version>v1-rev20240424-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-config:v1-rev20240410-2.0.0'
38+
implementation 'com.google.apis:google-api-services-config:v1-rev20240424-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)