Skip to content

Commit 9af7afb

Browse files
1 parent f5a8de7 commit 9af7afb

File tree

4 files changed

+57
-6
lines changed

4 files changed

+57
-6
lines changed

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

clients/google-api-services-recommender/v1/2.0.0/com/google/api/services/recommender/v1/model/GoogleCloudRecommenderV1Impact.java

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,14 @@ public final class GoogleCloudRecommenderV1Impact extends com.google.api.client.
4343
@com.google.api.client.util.Key
4444
private GoogleCloudRecommenderV1CostProjection costProjection;
4545

46+
/**
47+
* If populated, the impact contains multiple components. In this case, the top-level impact
48+
* contains aggregated values and each component contains per-service details.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.util.List<GoogleCloudRecommenderV1Impact> impactComponents;
53+
4654
/**
4755
* Use with CategoryType.RELIABILITY
4856
* The value may be {@code null}.
@@ -57,6 +65,13 @@ public final class GoogleCloudRecommenderV1Impact extends com.google.api.client.
5765
@com.google.api.client.util.Key
5866
private GoogleCloudRecommenderV1SecurityProjection securityProjection;
5967

68+
/**
69+
* The service that this impact is associated with.
70+
* The value may be {@code null}.
71+
*/
72+
@com.google.api.client.util.Key
73+
private java.lang.String service;
74+
6075
/**
6176
* Use with CategoryType.SUSTAINABILITY
6277
* The value may be {@code null}.
@@ -98,6 +113,25 @@ public GoogleCloudRecommenderV1Impact setCostProjection(GoogleCloudRecommenderV1
98113
return this;
99114
}
100115

116+
/**
117+
* If populated, the impact contains multiple components. In this case, the top-level impact
118+
* contains aggregated values and each component contains per-service details.
119+
* @return value or {@code null} for none
120+
*/
121+
public java.util.List<GoogleCloudRecommenderV1Impact> getImpactComponents() {
122+
return impactComponents;
123+
}
124+
125+
/**
126+
* If populated, the impact contains multiple components. In this case, the top-level impact
127+
* contains aggregated values and each component contains per-service details.
128+
* @param impactComponents impactComponents or {@code null} for none
129+
*/
130+
public GoogleCloudRecommenderV1Impact setImpactComponents(java.util.List<GoogleCloudRecommenderV1Impact> impactComponents) {
131+
this.impactComponents = impactComponents;
132+
return this;
133+
}
134+
101135
/**
102136
* Use with CategoryType.RELIABILITY
103137
* @return value or {@code null} for none
@@ -132,6 +166,23 @@ public GoogleCloudRecommenderV1Impact setSecurityProjection(GoogleCloudRecommend
132166
return this;
133167
}
134168

169+
/**
170+
* The service that this impact is associated with.
171+
* @return value or {@code null} for none
172+
*/
173+
public java.lang.String getService() {
174+
return service;
175+
}
176+
177+
/**
178+
* The service that this impact is associated with.
179+
* @param service service or {@code null} for none
180+
*/
181+
public GoogleCloudRecommenderV1Impact setService(java.lang.String service) {
182+
this.service = service;
183+
return this;
184+
}
185+
135186
/**
136187
* Use with CategoryType.SUSTAINABILITY
137188
* @return value or {@code null} for none

clients/google-api-services-recommender/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-recommender</artifactId>
11-
<version>v1-rev20240428-2.0.0</version>
12-
<name>Recommender API v1-rev20240428-2.0.0</name>
11+
<version>v1-rev20241013-2.0.0</version>
12+
<name>Recommender API v1-rev20241013-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)