Skip to content

Commit 6b18cc6

Browse files
chore: regenerate workloadmanager client
1 parent 38c1764 commit 6b18cc6

32 files changed

+6333
-53
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-rev20251112-2.0.0</version>
25+
<version>v1-rev20260204-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-rev20251112-2.0.0'
38+
implementation 'com.google.apis:google-api-services-workloadmanager:v1-rev20260204-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 1759 additions & 9 deletions
Large diffs are not rendered by default.
Lines changed: 162 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,162 @@
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+
* Active directory details
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 ActiveDirectory extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Optional. DNS IP address
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String dnsAddress;
38+
39+
/**
40+
* Optional. human readable form of a domain such as “google.com”.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.lang.String domain;
45+
46+
/**
47+
* Optional. domain username
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private java.lang.String domainUsername;
52+
53+
/**
54+
* Required. secret_manager_secret
55+
* The value may be {@code null}.
56+
*/
57+
@com.google.api.client.util.Key
58+
private java.lang.String secretManagerSecret;
59+
60+
/**
61+
* Required. active directory type
62+
* The value may be {@code null}.
63+
*/
64+
@com.google.api.client.util.Key
65+
private java.lang.String type;
66+
67+
/**
68+
* Optional. DNS IP address
69+
* @return value or {@code null} for none
70+
*/
71+
public java.lang.String getDnsAddress() {
72+
return dnsAddress;
73+
}
74+
75+
/**
76+
* Optional. DNS IP address
77+
* @param dnsAddress dnsAddress or {@code null} for none
78+
*/
79+
public ActiveDirectory setDnsAddress(java.lang.String dnsAddress) {
80+
this.dnsAddress = dnsAddress;
81+
return this;
82+
}
83+
84+
/**
85+
* Optional. human readable form of a domain such as “google.com”.
86+
* @return value or {@code null} for none
87+
*/
88+
public java.lang.String getDomain() {
89+
return domain;
90+
}
91+
92+
/**
93+
* Optional. human readable form of a domain such as “google.com”.
94+
* @param domain domain or {@code null} for none
95+
*/
96+
public ActiveDirectory setDomain(java.lang.String domain) {
97+
this.domain = domain;
98+
return this;
99+
}
100+
101+
/**
102+
* Optional. domain username
103+
* @return value or {@code null} for none
104+
*/
105+
public java.lang.String getDomainUsername() {
106+
return domainUsername;
107+
}
108+
109+
/**
110+
* Optional. domain username
111+
* @param domainUsername domainUsername or {@code null} for none
112+
*/
113+
public ActiveDirectory setDomainUsername(java.lang.String domainUsername) {
114+
this.domainUsername = domainUsername;
115+
return this;
116+
}
117+
118+
/**
119+
* Required. secret_manager_secret
120+
* @return value or {@code null} for none
121+
*/
122+
public java.lang.String getSecretManagerSecret() {
123+
return secretManagerSecret;
124+
}
125+
126+
/**
127+
* Required. secret_manager_secret
128+
* @param secretManagerSecret secretManagerSecret or {@code null} for none
129+
*/
130+
public ActiveDirectory setSecretManagerSecret(java.lang.String secretManagerSecret) {
131+
this.secretManagerSecret = secretManagerSecret;
132+
return this;
133+
}
134+
135+
/**
136+
* Required. active directory type
137+
* @return value or {@code null} for none
138+
*/
139+
public java.lang.String getType() {
140+
return type;
141+
}
142+
143+
/**
144+
* Required. active directory type
145+
* @param type type or {@code null} for none
146+
*/
147+
public ActiveDirectory setType(java.lang.String type) {
148+
this.type = type;
149+
return this;
150+
}
151+
152+
@Override
153+
public ActiveDirectory set(String fieldName, Object value) {
154+
return (ActiveDirectory) super.set(fieldName, value);
155+
}
156+
157+
@Override
158+
public ActiveDirectory clone() {
159+
return (ActiveDirectory) super.clone();
160+
}
161+
162+
}
Lines changed: 190 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,190 @@
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+
* The Actuation object represents the bootstrap state and output results of deployed infrastructure
21+
* and software.
22+
*
23+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
24+
* transmitted over HTTP when working with the Workload Manager API. For a detailed 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 Actuation extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Output only. [Output only] Actuation output
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private ActuationOutput actuationOutput;
39+
40+
/**
41+
* Output only. [Output only] Deployment output
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.util.List<DeploymentOutput> deploymentOutput;
46+
47+
/**
48+
* Output only. [Output only] End time stamp
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private String endTime;
53+
54+
/**
55+
* The name of actuation resource. The format is
56+
* projects/{project}/locations/{location}/deployments/{deployment}/actuations/{actuation}
57+
* The value may be {@code null}.
58+
*/
59+
@com.google.api.client.util.Key
60+
private java.lang.String name;
61+
62+
/**
63+
* Output only. [Output only] Start time stamp
64+
* The value may be {@code null}.
65+
*/
66+
@com.google.api.client.util.Key
67+
private String startTime;
68+
69+
/**
70+
* Output only. [Output only] Actuation state
71+
* The value may be {@code null}.
72+
*/
73+
@com.google.api.client.util.Key
74+
private java.lang.String state;
75+
76+
/**
77+
* Output only. [Output only] Actuation output
78+
* @return value or {@code null} for none
79+
*/
80+
public ActuationOutput getActuationOutput() {
81+
return actuationOutput;
82+
}
83+
84+
/**
85+
* Output only. [Output only] Actuation output
86+
* @param actuationOutput actuationOutput or {@code null} for none
87+
*/
88+
public Actuation setActuationOutput(ActuationOutput actuationOutput) {
89+
this.actuationOutput = actuationOutput;
90+
return this;
91+
}
92+
93+
/**
94+
* Output only. [Output only] Deployment output
95+
* @return value or {@code null} for none
96+
*/
97+
public java.util.List<DeploymentOutput> getDeploymentOutput() {
98+
return deploymentOutput;
99+
}
100+
101+
/**
102+
* Output only. [Output only] Deployment output
103+
* @param deploymentOutput deploymentOutput or {@code null} for none
104+
*/
105+
public Actuation setDeploymentOutput(java.util.List<DeploymentOutput> deploymentOutput) {
106+
this.deploymentOutput = deploymentOutput;
107+
return this;
108+
}
109+
110+
/**
111+
* Output only. [Output only] End time stamp
112+
* @return value or {@code null} for none
113+
*/
114+
public String getEndTime() {
115+
return endTime;
116+
}
117+
118+
/**
119+
* Output only. [Output only] End time stamp
120+
* @param endTime endTime or {@code null} for none
121+
*/
122+
public Actuation setEndTime(String endTime) {
123+
this.endTime = endTime;
124+
return this;
125+
}
126+
127+
/**
128+
* The name of actuation resource. The format is
129+
* projects/{project}/locations/{location}/deployments/{deployment}/actuations/{actuation}
130+
* @return value or {@code null} for none
131+
*/
132+
public java.lang.String getName() {
133+
return name;
134+
}
135+
136+
/**
137+
* The name of actuation resource. The format is
138+
* projects/{project}/locations/{location}/deployments/{deployment}/actuations/{actuation}
139+
* @param name name or {@code null} for none
140+
*/
141+
public Actuation setName(java.lang.String name) {
142+
this.name = name;
143+
return this;
144+
}
145+
146+
/**
147+
* Output only. [Output only] Start time stamp
148+
* @return value or {@code null} for none
149+
*/
150+
public String getStartTime() {
151+
return startTime;
152+
}
153+
154+
/**
155+
* Output only. [Output only] Start time stamp
156+
* @param startTime startTime or {@code null} for none
157+
*/
158+
public Actuation setStartTime(String startTime) {
159+
this.startTime = startTime;
160+
return this;
161+
}
162+
163+
/**
164+
* Output only. [Output only] Actuation state
165+
* @return value or {@code null} for none
166+
*/
167+
public java.lang.String getState() {
168+
return state;
169+
}
170+
171+
/**
172+
* Output only. [Output only] Actuation state
173+
* @param state state or {@code null} for none
174+
*/
175+
public Actuation setState(java.lang.String state) {
176+
this.state = state;
177+
return this;
178+
}
179+
180+
@Override
181+
public Actuation set(String fieldName, Object value) {
182+
return (Actuation) super.set(fieldName, value);
183+
}
184+
185+
@Override
186+
public Actuation clone() {
187+
return (Actuation) super.clone();
188+
}
189+
190+
}

0 commit comments

Comments
 (0)