Skip to content

Commit c98ab41

Browse files
1 parent f7ac1b2 commit c98ab41

File tree

10 files changed

+140
-18
lines changed

10 files changed

+140
-18
lines changed

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

clients/google-api-services-migrationcenter/v1/2.0.0/com/google/api/services/migrationcenter/v1/MigrationCenterAPI.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1827,6 +1827,29 @@ public List setPageToken(java.lang.String pageToken) {
18271827
return this;
18281828
}
18291829

1830+
/**
1831+
* Optional. When this value is set to 'true,' the response will include all assets,
1832+
* including those that are hidden.
1833+
*/
1834+
@com.google.api.client.util.Key
1835+
private java.lang.Boolean showHidden;
1836+
1837+
/** Optional. When this value is set to 'true,' the response will include all assets, including those
1838+
that are hidden.
1839+
*/
1840+
public java.lang.Boolean getShowHidden() {
1841+
return showHidden;
1842+
}
1843+
1844+
/**
1845+
* Optional. When this value is set to 'true,' the response will include all assets,
1846+
* including those that are hidden.
1847+
*/
1848+
public List setShowHidden(java.lang.Boolean showHidden) {
1849+
this.showHidden = showHidden;
1850+
return this;
1851+
}
1852+
18301853
/** View of the assets. Defaults to BASIC. */
18311854
@com.google.api.client.util.Key
18321855
private java.lang.String view;

clients/google-api-services-migrationcenter/v1/2.0.0/com/google/api/services/migrationcenter/v1/model/AggregateAssetsValuesRequest.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,14 @@ public final class AggregateAssetsValuesRequest extends com.google.api.client.js
4343
@com.google.api.client.util.Key
4444
private java.lang.String filter;
4545

