Skip to content

Commit 343ae0e

Browse files
feat(all): auto-regenerate discovery clients (#2837)
1 parent 5ca1495 commit 343ae0e

34 files changed

+3583
-1767
lines changed

‎connectors/v1/connectors-api.json

Lines changed: 24 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1095,6 +1095,11 @@
10951095
"pattern": "^projects/[^/]+/locations/[^/]+/connections/[^/]+$",
10961096
"required": true,
10971097
"type": "string"
1098+
},
1099+
"schemaAsString": {
1100+
"description": "Optional. Flag to indicate if schema should be returned as string or not",
1101+
"location": "query",
1102+
"type": "boolean"
10981103
}
10991104
},
11001105
"path": "v1/{+parent}/runtimeActionSchemas",
@@ -2497,7 +2502,7 @@
24972502
}
24982503
}
24992504
},
2500-
"revision": "20240924",
2505+
"revision": "20241015",
25012506
"rootUrl": "https://connectors.googleapis.com/",
25022507
"schemas": {
25032508
"AuditConfig": {
@@ -3463,6 +3468,10 @@
34633468
"format": "int64",
34643469
"type": "string"
34653470
},
3471+
"connectorVersioningEnabled": {
3472+
"description": "Indicate whether connector versioning is enabled.",
3473+
"type": "boolean"
3474+
},
34663475
"deploymentModel": {
34673476
"description": "Indicate whether connector is deployed on GKE/CloudRun",
34683477
"enum": [
@@ -7036,6 +7045,11 @@
70367045
"readOnly": true,
70377046
"type": "array"
70387047
},
7048+
"inputSchemaAsString": {
7049+
"description": "Output only. Input schema as string.",
7050+
"readOnly": true,
7051+
"type": "string"
7052+
},
70397053
"resultJsonSchema": {
70407054
"$ref": "JsonSchema",
70417055
"description": "Output only. JsonSchema representation of this action's result metadata",
@@ -7048,6 +7062,11 @@
70487062
},
70497063
"readOnly": true,
70507064
"type": "array"
7065+
},
7066+
"resultSchemaAsString": {
7067+
"description": "Output only. Result schema as string.",
7068+
"readOnly": true,
7069+
"type": "string"
70517070
}
70527071
},
70537072
"type": "object"
@@ -7671,22 +7690,22 @@
76717690
"id": "TimeOfDay",
76727691
"properties": {
76737692
"hours": {
7674-
"description": "Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value \"24:00:00\" for scenarios like business closing time.",
7693+
"description": "Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less than or equal to 23. An API may choose to allow the value \"24:00:00\" for scenarios like business closing time.",
76757694
"format": "int32",
76767695
"type": "integer"
76777696
},
76787697
"minutes": {
7679-
"description": "Minutes of hour of day. Must be from 0 to 59.",
7698+
"description": "Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.",
76807699
"format": "int32",
76817700
"type": "integer"
76827701
},
76837702
"nanos": {
7684-
"description": "Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.",
7703+
"description": "Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.",
76857704
"format": "int32",
76867705
"type": "integer"
76877706
},
76887707
"seconds": {
7689-
"description": "Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.",
7708+
"description": "Seconds of a minute. Must be greater than or equal to 0 and typically must be less than or equal to 59. An API may allow the value 60 if it allows leap-seconds.",
76907709
"format": "int32",
76917710
"type": "integer"
76927711
}

‎connectors/v1/connectors-gen.go

Lines changed: 24 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎connectors/v2/connectors-api.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -660,7 +660,7 @@
660660
}
661661
}
662662
},
663-
"revision": "20240729",
663+
"revision": "20241015",
664664
"rootUrl": "https://connectors.googleapis.com/",
665665
"schemas": {
666666
"AccessCredentials": {
@@ -2403,22 +2403,22 @@
24032403
"id": "TimeOfDay",
24042404
"properties": {
24052405
"hours": {
2406-
"description": "Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value \"24:00:00\" for scenarios like business closing time.",
2406+
"description": "Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less than or equal to 23. An API may choose to allow the value \"24:00:00\" for scenarios like business closing time.",
24072407
"format": "int32",
24082408
"type": "integer"
24092409
},
24102410
"minutes": {
2411-
"description": "Minutes of hour of day. Must be from 0 to 59.",
2411+
"description": "Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.",
24122412
"format": "int32",
24132413
"type": "integer"
24142414
},
24152415
"nanos": {
2416-
"description": "Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.",
2416+
"description": "Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.",
24172417
"format": "int32",
24182418
"type": "integer"
24192419
},
24202420
"seconds": {
2421-
"description": "Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.",
2421+
"description": "Seconds of a minute. Must be greater than or equal to 0 and typically must be less than or equal to 59. An API may allow the value 60 if it allows leap-seconds.",
24222422
"format": "int32",
24232423
"type": "integer"
24242424
}

‎connectors/v2/connectors-gen.go

Lines changed: 10 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎content/v2.1/content-api.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1457,7 +1457,7 @@
14571457
"type": "string"
14581458
},
14591459
"updateMask": {
1460-
"description": "Required. List of fields being updated.",
1460+
"description": "Optional. List of fields being updated.",
14611461
"format": "google-fieldmask",
14621462
"location": "query",
14631463
"type": "string"
@@ -4705,7 +4705,7 @@
47054705
}
47064706
}
47074707
},
4708-
"revision": "20241015",
4708+
"revision": "20241022",
47094709
"rootUrl": "https://shoppingcontent.googleapis.com/",
47104710
"schemas": {
47114711
"Account": {

‎content/v2.1/content-gen.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)