Skip to content

Commit 29fc890

Browse files
1 parent 45e0f2c commit 29fc890

File tree

8 files changed

+151
-12
lines changed

8 files changed

+151
-12
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-rev20250604-2.0.0</version>
25+
<version>v1-rev20250813-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-rev20250604-2.0.0'
38+
implementation 'com.google.apis:google-api-services-config:v1-rev20250813-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -445,22 +445,22 @@ public List setName(java.lang.String name) {
445445
}
446446

447447
/**
448-
* Optional. A list of extra location types that should be used as conditions for
449-
* controlling the visibility of the locations.
448+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
449+
* documented otherwise. This is primarily for internal usage.
450450
*/
451451
@com.google.api.client.util.Key
452452
private java.util.List<java.lang.String> extraLocationTypes;
453453

454-
/** Optional. A list of extra location types that should be used as conditions for controlling the
455-
visibility of the locations.
454+
/** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented
455+
otherwise. This is primarily for internal usage.
456456
*/
457457
public java.util.List<java.lang.String> getExtraLocationTypes() {
458458
return extraLocationTypes;
459459
}
460460

461461
/**
462-
* Optional. A list of extra location types that should be used as conditions for
463-
* controlling the visibility of the locations.
462+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
463+
* documented otherwise. This is primarily for internal usage.
464464
*/
465465
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
466466
this.extraLocationTypes = extraLocationTypes;

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,13 @@ public final class Deployment extends com.google.api.client.json.GenericJson {
134134
@com.google.api.client.util.Key
135135
private java.lang.String name;
136136

137+
/**
138+
* Optional. This field specifies the provider configurations.
139+
* The value may be {@code null}.
140+
*/
141+
@com.google.api.client.util.Key
142+
private ProviderConfig providerConfig;
143+
137144
/**
138145
* Optional. Input to control quota checks for resources in terraform configuration files. There
139146
* are limited resources on which quota validation applies.
@@ -457,6 +464,23 @@ public Deployment setName(java.lang.String name) {
457464
return this;
458465
}
459466

467+
/**
468+
* Optional. This field specifies the provider configurations.
469+
* @return value or {@code null} for none
470+
*/
471+
public ProviderConfig getProviderConfig() {
472+
return providerConfig;
473+
}
474+
475+
/**
476+
* Optional. This field specifies the provider configurations.
477+
* @param providerConfig providerConfig or {@code null} for none
478+
*/
479+
public Deployment setProviderConfig(ProviderConfig providerConfig) {
480+
this.providerConfig = providerConfig;
481+
return this;
482+
}
483+
460484
/**
461485
* Optional. Input to control quota checks for resources in terraform configuration files. There
462486
* are limited resources on which quota validation applies.

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,13 @@ public final class Preview extends com.google.api.client.json.GenericJson {
134134
@com.google.api.client.util.Key
135135
private java.lang.String previewMode;
136136

137+
/**
138+
* Optional. This field specifies the provider configurations.
139+
* The value may be {@code null}.
140+
*/
141+
@com.google.api.client.util.Key
142+
private ProviderConfig providerConfig;
143+
137144
/**
138145
* Required. User-specified Service Account (SA) credentials to be used when previewing resources.
139146
* Format: `projects/{projectID}/serviceAccounts/{serviceAccount}`
@@ -434,6 +441,23 @@ public Preview setPreviewMode(java.lang.String previewMode) {
434441
return this;
435442
}
436443

444+
/**
445+
* Optional. This field specifies the provider configurations.
446+
* @return value or {@code null} for none
447+
*/
448+
public ProviderConfig getProviderConfig() {
449+
return providerConfig;
450+
}
451+
452+
/**
453+
* Optional. This field specifies the provider configurations.
454+
* @param providerConfig providerConfig or {@code null} for none
455+
*/
456+
public Preview setProviderConfig(ProviderConfig providerConfig) {
457+
this.providerConfig = providerConfig;
458+
return this;
459+
}
460+
437461
/**
438462
* Required. User-specified Service Account (SA) credentials to be used when previewing resources.
439463
* Format: `projects/{projectID}/serviceAccounts/{serviceAccount}`
Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.config.v1.model;
18+
19+
/**
20+
* ProviderConfig contains the provider configurations.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Infrastructure Manager API. For a detailed
24+
* explanation see:
25+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class ProviderConfig extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. ProviderSource specifies the source type of the provider.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String sourceType;
39+
40+
/**
41+
* Optional. ProviderSource specifies the source type of the provider.
42+
* @return value or {@code null} for none
43+
*/
44+
public java.lang.String getSourceType() {
45+
return sourceType;
46+
}
47+
48+
/**
49+
* Optional. ProviderSource specifies the source type of the provider.
50+
* @param sourceType sourceType or {@code null} for none
51+
*/
52+
public ProviderConfig setSourceType(java.lang.String sourceType) {
53+
this.sourceType = sourceType;
54+
return this;
55+
}
56+
57+
@Override
58+
public ProviderConfig set(String fieldName, Object value) {
59+
return (ProviderConfig) super.set(fieldName, value);
60+
}
61+
62+
@Override
63+
public ProviderConfig clone() {
64+
return (ProviderConfig) super.clone();
65+
}
66+
67+
}

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,13 @@ public final class Revision extends com.google.api.client.json.GenericJson {
100100
@com.google.api.client.util.Key
101101
private java.lang.String name;
102102

103+
/**
104+
* Output only. This field specifies the provider configurations.
105+
* The value may be {@code null}.
106+
*/
107+
@com.google.api.client.util.Key
108+
private ProviderConfig providerConfig;
109+
103110
/**
104111
* Optional. Input to control quota checks for resources in terraform configuration files. There
105112
* are limited resources on which quota validation applies.
@@ -351,6 +358,23 @@ public Revision setName(java.lang.String name) {
351358
return this;
352359
}
353360

361+
/**
362+
* Output only. This field specifies the provider configurations.
363+
* @return value or {@code null} for none
364+
*/
365+
public ProviderConfig getProviderConfig() {
366+
return providerConfig;
367+
}
368+
369+
/**
370+
* Output only. This field specifies the provider configurations.
371+
* @param providerConfig providerConfig or {@code null} for none
372+
*/
373+
public Revision setProviderConfig(ProviderConfig providerConfig) {
374+
this.providerConfig = providerConfig;
375+
return this;
376+
}
377+
354378
/**
355379
* Optional. Input to control quota checks for resources in terraform configuration files. There
356380
* are limited resources on which quota validation applies.

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-rev20250604-2.0.0</version>
12-
<name>Infrastructure Manager API v1-rev20250604-2.0.0</name>
11+
<version>v1-rev20250813-2.0.0</version>
12+
<name>Infrastructure Manager API v1-rev20250813-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-rev20250604-2.0.0</version>
25+
<version>v1-rev20250813-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-rev20250604-2.0.0'
38+
implementation 'com.google.apis:google-api-services-config:v1-rev20250813-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)