46+
/**
47+
* Optional. When this value is set to 'true,' the response will include all assets, including
48+
* those that are hidden.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.Boolean showHidden;
53+
4654
/**
4755
* Array of aggregations to perform. Up to 25 aggregations can be defined.
4856
* @return value or {@code null} for none
@@ -77,6 +85,25 @@ public AggregateAssetsValuesRequest setFilter(java.lang.String filter) {
7785
return this;
7886
}
7987

88+
/**
89+
* Optional. When this value is set to 'true,' the response will include all assets, including
90+
* those that are hidden.
91+
* @return value or {@code null} for none
92+
*/
93+
public java.lang.Boolean getShowHidden() {
94+
return showHidden;
95+
}
96+
97+
/**
98+
* Optional. When this value is set to 'true,' the response will include all assets, including
99+
* those that are hidden.
100+
* @param showHidden showHidden or {@code null} for none
101+
*/
102+
public AggregateAssetsValuesRequest setShowHidden(java.lang.Boolean showHidden) {
103+
this.showHidden = showHidden;
104+
return this;
105+
}
106+
80107
@Override
81108
public AggregateAssetsValuesRequest set(String fieldName, Object value) {
82109
return (AggregateAssetsValuesRequest) super.set(fieldName, value);

clients/google-api-services-migrationcenter/v1/2.0.0/com/google/api/services/migrationcenter/v1/model/Asset.java

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,27 @@ public final class Asset extends com.google.api.client.json.GenericJson {
6565
@com.google.api.client.util.Key
6666
private DatabaseDetails databaseDetails;
6767

68+
/**
69+
* Optional. Indicates if the asset is hidden.
70+
* The value may be {@code null}.
71+
*/
72+
@com.google.api.client.util.Key
73+
private java.lang.Boolean hidden;
74+
75+
/**
76+
* Optional. An optional reason for marking this asset as hidden.
77+
* The value may be {@code null}.
78+
*/
79+
@com.google.api.client.util.Key
80+
private java.lang.String hideReason;
81+
82+
/**
83+
* Output only. The timestamp when the asset was marked as hidden.
84+
* The value may be {@code null}.
85+
*/
86+
@com.google.api.client.util.Key
87+
private String hideTime;
88+
6889
/**
6990
* Output only. The list of insights associated with the asset.
7091
* The value may be {@code null}.
@@ -206,6 +227,57 @@ public Asset setDatabaseDetails(DatabaseDetails databaseDetails) {
206227
return this;
207228
}
208229

230+
/**
231+
* Optional. Indicates if the asset is hidden.
232+
* @return value or {@code null} for none
233+
*/
234+
public java.lang.Boolean getHidden() {
235+
return hidden;
236+
}
237+
238+
/**
239+
* Optional. Indicates if the asset is hidden.
240+
* @param hidden hidden or {@code null} for none
241+
*/
242+
public Asset setHidden(java.lang.Boolean hidden) {
243+
this.hidden = hidden;
244+
return this;
245+
}
246+
247+
/**
248+
* Optional. An optional reason for marking this asset as hidden.
249+
* @return value or {@code null} for none
250+
*/
251+
public java.lang.String getHideReason() {
252+
return hideReason;
253+
}
254+
255+
/**
256+
* Optional. An optional reason for marking this asset as hidden.
257+
* @param hideReason hideReason or {@code null} for none
258+
*/
259+
public Asset setHideReason(java.lang.String hideReason) {
260+
this.hideReason = hideReason;
261+
return this;
262+
}
263+
264+
/**
265+
* Output only. The timestamp when the asset was marked as hidden.
266+
* @return value or {@code null} for none
267+
*/
268+
public String getHideTime() {
269+
return hideTime;
270+
}
271+
272+
/**
273+
* Output only. The timestamp when the asset was marked as hidden.
274+
* @param hideTime hideTime or {@code null} for none
275+
*/
276+
public Asset setHideTime(String hideTime) {
277+
this.hideTime = hideTime;
278+
return this;
279+
}
280+
209281
/**
210282
* Output only. The list of insights associated with the asset.
211283
* @return value or {@code null} for none

clients/google-api-services-migrationcenter/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-migrationcenter</artifactId>
11-
<version>v1-rev20250320-2.0.0</version>
12-
<name>Migration Center API v1-rev20250320-2.0.0</name>
11+
<version>v1-rev20250422-2.0.0</version>
12+
<name>Migration Center API v1-rev20250422-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

clients/google-api-services-migrationcenter/v1alpha1/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-migrationcenter</artifactId>
25-
<version>v1alpha1-rev20250410-2.0.0</version>
25+
<version>v1alpha1-rev20250422-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-migrationcenter:v1alpha1-rev20250410-2.0.0'
38+
implementation 'com.google.apis:google-api-services-migrationcenter:v1alpha1-rev20250422-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-migrationcenter/v1alpha1/2.0.0/com/google/api/services/migrationcenter/v1alpha1/model/DiscoveryClientDiscoveryClientRecommendedVersion.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,29 +30,29 @@
3030
public final class DiscoveryClientDiscoveryClientRecommendedVersion extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* The URI of the discovery client version.
33+
* Output only. The URI of the discovery client version.
3434
* The value may be {@code null}.
3535
*/
3636
@com.google.api.client.util.Key
3737
private java.lang.String uri;
3838

3939
/**
40-
* The version of the discovery client.
40+
* Output only. The version of the discovery client.
4141
* The value may be {@code null}.
4242
*/
4343
@com.google.api.client.util.Key
4444
private java.lang.String version;
4545

4646
/**
47-
* The URI of the discovery client version.
47+
* Output only. The URI of the discovery client version.
4848
* @return value or {@code null} for none
4949
*/
5050
public java.lang.String getUri() {
5151
return uri;
5252
}
5353

5454
/**
55-
* The URI of the discovery client version.
55+
* Output only. The URI of the discovery client version.
5656
* @param uri uri or {@code null} for none
5757
*/
5858
public DiscoveryClientDiscoveryClientRecommendedVersion setUri(java.lang.String uri) {
@@ -61,15 +61,15 @@ public DiscoveryClientDiscoveryClientRecommendedVersion setUri(java.lang.String
6161
}
6262

6363
/**
64-
* The version of the discovery client.
64+
* Output only. The version of the discovery client.
6565
* @return value or {@code null} for none
6666
*/
6767
public java.lang.String getVersion() {
6868
return version;
6969
}
7070

7171
/**
72-
* The version of the discovery client.
72+
* Output only. The version of the discovery client.
7373
* @param version version or {@code null} for none
7474
*/
7575
public DiscoveryClientDiscoveryClientRecommendedVersion setVersion(java.lang.String version) {

clients/google-api-services-migrationcenter/v1alpha1/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-migrationcenter</artifactId>
11-
<version>v1alpha1-rev20250410-2.0.0</version>
12-
<name>Migration Center API v1alpha1-rev20250410-2.0.0</name>
11+
<version>v1alpha1-rev20250422-2.0.0</version>
12+
<name>Migration Center API v1alpha1-rev20250422-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-migrationcenter/v1alpha1/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-migrationcenter</artifactId>
25-
<version>v1alpha1-rev20250410-2.0.0</version>
25+
<version>v1alpha1-rev20250422-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-migrationcenter:v1alpha1-rev20250410-2.0.0'
38+
implementation 'com.google.apis:google-api-services-migrationcenter:v1alpha1-rev20250422-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)