Skip to content

Commit d84a644

Browse files
1 parent b80f904 commit d84a644

25 files changed

+330
-30
lines changed

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

clients/google-api-services-cloudasset/v1/2.0.0/com/google/api/services/cloudasset/v1/model/GoogleIdentityAccesscontextmanagerV1EgressPolicy.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,15 @@ public final class GoogleIdentityAccesscontextmanagerV1EgressPolicy extends com.
5353
@com.google.api.client.util.Key
5454
private GoogleIdentityAccesscontextmanagerV1EgressTo egressTo;
5555

56+
/**
57+
* Optional. Human-readable title for the egress rule. The title must be unique within the
58+
* perimeter and can not exceed 100 characters. Within the access policy, the combined length of
59+
* all rule titles must not exceed 240,000 characters.
60+
* The value may be {@code null}.
61+
*/
62+
@com.google.api.client.util.Key
63+
private java.lang.String title;
64+
5665
/**
5766
* Defines conditions on the source of a request causing this EgressPolicy to apply.
5867
* @return value or {@code null} for none
@@ -89,6 +98,27 @@ public GoogleIdentityAccesscontextmanagerV1EgressPolicy setEgressTo(GoogleIdenti
8998
return this;
9099
}
91100

101+
/**
102+
* Optional. Human-readable title for the egress rule. The title must be unique within the
103+
* perimeter and can not exceed 100 characters. Within the access policy, the combined length of
104+
* all rule titles must not exceed 240,000 characters.
105+
* @return value or {@code null} for none
106+
*/
107+
public java.lang.String getTitle() {
108+
return title;
109+
}
110+
111+
/**
112+
* Optional. Human-readable title for the egress rule. The title must be unique within the
113+
* perimeter and can not exceed 100 characters. Within the access policy, the combined length of
114+
* all rule titles must not exceed 240,000 characters.
115+
* @param title title or {@code null} for none
116+
*/
117+
public GoogleIdentityAccesscontextmanagerV1EgressPolicy setTitle(java.lang.String title) {
118+
this.title = title;
119+
return this;
120+
}
121+
92122
@Override
93123
public GoogleIdentityAccesscontextmanagerV1EgressPolicy set(String fieldName, Object value) {
94124
return (GoogleIdentityAccesscontextmanagerV1EgressPolicy) super.set(fieldName, value);

clients/google-api-services-cloudasset/v1/2.0.0/com/google/api/services/cloudasset/v1/model/GoogleIdentityAccesscontextmanagerV1IngressPolicy.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,15 @@ public final class GoogleIdentityAccesscontextmanagerV1IngressPolicy extends com
5151
@com.google.api.client.util.Key
5252
private GoogleIdentityAccesscontextmanagerV1IngressTo ingressTo;
5353

54+
/**
55+
* Optional. Human-readable title for the ingress rule. The title must be unique within the
56+
* perimeter and can not exceed 100 characters. Within the access policy, the combined length of
57+
* all rule titles must not exceed 240,000 characters.
58+
* The value may be {@code null}.
59+
*/
60+
@com.google.api.client.util.Key
61+
private java.lang.String title;
62+
5463
/**
5564
* Defines the conditions on the source of a request causing this IngressPolicy to apply.
5665
* @return value or {@code null} for none
@@ -87,6 +96,27 @@ public GoogleIdentityAccesscontextmanagerV1IngressPolicy setIngressTo(GoogleIden
8796
return this;
8897
}
8998

99+
/**
100+
* Optional. Human-readable title for the ingress rule. The title must be unique within the
101+
* perimeter and can not exceed 100 characters. Within the access policy, the combined length of
102+
* all rule titles must not exceed 240,000 characters.
103+
* @return value or {@code null} for none
104+
*/
105+
public java.lang.String getTitle() {
106+
return title;
107+
}
108+
109+
/**
110+
* Optional. Human-readable title for the ingress rule. The title must be unique within the
111+
* perimeter and can not exceed 100 characters. Within the access policy, the combined length of
112+
* all rule titles must not exceed 240,000 characters.
113+
* @param title title or {@code null} for none
114+
*/
115+
public GoogleIdentityAccesscontextmanagerV1IngressPolicy setTitle(java.lang.String title) {
116+
this.title = title;
117+
return this;
118+
}
119+
90120
@Override
91121
public GoogleIdentityAccesscontextmanagerV1IngressPolicy set(String fieldName, Object value) {
92122
return (GoogleIdentityAccesscontextmanagerV1IngressPolicy) super.set(fieldName, value);

clients/google-api-services-cloudasset/v1/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-cloudasset</artifactId>
11-
<version>v1-rev20241115-2.0.0</version>
12-
<name>Cloud Asset API v1-rev20241115-2.0.0</name>
11+
<version>v1-rev20241211-2.0.0</version>
12+
<name>Cloud Asset API v1-rev20241211-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

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

clients/google-api-services-cloudasset/v1beta1/2.0.0/com/google/api/services/cloudasset/v1beta1/model/GoogleIdentityAccesscontextmanagerV1EgressPolicy.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,15 @@ public final class GoogleIdentityAccesscontextmanagerV1EgressPolicy extends com.
5353
@com.google.api.client.util.Key
5454
private GoogleIdentityAccesscontextmanagerV1EgressTo egressTo;
5555

56+
/**
57+
* Optional. Human-readable title for the egress rule. The title must be unique within the
58+
* perimeter and can not exceed 100 characters. Within the access policy, the combined length of
59+
* all rule titles must not exceed 240,000 characters.
60+
* The value may be {@code null}.
61+
*/
62+
@com.google.api.client.util.Key
63+
private java.lang.String title;
64+
5665
/**
5766
* Defines conditions on the source of a request causing this EgressPolicy to apply.
5867
* @return value or {@code null} for none
@@ -89,6 +98,27 @@ public GoogleIdentityAccesscontextmanagerV1EgressPolicy setEgressTo(GoogleIdenti
8998
return this;
9099
}
91100

101+
/**
102+
* Optional. Human-readable title for the egress rule. The title must be unique within the
103+
* perimeter and can not exceed 100 characters. Within the access policy, the combined length of
104+
* all rule titles must not exceed 240,000 characters.
105+
* @return value or {@code null} for none
106+
*/
107+
public java.lang.String getTitle() {
108+
return title;
109+
}
110+
111+
/**
112+
* Optional. Human-readable title for the egress rule. The title must be unique within the
113+
* perimeter and can not exceed 100 characters. Within the access policy, the combined length of
114+
* all rule titles must not exceed 240,000 characters.
115+
* @param title title or {@code null} for none
116+
*/
117+
public GoogleIdentityAccesscontextmanagerV1EgressPolicy setTitle(java.lang.String title) {
118+
this.title = title;
119+
return this;
120+
}
121+
92122
@Override
93123
public GoogleIdentityAccesscontextmanagerV1EgressPolicy set(String fieldName, Object value) {
94124
return (GoogleIdentityAccesscontextmanagerV1EgressPolicy) super.set(fieldName, value);

clients/google-api-services-cloudasset/v1beta1/2.0.0/com/google/api/services/cloudasset/v1beta1/model/GoogleIdentityAccesscontextmanagerV1IngressPolicy.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,15 @@ public final class GoogleIdentityAccesscontextmanagerV1IngressPolicy extends com
5151
@com.google.api.client.util.Key
5252
private GoogleIdentityAccesscontextmanagerV1IngressTo ingressTo;
5353

54+
/**
55+
* Optional. Human-readable title for the ingress rule. The title must be unique within the
56+
* perimeter and can not exceed 100 characters. Within the access policy, the combined length of
57+
* all rule titles must not exceed 240,000 characters.
58+
* The value may be {@code null}.
59+
*/
60+
@com.google.api.client.util.Key
61+
private java.lang.String title;
62+
5463
/**
5564
* Defines the conditions on the source of a request causing this IngressPolicy to apply.
5665
* @return value or {@code null} for none
@@ -87,6 +96,27 @@ public GoogleIdentityAccesscontextmanagerV1IngressPolicy setIngressTo(GoogleIden
8796
return this;
8897
}
8998

99+
/**
100+
* Optional. Human-readable title for the ingress rule. The title must be unique within the
101+
* perimeter and can not exceed 100 characters. Within the access policy, the combined length of
102+
* all rule titles must not exceed 240,000 characters.
103+
* @return value or {@code null} for none
104+
*/
105+
public java.lang.String getTitle() {
106+
return title;
107+
}
108+
109+
/**
110+
* Optional. Human-readable title for the ingress rule. The title must be unique within the
111+
* perimeter and can not exceed 100 characters. Within the access policy, the combined length of
112+
* all rule titles must not exceed 240,000 characters.
113+
* @param title title or {@code null} for none
114+
*/
115+
public GoogleIdentityAccesscontextmanagerV1IngressPolicy setTitle(java.lang.String title) {
116+
this.title = title;
117+
return this;
118+
}
119+
90120
@Override
91121
public GoogleIdentityAccesscontextmanagerV1IngressPolicy set(String fieldName, Object value) {
92122
return (GoogleIdentityAccesscontextmanagerV1IngressPolicy) super.set(fieldName, value);

clients/google-api-services-cloudasset/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-cloudasset</artifactId>
11-
<version>v1beta1-rev20241115-2.0.0</version>
12-
<name>Cloud Asset API v1beta1-rev20241115-2.0.0</name>
11+
<version>v1beta1-rev20241211-2.0.0</version>
12+
<name>Cloud Asset API v1beta1-rev20241211-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)