Skip to content

Commit 70debcb

Browse files
1 parent 5fdb8c4 commit 70debcb

File tree

5 files changed

+54
-6
lines changed

5 files changed

+54
-6
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-rev20240821-2.0.0</version>
25+
<version>v1-rev20241002-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-rev20240821-2.0.0'
38+
implementation 'com.google.apis:google-api-services-workloadmanager:v1-rev20241002-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,13 @@ public final class ExecutionResult extends com.google.api.client.json.GenericJso
7070
@com.google.api.client.util.Key
7171
private java.lang.String severity;
7272

73+
/**
74+
* Execution result type of the scanned resource
75+
* The value may be {@code null}.
76+
*/
77+
@com.google.api.client.util.Key
78+
private java.lang.String type;
79+
7380
/**
7481
* The details of violation in an evaluation result.
7582
* The value may be {@code null}.
@@ -169,6 +176,23 @@ public ExecutionResult setSeverity(java.lang.String severity) {
169176
return this;
170177
}
171178

179+
/**
180+
* Execution result type of the scanned resource
181+
* @return value or {@code null} for none
182+
*/
183+
public java.lang.String getType() {
184+
return type;
185+
}
186+
187+
/**
188+
* Execution result type of the scanned resource
189+
* @param type type or {@code null} for none
190+
*/
191+
public ExecutionResult setType(java.lang.String type) {
192+
this.type = type;
193+
return this;
194+
}
195+
172196
/**
173197
* The details of violation in an evaluation result.
174198
* @return value or {@code null} for none

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,13 @@ public final class SapDiscoveryResourceInstanceProperties extends com.google.api
5757
@com.google.api.client.util.Key
5858
private java.lang.String instanceRole;
5959

60+
/**
61+
* Optional. Instance is part of a DR site.
62+
* The value may be {@code null}.
63+
*/
64+
@com.google.api.client.util.Key
65+
private java.lang.Boolean isDrSite;
66+
6067
/**
6168
* Optional. A virtual hostname of the instance if it has one.
6269
* The value may be {@code null}.
@@ -132,6 +139,23 @@ public SapDiscoveryResourceInstanceProperties setInstanceRole(java.lang.String i
132139
return this;
133140
}
134141

142+
/**
143+
* Optional. Instance is part of a DR site.
144+
* @return value or {@code null} for none
145+
*/
146+
public java.lang.Boolean getIsDrSite() {
147+
return isDrSite;
148+
}
149+
150+
/**
151+
* Optional. Instance is part of a DR site.
152+
* @param isDrSite isDrSite or {@code null} for none
153+
*/
154+
public SapDiscoveryResourceInstanceProperties setIsDrSite(java.lang.Boolean isDrSite) {
155+
this.isDrSite = isDrSite;
156+
return this;
157+
}
158+
135159
/**
136160
* Optional. A virtual hostname of the instance if it has one.
137161
* @return value or {@code null} for none

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

0 commit comments

Comments
 (0)