Skip to content

Commit 00740ec

Browse files
1 parent 891be4d commit 00740ec

File tree

9 files changed

+117
-15
lines changed

9 files changed

+117
-15
lines changed

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

clients/google-api-services-connectors/v1/2.0.0/com/google/api/services/connectors/v1/model/MultipleSelectConfig.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public final class MultipleSelectConfig extends com.google.api.client.json.Gener
4444
private java.util.List<MultipleSelectOption> multipleSelectOptions;
4545

4646
/**
47-
* Required. Value separator.
47+
* Required. Value separator. Only "," can be used for OAuth auth code flow scope field.
4848
* The value may be {@code null}.
4949
*/
5050
@com.google.api.client.util.Key
@@ -85,15 +85,15 @@ public MultipleSelectConfig setMultipleSelectOptions(java.util.List<MultipleSele
8585
}
8686

8787
/**
88-
* Required. Value separator.
88+
* Required. Value separator. Only "," can be used for OAuth auth code flow scope field.
8989
* @return value or {@code null} for none
9090
*/
9191
public java.lang.String getValueSeparator() {
9292
return valueSeparator;
9393
}
9494

9595
/**
96-
* Required. Value separator.
96+
* Required. Value separator. Only "," can be used for OAuth auth code flow scope field.
9797
* @param valueSeparator valueSeparator or {@code null} for none
9898
*/
9999
public MultipleSelectConfig setValueSeparator(java.lang.String valueSeparator) {

clients/google-api-services-connectors/v1/2.0.0/com/google/api/services/connectors/v1/model/ResultMetadata.java

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,14 @@ public final class ResultMetadata extends com.google.api.client.json.GenericJson
3636
@com.google.api.client.util.Key
3737
private java.lang.String dataType;
3838

39+
/**
40+
* The following field specifies the default value of the Parameter provided by the external
41+
* system if a value is not provided.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.Object defaultValue;
46+
3947
/**
4048
* A brief description of the field.
4149
* The value may be {@code null}.
@@ -57,6 +65,13 @@ public final class ResultMetadata extends com.google.api.client.json.GenericJson
5765
@com.google.api.client.util.Key
5866
private JsonSchema jsonSchema;
5967

68+
/**
69+
* Specifies whether a null value is allowed.
70+
* The value may be {@code null}.
71+
*/
72+
@com.google.api.client.util.Key
73+
private java.lang.Boolean nullable;
74+
6075
/**
6176
* The data type of the field.
6277
* @return value or {@code null} for none
@@ -74,6 +89,25 @@ public ResultMetadata setDataType(java.lang.String dataType) {
7489
return this;
7590
}
7691

92+
/**
93+
* The following field specifies the default value of the Parameter provided by the external
94+
* system if a value is not provided.
95+
* @return value or {@code null} for none
96+
*/
97+
public java.lang.Object getDefaultValue() {
98+
return defaultValue;
99+
}
100+
101+
/**
102+
* The following field specifies the default value of the Parameter provided by the external
103+
* system if a value is not provided.
104+
* @param defaultValue defaultValue or {@code null} for none
105+
*/
106+
public ResultMetadata setDefaultValue(java.lang.Object defaultValue) {
107+
this.defaultValue = defaultValue;
108+
return this;
109+
}
110+
77111
/**
78112
* A brief description of the field.
79113
* @return value or {@code null} for none
@@ -125,6 +159,23 @@ public ResultMetadata setJsonSchema(JsonSchema jsonSchema) {
125159
return this;
126160
}
127161

162+
/**
163+
* Specifies whether a null value is allowed.
164+
* @return value or {@code null} for none
165+
*/
166+
public java.lang.Boolean getNullable() {
167+
return nullable;
168+
}
169+
170+
/**
171+
* Specifies whether a null value is allowed.
172+
* @param nullable nullable or {@code null} for none
173+
*/
174+
public ResultMetadata setNullable(java.lang.Boolean nullable) {
175+
this.nullable = nullable;
176+
return this;
177+
}
178+
128179
@Override
129180
public ResultMetadata set(String fieldName, Object value) {
130181
return (ResultMetadata) super.set(fieldName, value);

clients/google-api-services-connectors/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-connectors</artifactId>
11-
<version>v1-rev20240701-2.0.0</version>
12-
<name>Connectors API v1-rev20240701-2.0.0</name>
11+
<version>v1-rev20240708-2.0.0</version>
12+
<name>Connectors API v1-rev20240708-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

clients/google-api-services-connectors/v2/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-connectors</artifactId>
25-
<version>v2-rev20240612-2.0.0</version>
25+
<version>v2-rev20240708-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-connectors:v2-rev20240612-2.0.0'
38+
implementation 'com.google.apis:google-api-services-connectors:v2-rev20240708-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-connectors/v2/2.0.0/com/google/api/services/connectors/v2/model/ResultMetadata.java

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,14 @@ public final class ResultMetadata extends com.google.api.client.json.GenericJson
3636
@com.google.api.client.util.Key
3737
private java.lang.String dataType;
3838

39+
/**
40+
* The following field specifies the default value of the Parameter provided by the external
41+
* system if a value is not provided.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.Object defaultValue;
46+
3947
/**
4048
* A brief description of the metadata field.
4149
* The value may be {@code null}.
@@ -57,6 +65,13 @@ public final class ResultMetadata extends com.google.api.client.json.GenericJson
5765
@com.google.api.client.util.Key
5866
private java.lang.String name;
5967

68+
/**
69+
* Specifies whether a null value is allowed.
70+
* The value may be {@code null}.
71+
*/
72+
@com.google.api.client.util.Key
73+
private java.lang.Boolean nullable;
74+
6075
/**
6176
* The data type of the metadata field
6277
* @return value or {@code null} for none
@@ -74,6 +89,25 @@ public ResultMetadata setDataType(java.lang.String dataType) {
7489
return this;
7590
}
7691

92+
/**
93+
* The following field specifies the default value of the Parameter provided by the external
94+
* system if a value is not provided.
95+
* @return value or {@code null} for none
96+
*/
97+
public java.lang.Object getDefaultValue() {
98+
return defaultValue;
99+
}
100+
101+
/**
102+
* The following field specifies the default value of the Parameter provided by the external
103+
* system if a value is not provided.
104+
* @param defaultValue defaultValue or {@code null} for none
105+
*/
106+
public ResultMetadata setDefaultValue(java.lang.Object defaultValue) {
107+
this.defaultValue = defaultValue;
108+
return this;
109+
}
110+
77111
/**
78112
* A brief description of the metadata field.
79113
* @return value or {@code null} for none
@@ -125,6 +159,23 @@ public ResultMetadata setName(java.lang.String name) {
125159
return this;
126160
}
127161

162+
/**
163+
* Specifies whether a null value is allowed.
164+
* @return value or {@code null} for none
165+
*/
166+
public java.lang.Boolean getNullable() {
167+
return nullable;
168+
}
169+
170+
/**
171+
* Specifies whether a null value is allowed.
172+
* @param nullable nullable or {@code null} for none
173+
*/
174+
public ResultMetadata setNullable(java.lang.Boolean nullable) {
175+
this.nullable = nullable;
176+
return this;
177+
}
178+
128179
@Override
129180
public ResultMetadata set(String fieldName, Object value) {
130181
return (ResultMetadata) super.set(fieldName, value);

clients/google-api-services-connectors/v2/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-connectors</artifactId>
11-
<version>v2-rev20240612-2.0.0</version>
12-
<name>Connectors API v2-rev20240612-2.0.0</name>
11+
<version>v2-rev20240708-2.0.0</version>
12+
<name>Connectors API v2-rev20240708-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-connectors/v2/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-connectors</artifactId>
25-
<version>v2-rev20240612-2.0.0</version>
25+
<version>v2-rev20240708-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-connectors:v2-rev20240612-2.0.0'
38+
implementation 'com.google.apis:google-api-services-connectors:v2-rev20240708-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)