Skip to content

Commit 737a427

Browse files
1 parent 1aaecf1 commit 737a427

File tree

5 files changed

+75
-6
lines changed

5 files changed

+75
-6
lines changed

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

clients/google-api-services-iam/v1/2.0.0/com/google/api/services/iam/v1/model/InlineCertificateIssuanceConfig.java

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,18 @@ public final class InlineCertificateIssuanceConfig extends com.google.api.client
6969
@com.google.api.client.util.Key
7070
private java.lang.Integer rotationWindowPercentage;
7171

72+
/**
73+
* Optional. If set to true, the trust domain will utilize the GCP-provisioned default CA. A
74+
* default CA in the same region as the workload will be selected to issue the certificate.
75+
* Enabling this will clear any existing `ca_pools` configuration to provision the certificates.
76+
* NOTE: This field is mutually exclusive with `ca_pools`. If this flag is enabled, certificates
77+
* will be automatically provisioned from the default shared CAs. This flag should not be set if
78+
* you want to use your own CA pools to provision the certificates.
79+
* The value may be {@code null}.
80+
*/
81+
@com.google.api.client.util.Key
82+
private java.lang.Boolean useDefaultSharedCa;
83+
7284
/**
7385
* Optional. A required mapping of a Google Cloud region to the CA pool resource located in that
7486
* region. The CA pool is used for certificate issuance, adhering to the following constraints: *
@@ -157,6 +169,33 @@ public InlineCertificateIssuanceConfig setRotationWindowPercentage(java.lang.Int
157169
return this;
158170
}
159171

172+
/**
173+
* Optional. If set to true, the trust domain will utilize the GCP-provisioned default CA. A
174+
* default CA in the same region as the workload will be selected to issue the certificate.
175+
* Enabling this will clear any existing `ca_pools` configuration to provision the certificates.
176+
* NOTE: This field is mutually exclusive with `ca_pools`. If this flag is enabled, certificates
177+
* will be automatically provisioned from the default shared CAs. This flag should not be set if
178+
* you want to use your own CA pools to provision the certificates.
179+
* @return value or {@code null} for none
180+
*/
181+
public java.lang.Boolean getUseDefaultSharedCa() {
182+
return useDefaultSharedCa;
183+
}
184+
185+
/**
186+
* Optional. If set to true, the trust domain will utilize the GCP-provisioned default CA. A
187+
* default CA in the same region as the workload will be selected to issue the certificate.
188+
* Enabling this will clear any existing `ca_pools` configuration to provision the certificates.
189+
* NOTE: This field is mutually exclusive with `ca_pools`. If this flag is enabled, certificates
190+
* will be automatically provisioned from the default shared CAs. This flag should not be set if
191+
* you want to use your own CA pools to provision the certificates.
192+
* @param useDefaultSharedCa useDefaultSharedCa or {@code null} for none
193+
*/
194+
public InlineCertificateIssuanceConfig setUseDefaultSharedCa(java.lang.Boolean useDefaultSharedCa) {
195+
this.useDefaultSharedCa = useDefaultSharedCa;
196+
return this;
197+
}
198+
160199
@Override
161200
public InlineCertificateIssuanceConfig set(String fieldName, Object value) {
162201
return (InlineCertificateIssuanceConfig) super.set(fieldName, value);

clients/google-api-services-iam/v1/2.0.0/com/google/api/services/iam/v1/model/TrustStore.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,15 @@ public final class TrustStore extends com.google.api.client.json.GenericJson {
6060
com.google.api.client.util.Data.nullOf(TrustAnchor.class);
6161
}
6262

63+
/**
64+
* Optional. If set to True, the trust bundle will include the private ca managed identity
65+
* regional root public certificates. Important: `trust_default_shared_ca` is only supported for
66+
* managed identity trust domain resource.
67+
* The value may be {@code null}.
68+
*/
69+
@com.google.api.client.util.Key
70+
private java.lang.Boolean trustDefaultSharedCa;
71+
6372
/**
6473
* Optional. Set of intermediate CA certificates used for building the trust chain to the trust
6574
* anchor. Important: Intermediate CAs are only supported for X.509 federation.
@@ -100,6 +109,27 @@ public TrustStore setTrustAnchors(java.util.List<TrustAnchor> trustAnchors) {
100109
return this;
101110
}
102111

112+
/**
113+
* Optional. If set to True, the trust bundle will include the private ca managed identity
114+
* regional root public certificates. Important: `trust_default_shared_ca` is only supported for
115+
* managed identity trust domain resource.
116+
* @return value or {@code null} for none
117+
*/
118+
public java.lang.Boolean getTrustDefaultSharedCa() {
119+
return trustDefaultSharedCa;
120+
}
121+
122+
/**
123+
* Optional. If set to True, the trust bundle will include the private ca managed identity
124+
* regional root public certificates. Important: `trust_default_shared_ca` is only supported for
125+
* managed identity trust domain resource.
126+
* @param trustDefaultSharedCa trustDefaultSharedCa or {@code null} for none
127+
*/
128+
public TrustStore setTrustDefaultSharedCa(java.lang.Boolean trustDefaultSharedCa) {
129+
this.trustDefaultSharedCa = trustDefaultSharedCa;
130+
return this;
131+
}
132+
103133
@Override
104134
public TrustStore set(String fieldName, Object value) {
105135
return (TrustStore) super.set(fieldName, value);

clients/google-api-services-iam/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-iam</artifactId>
11-
<version>v1-rev20260227-2.0.0</version>
12-
<name>Identity and Access Management (IAM) API v1-rev20260227-2.0.0</name>
11+
<version>v1-rev20260306-2.0.0</version>
12+
<name>Identity and Access Management (IAM) API v1-rev20260306-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)