Skip to content

Commit 2a71422

Browse files
1 parent ca27d51 commit 2a71422

File tree

12 files changed

+336
-12
lines changed

12 files changed

+336
-12
lines changed

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

clients/google-api-services-parallelstore/v1/2.0.0/com/google/api/services/parallelstore/v1/model/ExportDataRequest.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@ public final class ExportDataRequest extends com.google.api.client.json.GenericJ
3636
@com.google.api.client.util.Key
3737
private DestinationGcsBucket destinationGcsBucket;
3838

39+
/**
40+
* Optional. The metadata options for the export data.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private TransferMetadataOptions metadataOptions;
45+
3946
/**
4047
* Optional. An optional request ID to identify requests. Specify a unique request ID so that if
4148
* you must retry your request, the server will know to ignore the request if it has already been
@@ -85,6 +92,23 @@ public ExportDataRequest setDestinationGcsBucket(DestinationGcsBucket destinatio
8592
return this;
8693
}
8794

95+
/**
96+
* Optional. The metadata options for the export data.
97+
* @return value or {@code null} for none
98+
*/
99+
public TransferMetadataOptions getMetadataOptions() {
100+
return metadataOptions;
101+
}
102+
103+
/**
104+
* Optional. The metadata options for the export data.
105+
* @param metadataOptions metadataOptions or {@code null} for none
106+
*/
107+
public ExportDataRequest setMetadataOptions(TransferMetadataOptions metadataOptions) {
108+
this.metadataOptions = metadataOptions;
109+
return this;
110+
}
111+
88112
/**
89113
* Optional. An optional request ID to identify requests. Specify a unique request ID so that if
90114
* you must retry your request, the server will know to ignore the request if it has already been

clients/google-api-services-parallelstore/v1/2.0.0/com/google/api/services/parallelstore/v1/model/ImportDataRequest.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@ public final class ImportDataRequest extends com.google.api.client.json.GenericJ
3636
@com.google.api.client.util.Key
3737
private DestinationParallelstore destinationParallelstore;
3838

39+
/**
40+
* Optional. The transfer metadata options for the import data.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private TransferMetadataOptions metadataOptions;
45+
3946
/**
4047
* Optional. An optional request ID to identify requests. Specify a unique request ID so that if
4148
* you must retry your request, the server will know to ignore the request if it has already been
@@ -85,6 +92,23 @@ public ImportDataRequest setDestinationParallelstore(DestinationParallelstore de
8592
return this;
8693
}
8794

95+
/**
96+
* Optional. The transfer metadata options for the import data.
97+
* @return value or {@code null} for none
98+
*/
99+
public TransferMetadataOptions getMetadataOptions() {
100+
return metadataOptions;
101+
}
102+
103+
/**
104+
* Optional. The transfer metadata options for the import data.
105+
* @param metadataOptions metadataOptions or {@code null} for none
106+
*/
107+
public ImportDataRequest setMetadataOptions(TransferMetadataOptions metadataOptions) {
108+
this.metadataOptions = metadataOptions;
109+
return this;
110+
}
111+
88112
/**
89113
* Optional. An optional request ID to identify requests. Specify a unique request ID so that if
90114
* you must retry your request, the server will know to ignore the request if it has already been
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
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.parallelstore.v1.model;
18+
19+
/**
20+
* Transfer metadata options for the instance.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Parallelstore API. For a detailed explanation see:
24+
* <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>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class TransferMetadataOptions extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Optional. The GID preservation behavior.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String gid;
38+
39+
/**
40+
* Optional. The mode preservation behavior.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.lang.String mode;
45+
46+
/**
47+
* Optional. The UID preservation behavior.
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private java.lang.String uid;
52+
53+
/**
54+
* Optional. The GID preservation behavior.
55+
* @return value or {@code null} for none
56+
*/
57+
public java.lang.String getGid() {
58+
return gid;
59+
}
60+
61+
/**
62+
* Optional. The GID preservation behavior.
63+
* @param gid gid or {@code null} for none
64+
*/
65+
public TransferMetadataOptions setGid(java.lang.String gid) {
66+
this.gid = gid;
67+
return this;
68+
}
69+
70+
/**
71+
* Optional. The mode preservation behavior.
72+
* @return value or {@code null} for none
73+
*/
74+
public java.lang.String getMode() {
75+
return mode;
76+
}
77+
78+
/**
79+
* Optional. The mode preservation behavior.
80+
* @param mode mode or {@code null} for none
81+
*/
82+
public TransferMetadataOptions setMode(java.lang.String mode) {
83+
this.mode = mode;
84+
return this;
85+
}
86+
87+
/**
88+
* Optional. The UID preservation behavior.
89+
* @return value or {@code null} for none
90+
*/
91+
public java.lang.String getUid() {
92+
return uid;
93+
}
94+
95+
/**
96+
* Optional. The UID preservation behavior.
97+
* @param uid uid or {@code null} for none
98+
*/
99+
public TransferMetadataOptions setUid(java.lang.String uid) {
100+
this.uid = uid;
101+
return this;
102+
}
103+
104+
@Override
105+
public TransferMetadataOptions set(String fieldName, Object value) {
106+
return (TransferMetadataOptions) super.set(fieldName, value);
107+
}
108+
109+
@Override
110+
public TransferMetadataOptions clone() {
111+
return (TransferMetadataOptions) super.clone();
112+
}
113+
114+
}

