Skip to content

Commit 62932ba

Browse files
1 parent 93911fa commit 62932ba

File tree

10 files changed

+610
-90
lines changed

10 files changed

+610
-90
lines changed

clients/google-api-services-logging/v2/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-logging</artifactId>
25-
<version>v2-rev20250207-2.0.0</version>
25+
<version>v2-rev20250411-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-logging:v2-rev20250207-2.0.0'
38+
implementation 'com.google.apis:google-api-services-logging:v2-rev20250411-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-logging/v2/2.0.0/com/google/api/services/logging/v2/Logging.java

Lines changed: 115 additions & 75 deletions
Large diffs are not rendered by default.
Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
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.logging.v2.model;
18+
19+
/**
20+
* Metadata associated with App Hub.
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 Logging 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 AppHub extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Metadata associated with the application.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private AppHubApplication application;
38+
39+
/**
40+
* Metadata associated with the service.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private AppHubService service;
45+
46+
/**
47+
* Metadata associated with the workload.
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private AppHubWorkload workload;
52+
53+
/**
54+
* Metadata associated with the application.
55+
* @return value or {@code null} for none
56+
*/
57+
public AppHubApplication getApplication() {
58+
return application;
59+
}
60+
61+
/**
62+
* Metadata associated with the application.
63+
* @param application application or {@code null} for none
64+
*/
65+
public AppHub setApplication(AppHubApplication application) {
66+
this.application = application;
67+
return this;
68+
}
69+
70+
/**
71+
* Metadata associated with the service.
72+
* @return value or {@code null} for none
73+
*/
74+
public AppHubService getService() {
75+
return service;
76+
}
77+
78+
/**
79+
* Metadata associated with the service.
80+
* @param service service or {@code null} for none
81+
*/
82+
public AppHub setService(AppHubService service) {
83+
this.service = service;
84+
return this;
85+
}
86+
87+
/**
88+
* Metadata associated with the workload.
89+
* @return value or {@code null} for none
90+
*/
91+
public AppHubWorkload getWorkload() {
92+
return workload;
93+
}
94+
95+
/**
96+
* Metadata associated with the workload.
97+
* @param workload workload or {@code null} for none
98+
*/
99+
public AppHub setWorkload(AppHubWorkload workload) {
100+
this.workload = workload;
101+
return this;
102+
}
103+
104+
@Override
105+
public AppHub set(String fieldName, Object value) {
106+
return (AppHub) super.set(fieldName, value);
107+
}
108+
109+
@Override
110+
public AppHub clone() {
111+
return (AppHub) super.clone();
112+
}
113+
114+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
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.logging.v2.model;
18+
19+
/**
20+
* Resource identifiers associated with an AppHub application AppHub resources are of the form
21+
* projects//locations//applications/ projects//locations//applications//services/
22+
* projects//locations//applications//workloads/ These resources can be reconstructed from the
23+
* components below.
24+
*
25+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
26+
* transmitted over HTTP when working with the Cloud Logging API. For a detailed explanation see:
27+
* <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>
28+
* </p>
29+
*
30+
* @author Google, Inc.
31+
*/
32+
@SuppressWarnings("javadoc")
33+
public final class AppHubApplication extends com.google.api.client.json.GenericJson {
34+
35+
/**
36+
* Resource container that owns the application. Example: "projects/management_project"
37+
* The value may be {@code null}.
38+
*/
39+
@com.google.api.client.util.Key
40+
private java.lang.String container;
41+
42+
/**
43+
* Application Id. Example: "my-app"
44+
* The value may be {@code null}.
45+
*/
46+
@com.google.api.client.util.Key
47+
private java.lang.String id;
48+
49+
/**
50+
* Location associated with the Application. Example: "us-east1"
51+
* The value may be {@code null}.
52+
*/
53+
@com.google.api.client.util.Key
54+
private java.lang.String location;
55+
56+
/**
57+
* Resource container that owns the application. Example: "projects/management_project"
58+
* @return value or {@code null} for none
59+
*/
60+
public java.lang.String getContainer() {
61+
return container;
62+
}
63+
64+
/**
65+
* Resource container that owns the application. Example: "projects/management_project"
66+
* @param container container or {@code null} for none
67+
*/
68+
public AppHubApplication setContainer(java.lang.String container) {
69+
this.container = container;
70+
return this;
71+
}
72+
73+
/**
74+
* Application Id. Example: "my-app"
75+
* @return value or {@code null} for none
76+
*/
77+
public java.lang.String getId() {
78+
return id;
79+
}
80+
81+
/**
82+
* Application Id. Example: "my-app"
83+
* @param id id or {@code null} for none
84+
*/
85+
public AppHubApplication setId(java.lang.String id) {
86+
this.id = id;
87+
return this;
88+
}
89+
90+
/**
91+
* Location associated with the Application. Example: "us-east1"
92+
* @return value or {@code null} for none
93+
*/
94+
public java.lang.String getLocation() {
95+
return location;
96+
}
97+
98+
/**
99+
* Location associated with the Application. Example: "us-east1"
100+
* @param location location or {@code null} for none
101+
*/
102+
public AppHubApplication setLocation(java.lang.String location) {
103+
this.location = location;
104+
return this;
105+
}
106+
107+
@Override
108+
public AppHubApplication set(String fieldName, Object value) {
109+
return (AppHubApplication) super.set(fieldName, value);
110+
}
111+
112+
@Override
113+
public AppHubApplication clone() {
114+
return (AppHubApplication) super.clone();
115+
}
116+
117+
}
Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
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.logging.v2.model;
18+
19+
/**
20+
* Metadata associated with an App Hub service.
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 Logging 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 AppHubService extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Service criticality type Example: "CRITICAL"
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String criticalityType;
38+
39+
/**
40+
* Service environment type Example: "DEV"
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.lang.String environmentType;
45+
46+
/**
47+
* Service Id. Example: "my-service"
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private java.lang.String id;
52+
53+
/**
54+
* Service criticality type Example: "CRITICAL"
55+
* @return value or {@code null} for none
56+
*/
57+
public java.lang.String getCriticalityType() {
58+
return criticalityType;
59+
}
60+
61+
/**
62+
* Service criticality type Example: "CRITICAL"
63+
* @param criticalityType criticalityType or {@code null} for none
64+
*/
65+
public AppHubService setCriticalityType(java.lang.String criticalityType) {
66+
this.criticalityType = criticalityType;
67+
return this;
68+
}
69+
70+
/**
71+
* Service environment type Example: "DEV"
72+
* @return value or {@code null} for none
73+
*/
74+
public java.lang.String getEnvironmentType() {
75+
return environmentType;
76+
}
77+
78+
/**
79+
* Service environment type Example: "DEV"
80+
* @param environmentType environmentType or {@code null} for none
81+
*/
82+
public AppHubService setEnvironmentType(java.lang.String environmentType) {
83+
this.environmentType = environmentType;
84+
return this;
85+
}
86+
87+
/**
88+
* Service Id. Example: "my-service"
89+
* @return value or {@code null} for none
90+
*/
91+
public java.lang.String getId() {
92+
return id;
93+
}
94+
95+
/**
96+
* Service Id. Example: "my-service"
97+
* @param id id or {@code null} for none
98+
*/
99+
public AppHubService setId(java.lang.String id) {
100+
this.id = id;
101+
return this;
102+
}
103+
104+
@Override
105+
public AppHubService set(String fieldName, Object value) {
106+
return (AppHubService) super.set(fieldName, value);
107+
}
108+
109+
@Override
110+
public AppHubService clone() {
111+
return (AppHubService) super.clone();
112+
}
113+
114+
}

0 commit comments

Comments
 (0)