Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#2837)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation authored Oct 24, 2024
1 parent 5ca1495 commit 343ae0e
Show file tree
Hide file tree
Showing 34 changed files with 3,583 additions and 1,767 deletions.
29 changes: 24 additions & 5 deletions connectors/v1/connectors-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1095,6 +1095,11 @@
"pattern": "^projects/[^/]+/locations/[^/]+/connections/[^/]+$",
"required": true,
"type": "string"
},
"schemaAsString": {
"description": "Optional. Flag to indicate if schema should be returned as string or not",
"location": "query",
"type": "boolean"
}
},
"path": "v1/{+parent}/runtimeActionSchemas",
Expand Down Expand Up @@ -2497,7 +2502,7 @@
}
}
},
"revision": "20240924",
"revision": "20241015",
"rootUrl": "https://connectors.googleapis.com/",
"schemas": {
"AuditConfig": {
Expand Down Expand Up @@ -3463,6 +3468,10 @@
"format": "int64",
"type": "string"
},
"connectorVersioningEnabled": {
"description": "Indicate whether connector versioning is enabled.",
"type": "boolean"
},
"deploymentModel": {
"description": "Indicate whether connector is deployed on GKE/CloudRun",
"enum": [
Expand Down Expand Up @@ -7036,6 +7045,11 @@
"readOnly": true,
"type": "array"
},
"inputSchemaAsString": {
"description": "Output only. Input schema as string.",
"readOnly": true,
"type": "string"
},
"resultJsonSchema": {
"$ref": "JsonSchema",
"description": "Output only. JsonSchema representation of this action's result metadata",
Expand All @@ -7048,6 +7062,11 @@
},
"readOnly": true,
"type": "array"
},
"resultSchemaAsString": {
"description": "Output only. Result schema as string.",
"readOnly": true,
"type": "string"
}
},
"type": "object"
Expand Down Expand Up @@ -7671,22 +7690,22 @@
"id": "TimeOfDay",
"properties": {
"hours": {
"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.",
"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.",
"format": "int32",
"type": "integer"
},
"minutes": {
"description": "Minutes of hour of day. Must be from 0 to 59.",
"description": "Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.",
"format": "int32",
"type": "integer"
},
"nanos": {
"description": "Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.",
"description": "Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.",
"format": "int32",
"type": "integer"
},
"seconds": {
"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.",
"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.",
"format": "int32",
"type": "integer"
}
Expand Down
31 changes: 24 additions & 7 deletions connectors/v1/connectors-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions connectors/v2/connectors-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@
}
}
},
"revision": "20240729",
"revision": "20241015",
"rootUrl": "https://connectors.googleapis.com/",
"schemas": {
"AccessCredentials": {
Expand Down Expand Up @@ -2403,22 +2403,22 @@
"id": "TimeOfDay",
"properties": {
"hours": {
"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.",
"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.",
"format": "int32",
"type": "integer"
},
"minutes": {
"description": "Minutes of hour of day. Must be from 0 to 59.",
"description": "Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.",
"format": "int32",
"type": "integer"
},
"nanos": {
"description": "Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.",
"description": "Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.",
"format": "int32",
"type": "integer"
},
"seconds": {
"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.",
"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.",
"format": "int32",
"type": "integer"
}
Expand Down
17 changes: 10 additions & 7 deletions connectors/v2/connectors-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions content/v2.1/content-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1457,7 +1457,7 @@
"type": "string"
},
"updateMask": {
"description": "Required. List of fields being updated.",
"description": "Optional. List of fields being updated.",
"format": "google-fieldmask",
"location": "query",
"type": "string"
Expand Down Expand Up @@ -4705,7 +4705,7 @@
}
}
},
"revision": "20241015",
"revision": "20241022",
"rootUrl": "https://shoppingcontent.googleapis.com/",
"schemas": {
"Account": {
Expand Down
4 changes: 2 additions & 2 deletions content/v2.1/content-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 343ae0e

Please sign in to comment.