Skip to content

Commit 7c5f4e0

Browse files
1 parent bb7cf36 commit 7c5f4e0

34 files changed

+2692
-12
lines changed

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

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,146 @@
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.datafusion.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 Data Fusion API. For a detailed explanation
25+
* see:
26+
* <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>
27+
* </p>
28+
*
29+
* @author Google, Inc.
30+
*/
31+
@SuppressWarnings("javadoc")
32+
public final class AssetLocation extends com.google.api.client.json.GenericJson {
33+
34+
/**
35+
* Defines the customer expectation around ZI/ZS for this asset and ZI/ZS state of the region at
36+
* the time of asset creation.
37+
* The value may be {@code null}.
38+
*/
39+
@com.google.api.client.util.Key
40+
private IsolationExpectations expected;
41+
42+
/**
43+
* Defines extra parameters required for specific asset types.
44+
* The value may be {@code null}.
45+
*/
46+
@com.google.api.client.util.Key
47+
private java.util.List<ExtraParameter> extraParameters;
48+
49+
/**
50+
* Contains all kinds of physical location definitions for this asset.
51+
* The value may be {@code null}.
52+
*/
53+
@com.google.api.client.util.Key
54+
private java.util.List<LocationData> locationData;
55+
56+
/**
57+
* Defines parents assets if any in order to allow later generation of child_asset_location data
58+
* via child assets.
59+
* The value may be {@code null}.
60+
*/
61+
@com.google.api.client.util.Key
62+
private java.util.List<CloudAsset> parentAsset;
63+
64+
/**
65+
* Defines the customer expectation around ZI/ZS for this asset and ZI/ZS state of the region at
66+
* the time of asset creation.
67+
* @return value or {@code null} for none
68+
*/
69+
public IsolationExpectations getExpected() {
70+
return expected;
71+
}
72+
73+
/**
74+
* Defines the customer expectation around ZI/ZS for this asset and ZI/ZS state of the region at
75+
* the time of asset creation.
76+
* @param expected expected or {@code null} for none
77+
*/
78+
public AssetLocation setExpected(IsolationExpectations expected) {
79+
this.expected = expected;
80+
return this;
81+
}
82+
83+
/**
84+
* Defines extra parameters required for specific asset types.
85+
* @return value or {@code null} for none
86+
*/
87+
public java.util.List<ExtraParameter> getExtraParameters() {
88+
return extraParameters;
89+
}
90+
91+
/**
92+
* Defines extra parameters required for specific asset types.
93+
* @param extraParameters extraParameters or {@code null} for none
94+
*/
95+
public AssetLocation setExtraParameters(java.util.List<ExtraParameter> extraParameters) {
96+
this.extraParameters = extraParameters;
97+
return this;
98+
}
99+
100+
/**
101+
* Contains all kinds of physical location definitions for this asset.
102+
* @return value or {@code null} for none
103+
*/
104+
public java.util.List<LocationData> getLocationData() {
105+
return locationData;
106+
}
107+
108+
/**
109+
* Contains all kinds of physical location definitions for this asset.
110+
* @param locationData locationData or {@code null} for none
111+
*/
112+
public AssetLocation setLocationData(java.util.List<LocationData> locationData) {
113+
this.locationData = locationData;
114+
return this;
115+
}
116+
117+
/**
118+
* Defines parents assets if any in order to allow later generation of child_asset_location data
119+
* via child assets.
120+
* @return value or {@code null} for none
121+
*/
122+
public java.util.List<CloudAsset> getParentAsset() {
123+
return parentAsset;
124+
}
125+
126+
/**
127+
* Defines parents assets if any in order to allow later generation of child_asset_location data
128+
* via child assets.
129+
* @param parentAsset parentAsset or {@code null} for none
130+
*/
131+
public AssetLocation setParentAsset(java.util.List<CloudAsset> parentAsset) {
132+
this.parentAsset = parentAsset;
133+
return this;
134+
}
135+
136+
@Override
137+
public AssetLocation set(String fieldName, Object value) {
138+
return (AssetLocation) super.set(fieldName, value);
139+
}
140+
141+
@Override
142+
public AssetLocation clone() {
143+
return (AssetLocation) super.clone();
144+
}
145+
146+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
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.datafusion.v1.model;
18+
19+
/**
20+
* Policy ID that identified data placement in Blobstore as per go/blobstore-user-guide#data-
21+
* metadata-placement-and-failure-domains
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 Data Fusion API. For a detailed explanation
25+
* see:
26+
* <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>
27+
* </p>
28+
*
29+
* @author Google, Inc.
30+
*/
31+
@SuppressWarnings("javadoc")
32+
public final class BlobstoreLocation extends com.google.api.client.json.GenericJson {
33+
34+
/**
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.util.List<java.lang.String> policyId;
39+
40+
/**
41+
* @return value or {@code null} for none
42+
*/
43+
public java.util.List<java.lang.String> getPolicyId() {
44+
return policyId;
45+
}
46+
47+
/**
48+
* @param policyId policyId or {@code null} for none
49+
*/
50+
public BlobstoreLocation setPolicyId(java.util.List<java.lang.String> policyId) {
51+
this.policyId = policyId;
52+
return this;
53+
}
54+
55+
@Override
56+
public BlobstoreLocation set(String fieldName, Object value) {
57+
return (BlobstoreLocation) super.set(fieldName, value);
58+
}
59+
60+
@Override
61+
public BlobstoreLocation clone() {
62+
return (BlobstoreLocation) super.clone();
63+
}
64+
65+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
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.datafusion.v1.model;
18+
19+
/**
20+
* Model definition for CloudAsset.
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 Data Fusion 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 CloudAsset extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String assetName;
38+
39+
/**
40+
* The value may be {@code null}.
41+
*/
42+
@com.google.api.client.util.Key
43+
private java.lang.String assetType;
44+
45+
/**
46+
* @return value or {@code null} for none
47+
*/
48+
public java.lang.String getAssetName() {
49+
return assetName;
50+
}
51+
52+
/**
53+
* @param assetName assetName or {@code null} for none
54+
*/
55+
public CloudAsset setAssetName(java.lang.String assetName) {
56+
this.assetName = assetName;
57+
return this;
58+
}
59+
60+
/**
61+
* @return value or {@code null} for none
62+
*/
63+
public java.lang.String getAssetType() {
64+
return assetType;
65+
}
66+
67+
/**
68+
* @param assetType assetType or {@code null} for none
69+
*/
70+
public CloudAsset setAssetType(java.lang.String assetType) {
71+
this.assetType = assetType;
72+
return this;
73+
}
74+
75+
@Override
76+
public CloudAsset set(String fieldName, Object value) {
77+
return (CloudAsset) super.set(fieldName, value);
78+
}
79+
80+
@Override
81+
public CloudAsset clone() {
82+
return (CloudAsset) super.clone();
83+
}
84+
85+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
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.datafusion.v1.model;
18+
19+
/**
20+
* Model definition for CloudAssetComposition.
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 Data Fusion 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 CloudAssetComposition extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.util.List<CloudAsset> childAsset;
38+
39+
static {
40+
// hack to force ProGuard to consider CloudAsset used, since otherwise it would be stripped out
41+
// see https://github.com/google/google-api-java-client/issues/543
42+
com.google.api.client.util.Data.nullOf(CloudAsset.class);
43+
}
44+
45+
/**
46+
* @return value or {@code null} for none
47+
*/
48+
public java.util.List<CloudAsset> getChildAsset() {
49+
return childAsset;
50+
}
51+
52+
/**
53+
* @param childAsset childAsset or {@code null} for none
54+
*/
55+
public CloudAssetComposition setChildAsset(java.util.List<CloudAsset> childAsset) {
56+
this.childAsset = childAsset;
57+
return this;
58+
}
59+
60+
@Override
61+
public CloudAssetComposition set(String fieldName, Object value) {
62+
return (CloudAssetComposition) super.set(fieldName, value);
63+
}
64+
65+
@Override
66+
public CloudAssetComposition clone() {
67+
return (CloudAssetComposition) super.clone();
68+
}
69+
70+
}

0 commit comments

Comments
 (0)