Skip to content

Commit a562a92

Browse files
1 parent e4a63ff commit a562a92

File tree

6 files changed

+39
-12
lines changed

6 files changed

+39
-12
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-rev20250205-2.0.0</version>
25+
<version>v1-rev20250218-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-rev20250205-2.0.0'
38+
implementation 'com.google.apis:google-api-services-connectors:v1-rev20250218-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,14 @@
2929
@SuppressWarnings("javadoc")
3030
public final class JsonSchema extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Additional details apart from standard json schema fields, this gives flexibility to store
34+
* metadata about the schema
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.util.Map<String, java.lang.Object> additionalDetails;
39+
3240
/**
3341
* The default value of the field or object described by this schema.
3442
* The value may be {@code null}.
@@ -95,6 +103,25 @@ public final class JsonSchema extends com.google.api.client.json.GenericJson {
95103
@com.google.api.client.util.Key
96104
private java.util.List<java.lang.String> type;
97105

106+
/**
107+
* Additional details apart from standard json schema fields, this gives flexibility to store
108+
* metadata about the schema
109+
* @return value or {@code null} for none
110+
*/
111+
public java.util.Map<String, java.lang.Object> getAdditionalDetails() {
112+
return additionalDetails;
113+
}
114+
115+
/**
116+
* Additional details apart from standard json schema fields, this gives flexibility to store
117+
* metadata about the schema
118+
* @param additionalDetails additionalDetails or {@code null} for none
119+
*/
120+
public JsonSchema setAdditionalDetails(java.util.Map<String, java.lang.Object> additionalDetails) {
121+
this.additionalDetails = additionalDetails;
122+
return this;
123+
}
124+
98125
/**
99126
* The default value of the field or object described by this schema.
100127
* @return value or {@code null} for none

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public final class RoleGrant extends com.google.api.client.json.GenericJson {
4040
private java.lang.String helperTextTemplate;
4141

4242
/**
43-
* Optional. Prinicipal/Identity for whom the role need to assigned.
43+
* Optional. Principal/Identity for whom the role need to assigned.
4444
* The value may be {@code null}.
4545
*/
4646
@com.google.api.client.util.Key
@@ -78,15 +78,15 @@ public RoleGrant setHelperTextTemplate(java.lang.String helperTextTemplate) {
7878
}
7979

8080
/**
81-
* Optional. Prinicipal/Identity for whom the role need to assigned.
81+
* Optional. Principal/Identity for whom the role need to assigned.
8282
* @return value or {@code null} for none
8383
*/
8484
public java.lang.String getPrincipal() {
8585
return principal;
8686
}
8787

8888
/**
89-
* Optional. Prinicipal/Identity for whom the role need to assigned.
89+
* Optional. Principal/Identity for whom the role need to assigned.
9090
* @param principal principal or {@code null} for none
9191
*/
9292
public RoleGrant setPrincipal(java.lang.String principal) {

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

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

3232
/**
33-
* Field identifier. For example config vaiable name.
33+
* Field identifier. For example config variable name.
3434
* The value may be {@code null}.
3535
*/
3636
@com.google.api.client.util.Key
@@ -44,15 +44,15 @@ public final class Source extends com.google.api.client.json.GenericJson {
4444
private java.lang.String sourceType;
4545

4646
/**
47-
* Field identifier. For example config vaiable name.
47+
* Field identifier. For example config variable name.
4848
* @return value or {@code null} for none
4949
*/
5050
public java.lang.String getFieldId() {
5151
return fieldId;
5252
}
5353

5454
/**
55-
* Field identifier. For example config vaiable name.
55+
* Field identifier. For example config variable name.
5656
* @param fieldId fieldId or {@code null} for none
5757
*/
5858
public Source setFieldId(java.lang.String fieldId) {

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-rev20250205-2.0.0</version>
12-
<name>Connectors API v1-rev20250205-2.0.0</name>
11+
<version>v1-rev20250218-2.0.0</version>
12+
<name>Connectors API v1-rev20250218-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-rev20250205-2.0.0</version>
25+
<version>v1-rev20250218-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-rev20250205-2.0.0'
38+
implementation 'com.google.apis:google-api-services-connectors:v1-rev20250218-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)