Skip to content

Commit b55d937

Browse files
1 parent b04be81 commit b55d937

File tree

6 files changed

+126
-9
lines changed

6 files changed

+126
-9
lines changed

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

clients/google-api-services-workloadmanager/v1/2.0.0/com/google/api/services/workloadmanager/v1/model/ExternalDataSources.java

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

3232
/**
33-
* Required. The asset type of the external data source must be one of go/cai-asset-types
33+
* Required. The asset type of the external data source this can be one of go/cai-asset-types to
34+
* override the default asset type or it can be a custom type defined by the user custom type must
35+
* match the asset type in the rule
3436
* The value may be {@code null}.
3537
*/
3638
@com.google.api.client.util.Key
@@ -59,15 +61,19 @@ public final class ExternalDataSources extends com.google.api.client.json.Generi
5961
private java.lang.String uri;
6062

6163
/**
62-
* Required. The asset type of the external data source must be one of go/cai-asset-types
64+
* Required. The asset type of the external data source this can be one of go/cai-asset-types to
65+
* override the default asset type or it can be a custom type defined by the user custom type must
66+
* match the asset type in the rule
6367
* @return value or {@code null} for none
6468
*/
6569
public java.lang.String getAssetType() {
6670
return assetType;
6771
}
6872

6973
/**
70-
* Required. The asset type of the external data source must be one of go/cai-asset-types
74+
* Required. The asset type of the external data source this can be one of go/cai-asset-types to
75+
* override the default asset type or it can be a custom type defined by the user custom type must
76+
* match the asset type in the rule
7177
* @param assetType assetType or {@code null} for none
7278
*/
7379
public ExternalDataSources setAssetType(java.lang.String assetType) {

clients/google-api-services-workloadmanager/v1/2.0.0/com/google/api/services/workloadmanager/v1/model/IsolationExpectations.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,14 @@
2929
@SuppressWarnings("javadoc")
3030
public final class IsolationExpectations extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Explicit overrides for ZI and ZS requirements to be used for resources that should be excluded
34+
* from ZI/ZS verification logic.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private RequirementOverride requirementOverride;
39+
3240
/**
3341
* The value may be {@code null}.
3442
*/
@@ -75,6 +83,25 @@ public final class IsolationExpectations extends com.google.api.client.json.Gene
7583
@com.google.api.client.util.Key
7684
private java.lang.String zsRegionState;
7785

86+
/**
87+
* Explicit overrides for ZI and ZS requirements to be used for resources that should be excluded
88+
* from ZI/ZS verification logic.
89+
* @return value or {@code null} for none
90+
*/
91+
public RequirementOverride getRequirementOverride() {
92+
return requirementOverride;
93+
}
94+
95+
/**
96+
* Explicit overrides for ZI and ZS requirements to be used for resources that should be excluded
97+
* from ZI/ZS verification logic.
98+
* @param requirementOverride requirementOverride or {@code null} for none
99+
*/
100+
public IsolationExpectations setRequirementOverride(RequirementOverride requirementOverride) {
101+
this.requirementOverride = requirementOverride;
102+
return this;
103+
}
104+
78105
/**
79106
* @return value or {@code null} for none
80107
*/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
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.workloadmanager.v1.model;
18+
19+
/**
20+
* Model definition for RequirementOverride.
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 Workload Manager API. For a detailed explanation see:
24+
* <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>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class RequirementOverride extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* The value may be {@code null}.
34+
*/
35+
@com.google.api.client.util.Key
36+
private java.lang.String ziOverride;
37+
38+
/**
39+
* The value may be {@code null}.
40+
*/
41+
@com.google.api.client.util.Key
42+
private java.lang.String zsOverride;
43+
44+
/**
45+
* @return value or {@code null} for none
46+
*/
47+
public java.lang.String getZiOverride() {
48+
return ziOverride;
49+
}
50+
51+
/**
52+
* @param ziOverride ziOverride or {@code null} for none
53+
*/
54+
public RequirementOverride setZiOverride(java.lang.String ziOverride) {
55+
this.ziOverride = ziOverride;
56+
return this;
57+
}
58+
59+
/**
60+
* @return value or {@code null} for none
61+
*/
62+
public java.lang.String getZsOverride() {
63+
return zsOverride;
64+
}
65+
66+
/**
67+
* @param zsOverride zsOverride or {@code null} for none
68+
*/
69+
public RequirementOverride setZsOverride(java.lang.String zsOverride) {
70+
this.zsOverride = zsOverride;
71+
return this;
72+
}
73+
74+
@Override
75+
public RequirementOverride set(String fieldName, Object value) {
76+
return (RequirementOverride) super.set(fieldName, value);
77+
}
78+
79+
@Override
80+
public RequirementOverride clone() {
81+
return (RequirementOverride) super.clone();
82+
}
83+
84+
}

clients/google-api-services-workloadmanager/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-workloadmanager</artifactId>
11-
<version>v1-rev20240701-2.0.0</version>
12-
<name>Workload Manager API v1-rev20240701-2.0.0</name>
11+
<version>v1-rev20240717-2.0.0</version>
12+
<name>Workload Manager API v1-rev20240717-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)