Skip to content

Commit 2e5277d

Browse files
1 parent 878b373 commit 2e5277d

File tree

4 files changed

+51
-6
lines changed

4 files changed

+51
-6
lines changed

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

clients/google-api-services-serviceusage/v1beta1/2.0.0/com/google/api/services/serviceusage/v1beta1/model/Impact.java

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,20 @@ public final class Impact extends com.google.api.client.json.GenericJson {
4343
@com.google.api.client.util.Key
4444
private java.lang.String impactType;
4545

46+
/**
47+
* The parent resource that the analysis is based on and the service name that the analysis is
48+
* for. Example: `projects/100/services/compute.googleapis.com`,
49+
* folders/101/services/compute.googleapis.com` and
50+
* `organizations/102/services/compute.googleapis.com`. Usually, the parent resource here is same
51+
* as the parent resource of the analyzed policy. However, for some analysis types, the parent can
52+
* be different. For example, for resource existence analysis, if the parent resource of the
53+
* analyzed policy is a folder or an organization, the parent resource here can still be the
54+
* project that contains the resources.
55+
* The value may be {@code null}.
56+
*/
57+
@com.google.api.client.util.Key
58+
private java.lang.String parent;
59+
4660
/**
4761
* Output only. User friendly impact detail in a free form message.
4862
* @return value or {@code null} for none
@@ -77,6 +91,37 @@ public Impact setImpactType(java.lang.String impactType) {
7791
return this;
7892
}
7993

94+
/**
95+
* The parent resource that the analysis is based on and the service name that the analysis is
96+
* for. Example: `projects/100/services/compute.googleapis.com`,
97+
* folders/101/services/compute.googleapis.com` and
98+
* `organizations/102/services/compute.googleapis.com`. Usually, the parent resource here is same
99+
* as the parent resource of the analyzed policy. However, for some analysis types, the parent can
100+
* be different. For example, for resource existence analysis, if the parent resource of the
101+
* analyzed policy is a folder or an organization, the parent resource here can still be the
102+
* project that contains the resources.
103+
* @return value or {@code null} for none
104+
*/
105+
public java.lang.String getParent() {
106+
return parent;
107+
}
108+
109+
/**
110+
* The parent resource that the analysis is based on and the service name that the analysis is
111+
* for. Example: `projects/100/services/compute.googleapis.com`,
112+
* folders/101/services/compute.googleapis.com` and
113+
* `organizations/102/services/compute.googleapis.com`. Usually, the parent resource here is same
114+
* as the parent resource of the analyzed policy. However, for some analysis types, the parent can
115+
* be different. For example, for resource existence analysis, if the parent resource of the
116+
* analyzed policy is a folder or an organization, the parent resource here can still be the
117+
* project that contains the resources.
118+
* @param parent parent or {@code null} for none
119+
*/
120+
public Impact setParent(java.lang.String parent) {
121+
this.parent = parent;
122+
return this;
123+
}
124+
80125
@Override
81126
public Impact set(String fieldName, Object value) {
82127
return (Impact) super.set(fieldName, value);

clients/google-api-services-serviceusage/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-serviceusage</artifactId>
11-
<version>v1beta1-rev20241205-2.0.0</version>
12-
<name>Service Usage API v1beta1-rev20241205-2.0.0</name>
11+
<version>v1beta1-rev20241219-2.0.0</version>
12+
<name>Service Usage API v1beta1-rev20241219-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)