clients/google-api-services-parallelstore/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-parallelstore</artifactId>
11-
<version>v1-rev20250225-2.0.0</version>
12-
<name>Parallelstore API v1-rev20250225-2.0.0</name>
11+
<version>v1-rev20250303-2.0.0</version>
12+
<name>Parallelstore API v1-rev20250303-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

clients/google-api-services-parallelstore/v1beta/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-parallelstore</artifactId>
25-
<version>v1beta-rev20250225-2.0.0</version>
25+
<version>v1beta-rev20250303-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-parallelstore:v1beta-rev20250225-2.0.0'
38+
implementation 'com.google.apis:google-api-services-parallelstore:v1beta-rev20250303-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-parallelstore/v1beta/2.0.0/com/google/api/services/parallelstore/v1beta/model/ExportDataRequest.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@ public final class ExportDataRequest extends com.google.api.client.json.GenericJ
3636
@com.google.api.client.util.Key
3737
private DestinationGcsBucket destinationGcsBucket;
3838

39+
/**
40+
* Optional. The metadata options for the export data.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private TransferMetadataOptions metadataOptions;
45+
3946
/**
4047
* Optional. An optional request ID to identify requests. Specify a unique request ID so that if
4148
* you must retry your request, the server will know to ignore the request if it has already been
@@ -85,6 +92,23 @@ public ExportDataRequest setDestinationGcsBucket(DestinationGcsBucket destinatio
8592
return this;
8693
}
8794

95+
/**
96+
* Optional. The metadata options for the export data.
97+
* @return value or {@code null} for none
98+
*/
99+
public TransferMetadataOptions getMetadataOptions() {
100+
return metadataOptions;
101+
}
102+
103+
/**
104+
* Optional. The metadata options for the export data.
105+
* @param metadataOptions metadataOptions or {@code null} for none
106+
*/
107+
public ExportDataRequest setMetadataOptions(TransferMetadataOptions metadataOptions) {
108+
this.metadataOptions = metadataOptions;
109+
return this;
110+
}
111+
88112
/**
89113
* Optional. An optional request ID to identify requests. Specify a unique request ID so that if
90114
* you must retry your request, the server will know to ignore the request if it has already been

clients/google-api-services-parallelstore/v1beta/2.0.0/com/google/api/services/parallelstore/v1beta/model/ImportDataRequest.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@ public final class ImportDataRequest extends com.google.api.client.json.GenericJ
3636
@com.google.api.client.util.Key
3737
private DestinationParallelstore destinationParallelstore;
3838

39+
/**
40+
* Optional. The transfer metadata options for the import data.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private TransferMetadataOptions metadataOptions;
45+
3946
/**
4047
* Optional. An optional request ID to identify requests. Specify a unique request ID so that if
4148
* you must retry your request, the server will know to ignore the request if it has already been
@@ -85,6 +92,23 @@ public ImportDataRequest setDestinationParallelstore(DestinationParallelstore de
8592
return this;
8693
}
8794

95+
/**
96+
* Optional. The transfer metadata options for the import data.
97+
* @return value or {@code null} for none
98+
*/
99+
public TransferMetadataOptions getMetadataOptions() {
100+
return metadataOptions;
101+
}
102+
103+
/**
104+
* Optional. The transfer metadata options for the import data.
105+
* @param metadataOptions metadataOptions or {@code null} for none
106+
*/
107+
public ImportDataRequest setMetadataOptions(TransferMetadataOptions metadataOptions) {
108+
this.metadataOptions = metadataOptions;
109+
return this;
110+
}
111+
88112
/**
89113
* Optional. An optional request ID to identify requests. Specify a unique request ID so that if
90114
* you must retry your request, the server will know to ignore the request if it has already been

0 commit comments

Comments
 (0)