Skip to content

Commit 176bdaf

Browse files
1 parent 29a46f1 commit 176bdaf

File tree

5 files changed

+226
-6
lines changed

5 files changed

+226
-6
lines changed

clients/google-api-services-dataform/v1beta1/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-dataform</artifactId>
25-
<version>v1beta1-rev20250608-2.0.0</version>
25+
<version>v1beta1-rev20250708-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-dataform:v1beta1-rev20250608-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dataform:v1beta1-rev20250708-2.0.0'
3939
}
4040
```
4141

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
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.dataform.v1beta1.model;
18+
19+
/**
20+
* Contains metadata about the IAM policy override for a given Dataform resource. If is_active is
21+
* true, this the policy encoded in iam_policy_name is the source of truth for this resource. Will
22+
* be provided in internal ESV2 views for: Workspaces, Repositories, Folders, TeamFolders.
23+
*
24+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
25+
* transmitted over HTTP when working with the Dataform API. For a detailed explanation 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 IamPolicyOverrideView extends com.google.api.client.json.GenericJson {
33+
34+
/**
35+
* The IAM policy name for the resource.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private PolicyName iamPolicyName;
40+
41+
/**
42+
* Whether the IAM policy encoded in this view is active.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.Boolean isActive;
47+
48+
/**
49+
* The IAM policy name for the resource.
50+
* @return value or {@code null} for none
51+
*/
52+
public PolicyName getIamPolicyName() {
53+
return iamPolicyName;
54+
}
55+
56+
/**
57+
* The IAM policy name for the resource.
58+
* @param iamPolicyName iamPolicyName or {@code null} for none
59+
*/
60+
public IamPolicyOverrideView setIamPolicyName(PolicyName iamPolicyName) {
61+
this.iamPolicyName = iamPolicyName;
62+
return this;
63+
}
64+
65+
/**
66+
* Whether the IAM policy encoded in this view is active.
67+
* @return value or {@code null} for none
68+
*/
69+
public java.lang.Boolean getIsActive() {
70+
return isActive;
71+
}
72+
73+
/**
74+
* Whether the IAM policy encoded in this view is active.
75+
* @param isActive isActive or {@code null} for none
76+
*/
77+
public IamPolicyOverrideView setIsActive(java.lang.Boolean isActive) {
78+
this.isActive = isActive;
79+
return this;
80+
}
81+
82+
@Override
83+
public IamPolicyOverrideView set(String fieldName, Object value) {
84+
return (IamPolicyOverrideView) super.set(fieldName, value);
85+
}
86+
87+
@Override
88+
public IamPolicyOverrideView clone() {
89+
return (IamPolicyOverrideView) super.clone();
90+
}
91+
92+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,128 @@
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.dataform.v1beta1.model;
18+
19+
/**
20+
* An internal name for an IAM policy, based on the resource to which the policy applies. Not to be
21+
* confused with a resource's external full resource name. For more information on this distinction,
22+
* see go/iam-full-resource-names.
23+
*
24+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
25+
* transmitted over HTTP when working with the Dataform API. For a detailed explanation 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 PolicyName extends com.google.api.client.json.GenericJson {
33+
34+
/**
35+
* Identifies an instance of the type. ID format varies by type. The ID format is defined in the
36+
* IAM .service file that defines the type, either in path_mapping or in a comment.
37+
* The value may be {@code null}.
38+
*/
39+
@com.google.api.client.util.Key
40+
private java.lang.String id;
41+
42+
/**
43+
* For Cloud IAM: The location of the Policy. Must be empty or "global" for Policies owned by
44+
* global IAM. Must name a region from prodspec/cloud-iam-cloudspec for Regional IAM Policies, see
45+
* go/iam-faq#where-is-iam-currently-deployed. For Local IAM: This field should be set to "local".
46+
* The value may be {@code null}.
47+
*/
48+
@com.google.api.client.util.Key
49+
private java.lang.String region;
50+
51+
/**
52+
* Resource type. Types are defined in IAM's .service files. Valid values for type might be
53+
* 'storage_buckets', 'compute_instances', 'resourcemanager_customers', 'billing_accounts', etc.
54+
* The value may be {@code null}.
55+
*/
56+
@com.google.api.client.util.Key
57+
private java.lang.String type;
58+
59+
/**
60+
* Identifies an instance of the type. ID format varies by type. The ID format is defined in the
61+
* IAM .service file that defines the type, either in path_mapping or in a comment.
62+
* @return value or {@code null} for none
63+
*/
64+
public java.lang.String getId() {
65+
return id;
66+
}
67+
68+
/**
69+
* Identifies an instance of the type. ID format varies by type. The ID format is defined in the
70+
* IAM .service file that defines the type, either in path_mapping or in a comment.
71+
* @param id id or {@code null} for none
72+
*/
73+
public PolicyName setId(java.lang.String id) {
74+
this.id = id;
75+
return this;
76+
}
77+
78+
/**
79+
* For Cloud IAM: The location of the Policy. Must be empty or "global" for Policies owned by
80+
* global IAM. Must name a region from prodspec/cloud-iam-cloudspec for Regional IAM Policies, see
81+
* go/iam-faq#where-is-iam-currently-deployed. For Local IAM: This field should be set to "local".
82+
* @return value or {@code null} for none
83+
*/
84+
public java.lang.String getRegion() {
85+
return region;
86+
}
87+
88+
/**
89+
* For Cloud IAM: The location of the Policy. Must be empty or "global" for Policies owned by
90+
* global IAM. Must name a region from prodspec/cloud-iam-cloudspec for Regional IAM Policies, see
91+
* go/iam-faq#where-is-iam-currently-deployed. For Local IAM: This field should be set to "local".
92+
* @param region region or {@code null} for none
93+
*/
94+
public PolicyName setRegion(java.lang.String region) {
95+
this.region = region;
96+
return this;
97+
}
98+
99+
/**
100+
* Resource type. Types are defined in IAM's .service files. Valid values for type might be
101+
* 'storage_buckets', 'compute_instances', 'resourcemanager_customers', 'billing_accounts', etc.
102+
* @return value or {@code null} for none
103+
*/
104+
public java.lang.String getType() {
105+
return type;
106+
}
107+
108+
/**
109+
* Resource type. Types are defined in IAM's .service files. Valid values for type might be
110+
* 'storage_buckets', 'compute_instances', 'resourcemanager_customers', 'billing_accounts', etc.
111+
* @param type type or {@code null} for none
112+
*/
113+
public PolicyName setType(java.lang.String type) {
114+
this.type = type;
115+
return this;
116+
}
117+
118+
@Override
119+
public PolicyName set(String fieldName, Object value) {
120+
return (PolicyName) super.set(fieldName, value);
121+
}
122+
123+
@Override
124+
public PolicyName clone() {
125+
return (PolicyName) super.clone();
126+
}
127+
128+
}

clients/google-api-services-dataform/v1beta1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-dataform</artifactId>
11-
<version>v1beta1-rev20250608-2.0.0</version>
12-
<name>Dataform API v1beta1-rev20250608-2.0.0</name>
11+
<version>v1beta1-rev20250708-2.0.0</version>
12+
<name>Dataform API v1beta1-rev20250708-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-dataform/v1beta1/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-dataform</artifactId>
25-
<version>v1beta1-rev20250608-2.0.0</version>
25+
<version>v1beta1-rev20250708-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-dataform:v1beta1-rev20250608-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dataform:v1beta1-rev20250708-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)