Skip to content

Commit a6147bc

Browse files
1 parent 84780e4 commit a6147bc

File tree

12 files changed

+2085
-6
lines changed

12 files changed

+2085
-6
lines changed

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

clients/google-api-services-developerconnect/v1/2.0.0/com/google/api/services/developerconnect/v1/DeveloperConnect.java

Lines changed: 983 additions & 0 deletions
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
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.developerconnect.v1.model;
18+
19+
/**
20+
* AppHubWorkload represents the App Hub Workload.
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 Developer Connect API. For a detailed explanation
24+
* 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 AppHubWorkload extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Output only. The criticality of the App Hub Workload.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String criticality;
39+
40+
/**
41+
* Output only. The environment of the App Hub Workload.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String environment;
46+
47+
/**
48+
* Required. Output only. Immutable. The name of the App Hub Workload. Format:
49+
* `projects/{project}/locations/{location}/applications/{application}/workloads/{workload}`.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.lang.String workload;
54+
55+
/**
56+
* Output only. The criticality of the App Hub Workload.
57+
* @return value or {@code null} for none
58+
*/
59+
public java.lang.String getCriticality() {
60+
return criticality;
61+
}
62+
63+
/**
64+
* Output only. The criticality of the App Hub Workload.
65+
* @param criticality criticality or {@code null} for none
66+
*/
67+
public AppHubWorkload setCriticality(java.lang.String criticality) {
68+
this.criticality = criticality;
69+
return this;
70+
}
71+
72+
/**
73+
* Output only. The environment of the App Hub Workload.
74+
* @return value or {@code null} for none
75+
*/
76+
public java.lang.String getEnvironment() {
77+
return environment;
78+
}
79+
80+
/**
81+
* Output only. The environment of the App Hub Workload.
82+
* @param environment environment or {@code null} for none
83+
*/
84+
public AppHubWorkload setEnvironment(java.lang.String environment) {
85+
this.environment = environment;
86+
return this;
87+
}
88+
89+
/**
90+
* Required. Output only. Immutable. The name of the App Hub Workload. Format:
91+
* `projects/{project}/locations/{location}/applications/{application}/workloads/{workload}`.
92+
* @return value or {@code null} for none
93+
*/
94+
public java.lang.String getWorkload() {
95+
return workload;
96+
}
97+
98+
/**
99+
* Required. Output only. Immutable. The name of the App Hub Workload. Format:
100+
* `projects/{project}/locations/{location}/applications/{application}/workloads/{workload}`.
101+
* @param workload workload or {@code null} for none
102+
*/
103+
public AppHubWorkload setWorkload(java.lang.String workload) {
104+
this.workload = workload;
105+
return this;
106+
}
107+
108+
@Override
109+
public AppHubWorkload set(String fieldName, Object value) {
110+
return (AppHubWorkload) super.set(fieldName, value);
111+
}
112+
113+
@Override
114+
public AppHubWorkload clone() {
115+
return (AppHubWorkload) super.clone();
116+
}
117+
118+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
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.developerconnect.v1.model;
18+
19+
/**
20+
* The artifact config of the artifact that is deployed.
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 Developer Connect API. For a detailed explanation
24+
* 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 ArtifactConfig extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. Set if the artifact metadata is stored in Artifact analysis.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private GoogleArtifactAnalysis googleArtifactAnalysis;
39+
40+
/**
41+
* Optional. Set if the artifact is stored in Artifact regsitry.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private GoogleArtifactRegistry googleArtifactRegistry;
46+
47+
/**
48+
* Required. Immutable. The URI of the artifact that is deployed. e.g. `us-docker.pkg.dev/my-
49+
* project/my-repo/image`. The URI does not include the tag / digest because it captures a lineage
50+
* of artifacts.
51+
* The value may be {@code null}.
52+
*/
53+
@com.google.api.client.util.Key
54+
private java.lang.String uri;
55+
56+
/**
57+
* Optional. Set if the artifact metadata is stored in Artifact analysis.
58+
* @return value or {@code null} for none
59+
*/
60+
public GoogleArtifactAnalysis getGoogleArtifactAnalysis() {
61+
return googleArtifactAnalysis;
62+
}
63+
64+
/**
65+
* Optional. Set if the artifact metadata is stored in Artifact analysis.
66+
* @param googleArtifactAnalysis googleArtifactAnalysis or {@code null} for none
67+
*/
68+
public ArtifactConfig setGoogleArtifactAnalysis(GoogleArtifactAnalysis googleArtifactAnalysis) {
69+
this.googleArtifactAnalysis = googleArtifactAnalysis;
70+
return this;
71+
}
72+
73+
/**
74+
* Optional. Set if the artifact is stored in Artifact regsitry.
75+
* @return value or {@code null} for none
76+
*/
77+
public GoogleArtifactRegistry getGoogleArtifactRegistry() {
78+
return googleArtifactRegistry;
79+
}
80+
81+
/**
82+
* Optional. Set if the artifact is stored in Artifact regsitry.
83+
* @param googleArtifactRegistry googleArtifactRegistry or {@code null} for none
84+
*/
85+
public ArtifactConfig setGoogleArtifactRegistry(GoogleArtifactRegistry googleArtifactRegistry) {
86+
this.googleArtifactRegistry = googleArtifactRegistry;
87+
return this;
88+
}
89+
90+
/**
91+
* Required. Immutable. The URI of the artifact that is deployed. e.g. `us-docker.pkg.dev/my-
92+
* project/my-repo/image`. The URI does not include the tag / digest because it captures a lineage
93+
* of artifacts.
94+
* @return value or {@code null} for none
95+
*/
96+
public java.lang.String getUri() {
97+
return uri;
98+
}
99+
100+
/**
101+
* Required. Immutable. The URI of the artifact that is deployed. e.g. `us-docker.pkg.dev/my-
102+
* project/my-repo/image`. The URI does not include the tag / digest because it captures a lineage
103+
* of artifacts.
104+
* @param uri uri or {@code null} for none
105+
*/
106+
public ArtifactConfig setUri(java.lang.String uri) {
107+
this.uri = uri;
108+
return this;
109+
}
110+
111+
@Override
112+
public ArtifactConfig set(String fieldName, Object value) {
113+
return (ArtifactConfig) super.set(fieldName, value);
114+
}
115+
116+
@Override
117+
public ArtifactConfig clone() {
118+
return (ArtifactConfig) super.clone();
119+
}
120+
121+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
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.developerconnect.v1.model;
18+
19+
/**
20+
* GKEWorkload represents the Google Kubernetes Engine runtime.
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 Developer Connect API. For a detailed explanation
24+
* 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 GKEWorkload extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Required. Immutable. The name of the GKE cluster. Format:
35+
* `projects/{project}/locations/{location}/clusters/{cluster}`.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String cluster;
40+
41+
/**
42+
* Output only. The name of the GKE deployment. Format: `projects/{project}/locations/{location}/c
43+
* lusters/{cluster}/namespaces/{namespace}/deployments/{deployment}`.
44+
* The value may be {@code null}.
45+
*/
46+
@com.google.api.client.util.Key
47+
private java.lang.String deployment;
48+
49+
/**
50+
* Required. Immutable. The name of the GKE cluster. Format:
51+
* `projects/{project}/locations/{location}/clusters/{cluster}`.
52+
* @return value or {@code null} for none
53+
*/
54+
public java.lang.String getCluster() {
55+
return cluster;
56+
}
57+
58+
/**
59+
* Required. Immutable. The name of the GKE cluster. Format:
60+
* `projects/{project}/locations/{location}/clusters/{cluster}`.
61+
* @param cluster cluster or {@code null} for none
62+
*/
63+
public GKEWorkload setCluster(java.lang.String cluster) {
64+
this.cluster = cluster;
65+
return this;
66+
}
67+
68+
/**
69+
* Output only. The name of the GKE deployment. Format: `projects/{project}/locations/{location}/c
70+
* lusters/{cluster}/namespaces/{namespace}/deployments/{deployment}`.
71+
* @return value or {@code null} for none
72+
*/
73+
public java.lang.String getDeployment() {
74+
return deployment;
75+
}
76+
77+
/**
78+
* Output only. The name of the GKE deployment. Format: `projects/{project}/locations/{location}/c
79+
* lusters/{cluster}/namespaces/{namespace}/deployments/{deployment}`.
80+
* @param deployment deployment or {@code null} for none
81+
*/
82+
public GKEWorkload setDeployment(java.lang.String deployment) {
83+
this.deployment = deployment;
84+
return this;
85+
}
86+
87+
@Override
88+
public GKEWorkload set(String fieldName, Object value) {
89+
return (GKEWorkload) super.set(fieldName, value);
90+
}
91+
92+
@Override
93+
public GKEWorkload clone() {
94+
return (GKEWorkload) super.clone();
95+
}
96+
97+
}

0 commit comments

Comments
 (0)