Skip to content

Commit 6ec8790

Browse files
1 parent 97ce0e5 commit 6ec8790

24 files changed

Lines changed: 1078 additions & 76 deletions

clients/google-api-services-deploymentmanager/alpha/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-deploymentmanager</artifactId>
25-
<version>alpha-rev20260312-2.0.0</version>
25+
<version>alpha-rev20260827-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-deploymentmanager:alpha-rev20260312-2.0.0'
38+
implementation 'com.google.apis:google-api-services-deploymentmanager:alpha-rev20260827-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-deploymentmanager/alpha/2.0.0/com/google/api/services/deploymentmanager/model/FirewallPolicyRuleOperationMetadata.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.deploymentmanager.model;
1818

1919
/**
20-
* Model definition for FirewallPolicyRuleOperationMetadata.
20+
* Metadata for FirewallPolicyRule operations.
2121
*
2222
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2323
* transmitted over HTTP when working with the Cloud Deployment Manager V2 API. For a detailed
@@ -31,25 +31,25 @@
3131
public final class FirewallPolicyRuleOperationMetadata extends com.google.api.client.json.GenericJson {
3232

3333
/**
34-
* The priority allocated for the firewall policy rule if query parameters specified
35-
* minPriority/maxPriority.
34+
* Output only. [Output Only] The priority allocated for the firewall policy rule if query
35+
* parameters specified minPriority/maxPriority.
3636
* The value may be {@code null}.
3737
*/
3838
@com.google.api.client.util.Key
3939
private java.lang.Integer allocatedPriority;
4040

4141
/**
42-
* The priority allocated for the firewall policy rule if query parameters specified
43-
* minPriority/maxPriority.
42+
* Output only. [Output Only] The priority allocated for the firewall policy rule if query
43+
* parameters specified minPriority/maxPriority.
4444
* @return value or {@code null} for none
4545
*/
4646
public java.lang.Integer getAllocatedPriority() {
4747
return allocatedPriority;
4848
}
4949

5050
/**
51-
* The priority allocated for the firewall policy rule if query parameters specified
52-
* minPriority/maxPriority.
51+
* Output only. [Output Only] The priority allocated for the firewall policy rule if query
52+
* parameters specified minPriority/maxPriority.
5353
* @param allocatedPriority allocatedPriority or {@code null} for none
5454
*/
5555
public FirewallPolicyRuleOperationMetadata setAllocatedPriority(java.lang.Integer allocatedPriority) {
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.deploymentmanager.model;
18+
19+
/**
20+
* Metadata for GetHealth operations.
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 Cloud Deployment Manager V2 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 GetHealthOperationMetadata extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Output only. The health information.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private GetHealthOperationMetadataHealthInfo healthInfo;
39+
40+
/**
41+
* Output only. The health information.
42+
* @return value or {@code null} for none
43+
*/
44+
public GetHealthOperationMetadataHealthInfo getHealthInfo() {
45+
return healthInfo;
46+
}
47+
48+
/**
49+
* Output only. The health information.
50+
* @param healthInfo healthInfo or {@code null} for none
51+
*/
52+
public GetHealthOperationMetadata setHealthInfo(GetHealthOperationMetadataHealthInfo healthInfo) {
53+
this.healthInfo = healthInfo;
54+
return this;
55+
}
56+
57+
@Override
58+
public GetHealthOperationMetadata set(String fieldName, Object value) {
59+
return (GetHealthOperationMetadata) super.set(fieldName, value);
60+
}
61+
62+
@Override
63+
public GetHealthOperationMetadata clone() {
64+
return (GetHealthOperationMetadata) super.clone();
65+
}
66+
67+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,163 @@
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.deploymentmanager.model;
18+
19+
/**
20+
* Health information.
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 Cloud Deployment Manager V2 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 GetHealthOperationMetadataHealthInfo extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Output only. The availability SLO status.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String availabilitySloStatus;
39+
40+
/**
41+
* Output only. The health status.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String healthStatus;
46+
47+
/**
48+
* Output only. The repair category.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.String repairCategory;
53+
54+
/**
55+
* Output only. The reason for unhealthy status.
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key
59+
private java.lang.String unhealthyReason;
60+
61+
/**
62+
* Output only. The time when health info was updated.
63+
* The value may be {@code null}.
64+
*/
65+
@com.google.api.client.util.Key
66+
private String updateTime;
67+
68+
/**
69+
* Output only. The availability SLO status.
70+
* @return value or {@code null} for none
71+
*/
72+
public java.lang.String getAvailabilitySloStatus() {
73+
return availabilitySloStatus;
74+
}
75+
76+
/**
77+
* Output only. The availability SLO status.
78+
* @param availabilitySloStatus availabilitySloStatus or {@code null} for none
79+
*/
80+
public GetHealthOperationMetadataHealthInfo setAvailabilitySloStatus(java.lang.String availabilitySloStatus) {
81+
this.availabilitySloStatus = availabilitySloStatus;
82+
return this;
83+
}
84+
85+
/**
86+
* Output only. The health status.
87+
* @return value or {@code null} for none
88+
*/
89+
public java.lang.String getHealthStatus() {
90+
return healthStatus;
91+
}
92+
93+
/**
94+
* Output only. The health status.
95+
* @param healthStatus healthStatus or {@code null} for none
96+
*/
97+
public GetHealthOperationMetadataHealthInfo setHealthStatus(java.lang.String healthStatus) {
98+
this.healthStatus = healthStatus;
99+
return this;
100+
}
101+
102+
/**
103+
* Output only. The repair category.
104+
* @return value or {@code null} for none
105+
*/
106+
public java.lang.String getRepairCategory() {
107+
return repairCategory;
108+
}
109+
110+
/**
111+
* Output only. The repair category.
112+
* @param repairCategory repairCategory or {@code null} for none
113+
*/
114+
public GetHealthOperationMetadataHealthInfo setRepairCategory(java.lang.String repairCategory) {
115+
this.repairCategory = repairCategory;
116+
return this;
117+
}
118+
119+
/**
120+
* Output only. The reason for unhealthy status.
121+
* @return value or {@code null} for none
122+
*/
123+
public java.lang.String getUnhealthyReason() {
124+
return unhealthyReason;
125+
}
126+
127+
/**
128+
* Output only. The reason for unhealthy status.
129+
* @param unhealthyReason unhealthyReason or {@code null} for none
130+
*/
131+
public GetHealthOperationMetadataHealthInfo setUnhealthyReason(java.lang.String unhealthyReason) {
132+
this.unhealthyReason = unhealthyReason;
133+
return this;
134+
}
135+
136+
/**
137+
* Output only. The time when health info was updated.
138+
* @return value or {@code null} for none
139+
*/
140+
public String getUpdateTime() {
141+
return updateTime;
142+
}
143+
144+
/**
145+
* Output only. The time when health info was updated.
146+
* @param updateTime updateTime or {@code null} for none
147+
*/
148+
public GetHealthOperationMetadataHealthInfo setUpdateTime(String updateTime) {
149+
this.updateTime = updateTime;
150+
return this;
151+
}
152+
153+
@Override
154+
public GetHealthOperationMetadataHealthInfo set(String fieldName, Object value) {
155+
return (GetHealthOperationMetadataHealthInfo) super.set(fieldName, value);
156+
}
157+
158+
@Override
159+
public GetHealthOperationMetadataHealthInfo clone() {
160+
return (GetHealthOperationMetadataHealthInfo) super.clone();
161+
}
162+
163+
}

