Skip to content

Commit 3c5295e

Browse files
1 parent 987dda8 commit 3c5295e

15 files changed

+2481
-68
lines changed

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

clients/google-api-services-metastore/v1/2.0.0/com/google/api/services/metastore/v1/DataprocMetastore.java

Lines changed: 1100 additions & 62 deletions
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
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.metastore.v1.model;
18+
19+
/**
20+
* Represents the autoscaling configuration of a metastore 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 Dataproc Metastore 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 AutoscalingConfig extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. Whether or not autoscaling is enabled for this service.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.Boolean autoscalingEnabled;
39+
40+
/**
41+
* Output only. The scaling factor of a service with autoscaling enabled.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.Float autoscalingFactor;
46+
47+
/**
48+
* Optional. The LimitConfig of the service.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private LimitConfig limitConfig;
53+
54+
/**
55+
* Optional. Whether or not autoscaling is enabled for this service.
56+
* @return value or {@code null} for none
57+
*/
58+
public java.lang.Boolean getAutoscalingEnabled() {
59+
return autoscalingEnabled;
60+
}
61+
62+
/**
63+
* Optional. Whether or not autoscaling is enabled for this service.
64+
* @param autoscalingEnabled autoscalingEnabled or {@code null} for none
65+
*/
66+
public AutoscalingConfig setAutoscalingEnabled(java.lang.Boolean autoscalingEnabled) {
67+
this.autoscalingEnabled = autoscalingEnabled;
68+
return this;
69+
}
70+
71+
/**
72+
* Output only. The scaling factor of a service with autoscaling enabled.
73+
* @return value or {@code null} for none
74+
*/
75+
public java.lang.Float getAutoscalingFactor() {
76+
return autoscalingFactor;
77+
}
78+
79+
/**
80+
* Output only. The scaling factor of a service with autoscaling enabled.
81+
* @param autoscalingFactor autoscalingFactor or {@code null} for none
82+
*/
83+
public AutoscalingConfig setAutoscalingFactor(java.lang.Float autoscalingFactor) {
84+
this.autoscalingFactor = autoscalingFactor;
85+
return this;
86+
}
87+
88+
/**
89+
* Optional. The LimitConfig of the service.
90+
* @return value or {@code null} for none
91+
*/
92+
public LimitConfig getLimitConfig() {
93+
return limitConfig;
94+
}
95+
96+
/**
97+
* Optional. The LimitConfig of the service.
98+
* @param limitConfig limitConfig or {@code null} for none
99+
*/
100+
public AutoscalingConfig setLimitConfig(LimitConfig limitConfig) {
101+
this.limitConfig = limitConfig;
102+
return this;
103+
}
104+
105+
@Override
106+
public AutoscalingConfig set(String fieldName, Object value) {
107+
return (AutoscalingConfig) super.set(fieldName, value);
108+
}
109+
110+
@Override
111+
public AutoscalingConfig clone() {
112+
return (AutoscalingConfig) super.clone();
113+
}
114+
115+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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.metastore.v1.model;
18+
19+
/**
20+
* Request message for DataprocMetastore.CancelMigration.
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 Dataproc Metastore 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 CancelMigrationRequest extends com.google.api.client.json.GenericJson {
32+
33+
@Override
34+
public CancelMigrationRequest set(String fieldName, Object value) {
35+
return (CancelMigrationRequest) super.set(fieldName, value);
36+
}
37+
38+
@Override
39+
public CancelMigrationRequest clone() {
40+
return (CancelMigrationRequest) super.clone();
41+
}
42+
43+
}

0 commit comments

Comments
 (0)