Skip to content

Commit e2aa90d

Browse files
1 parent add1c05 commit e2aa90d

19 files changed

+9685
-6048
lines changed

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

clients/google-api-services-dataplex/v1/2.0.0/com/google/api/services/dataplex/v1/CloudDataplex.java

Lines changed: 8214 additions & 6042 deletions
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,172 @@
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.dataplex.v1.model;
18+
19+
/**
20+
* Provides the mapping of a cloud asset to a direct physical location or to a proxy that defines
21+
* the location on its behalf.
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 Cloud Dataplex 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 CloudReliabilityZicyWs3DataplaneProtosAssetLocation extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Spanner path of the CCFE RMS database. It is only applicable for CCFE tenants that use CCFE RMS
35+
* for storing resource metadata.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String ccfeRmsPath;
40+
41+
/**
42+
* Defines the customer expectation around ZI/ZS for this asset and ZI/ZS state of the region at
43+
* the time of asset creation.
44+
* The value may be {@code null}.
45+
*/
46+
@com.google.api.client.util.Key
47+
private CloudReliabilityZicyWs3DataplaneProtosAssetLocationIsolationExpectations expected;
48+
49+
/**
50+
* Defines extra parameters required for specific asset types.
51+
* The value may be {@code null}.
52+
*/
53+
@com.google.api.client.util.Key
54+
private java.util.List<CloudReliabilityZicyWs3DataplaneProtosExtraParameter> extraParameters;
55+
56+
/**
57+
* Contains all kinds of physical location definitions for this asset.
58+
* The value may be {@code null}.
59+
*/
60+
@com.google.api.client.util.Key
61+
private java.util.List<CloudReliabilityZicyWs3DataplaneProtosLocationData> locationData;
62+
63+
/**
64+
* Defines parents assets if any in order to allow later generation of child_asset_location data
65+
* via child assets.
66+
* The value may be {@code null}.
67+
*/
68+
@com.google.api.client.util.Key
69+
private java.util.List<CloudReliabilityZicyWs3DataplaneProtosCloudAsset> parentAsset;
70+
71+
/**
72+
* Spanner path of the CCFE RMS database. It is only applicable for CCFE tenants that use CCFE RMS
73+
* for storing resource metadata.
74+
* @return value or {@code null} for none
75+
*/
76+
public java.lang.String getCcfeRmsPath() {
77+
return ccfeRmsPath;
78+
}
79+
80+
/**
81+
* Spanner path of the CCFE RMS database. It is only applicable for CCFE tenants that use CCFE RMS
82+
* for storing resource metadata.
83+
* @param ccfeRmsPath ccfeRmsPath or {@code null} for none
84+
*/
85+
public CloudReliabilityZicyWs3DataplaneProtosAssetLocation setCcfeRmsPath(java.lang.String ccfeRmsPath) {
86+
this.ccfeRmsPath = ccfeRmsPath;
87+
return this;
88+
}
89+
90+
/**
91+
* Defines the customer expectation around ZI/ZS for this asset and ZI/ZS state of the region at
92+
* the time of asset creation.
93+
* @return value or {@code null} for none
94+
*/
95+
public CloudReliabilityZicyWs3DataplaneProtosAssetLocationIsolationExpectations getExpected() {
96+
return expected;
97+
}
98+
99+
/**
100+
* Defines the customer expectation around ZI/ZS for this asset and ZI/ZS state of the region at
101+
* the time of asset creation.
102+
* @param expected expected or {@code null} for none
103+
*/
104+
public CloudReliabilityZicyWs3DataplaneProtosAssetLocation setExpected(CloudReliabilityZicyWs3DataplaneProtosAssetLocationIsolationExpectations expected) {
105+
this.expected = expected;
106+
return this;
107+
}
108+
109+
/**
110+
* Defines extra parameters required for specific asset types.
111+
* @return value or {@code null} for none
112+
*/
113+
public java.util.List<CloudReliabilityZicyWs3DataplaneProtosExtraParameter> getExtraParameters() {
114+
return extraParameters;
115+
}
116+
117+
/**
118+
* Defines extra parameters required for specific asset types.
119+
* @param extraParameters extraParameters or {@code null} for none
120+
*/
121+
public CloudReliabilityZicyWs3DataplaneProtosAssetLocation setExtraParameters(java.util.List<CloudReliabilityZicyWs3DataplaneProtosExtraParameter> extraParameters) {
122+
this.extraParameters = extraParameters;
123+
return this;
124+
}
125+
126+
/**
127+
* Contains all kinds of physical location definitions for this asset.
128+
* @return value or {@code null} for none
129+
*/
130+
public java.util.List<CloudReliabilityZicyWs3DataplaneProtosLocationData> getLocationData() {
131+
return locationData;
132+
}
133+
134+
/**
135+
* Contains all kinds of physical location definitions for this asset.
136+
* @param locationData locationData or {@code null} for none
137+
*/
138+
public CloudReliabilityZicyWs3DataplaneProtosAssetLocation setLocationData(java.util.List<CloudReliabilityZicyWs3DataplaneProtosLocationData> locationData) {
139+
this.locationData = locationData;
140+
return this;
141+
}
142+
143+
/**
144+
* Defines parents assets if any in order to allow later generation of child_asset_location data
145+
* via child assets.
146+
* @return value or {@code null} for none
147+
*/
148+
public java.util.List<CloudReliabilityZicyWs3DataplaneProtosCloudAsset> getParentAsset() {
149+
return parentAsset;
150+
}
151+
152+
/**
153+
* Defines parents assets if any in order to allow later generation of child_asset_location data
154+
* via child assets.
155+
* @param parentAsset parentAsset or {@code null} for none
156+
*/
157+
public CloudReliabilityZicyWs3DataplaneProtosAssetLocation setParentAsset(java.util.List<CloudReliabilityZicyWs3DataplaneProtosCloudAsset> parentAsset) {
158+
this.parentAsset = parentAsset;
159+
return this;
160+
}
161+
162+
@Override
163+
public CloudReliabilityZicyWs3DataplaneProtosAssetLocation set(String fieldName, Object value) {
164+
return (CloudReliabilityZicyWs3DataplaneProtosAssetLocation) super.set(fieldName, value);
165+
}
166+
167+
@Override
168+
public CloudReliabilityZicyWs3DataplaneProtosAssetLocation clone() {
169+
return (CloudReliabilityZicyWs3DataplaneProtosAssetLocation) super.clone();
170+
}
171+
172+
}

0 commit comments

Comments
 (0)