clients/google-api-services-deploymentmanager/alpha/2.0.0/com/google/api/services/deploymentmanager/model/GetVersionOperationMetadataSbomInfo.java

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -31,33 +31,29 @@
3131
public final class GetVersionOperationMetadataSbomInfo extends com.google.api.client.json.GenericJson {
3232

3333
/**
34-
* SBOM versions currently applied to the resource. The key is the component name and the value is
35-
* the version.
34+
* A mapping of components to their currently-applied versions or other appropriate identifiers.
3635
* The value may be {@code null}.
3736
*/
3837
@com.google.api.client.util.Key
3938
private java.util.Map<String, java.lang.String> currentComponentVersions;
4039

4140
/**
42-
* SBOM versions scheduled for the next maintenance. The key is the component name and the value
43-
* is the version.
41+
* A mapping of components to their target versions or other appropriate identifiers.
4442
* The value may be {@code null}.
4543
*/
4644
@com.google.api.client.util.Key
4745
private java.util.Map<String, java.lang.String> targetComponentVersions;
4846

4947
/**
50-
* SBOM versions currently applied to the resource. The key is the component name and the value is
51-
* the version.
48+
* A mapping of components to their currently-applied versions or other appropriate identifiers.
5249
* @return value or {@code null} for none
5350
*/
5451
public java.util.Map<String, java.lang.String> getCurrentComponentVersions() {
5552
return currentComponentVersions;
5653
}
5754

5855
/**
59-
* SBOM versions currently applied to the resource. The key is the component name and the value is
60-
* the version.
56+
* A mapping of components to their currently-applied versions or other appropriate identifiers.
6157
* @param currentComponentVersions currentComponentVersions or {@code null} for none
6258
*/
6359
public GetVersionOperationMetadataSbomInfo setCurrentComponentVersions(java.util.Map<String, java.lang.String> currentComponentVersions) {
@@ -66,17 +62,15 @@ public GetVersionOperationMetadataSbomInfo setCurrentComponentVersions(java.util
6662
}
6763

6864
/**
69-
* SBOM versions scheduled for the next maintenance. The key is the component name and the value
70-
* is the version.
65+
* A mapping of components to their target versions or other appropriate identifiers.
7166
* @return value or {@code null} for none
7267
*/
7368
public java.util.Map<String, java.lang.String> getTargetComponentVersions() {
7469
return targetComponentVersions;
7570
}
7671

7772
/**
78-
* SBOM versions scheduled for the next maintenance. The key is the component name and the value
79-
* is the version.
73+
* A mapping of components to their target versions or other appropriate identifiers.
8074
* @param targetComponentVersions targetComponentVersions or {@code null} for none
8175
*/
8276
public GetVersionOperationMetadataSbomInfo setTargetComponentVersions(java.util.Map<String, java.lang.String> targetComponentVersions) {

0 commit comments

Comments
 (0)