Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#2675)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed Jul 7, 2024
1 parent d465cec commit a9177bd
Show file tree
Hide file tree
Showing 16 changed files with 7,329 additions and 647 deletions.
43 changes: 42 additions & 1 deletion alloydb/v1/alloydb-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1489,7 +1489,7 @@
}
}
},
"revision": "20240612",
"revision": "20240627",
"rootUrl": "https://alloydb.googleapis.com/",
"schemas": {
"AuthorizedNetwork": {
Expand Down Expand Up @@ -1968,6 +1968,25 @@
"readOnly": true,
"type": "string"
},
"subscriptionType": {
"description": "Optional. Subscription type of the cluster.",
"enum": [
"SUBSCRIPTION_TYPE_UNSPECIFIED",
"STANDARD",
"TRIAL"
],
"enumDescriptions": [
"This is an unknown Subscription type (By default, Subscription Type is STANDARD)",
"Standard subscription.",
"Trial subscription."
],
"type": "string"
},
"trialMetadata": {
"$ref": "TrialMetadata",
"description": "Output only. Metadata for free trial clusters",
"readOnly": true
},
"uid": {
"description": "Output only. The system-generated UID of the resource. The UID is assigned when the resource is created, and it is retained until it is deleted.",
"readOnly": true,
Expand Down Expand Up @@ -4577,6 +4596,28 @@
},
"type": "object"
},
"TrialMetadata": {
"description": "Contains information and all metadata related to TRIAL clusters.",
"id": "TrialMetadata",
"properties": {
"endTime": {
"description": "End time of the trial cluster.",
"format": "google-datetime",
"type": "string"
},
"startTime": {
"description": "start time of the trial cluster.",
"format": "google-datetime",
"type": "string"
},
"upgradeTime": {
"description": "Upgrade time of trial cluster to Standard cluster.",
"format": "google-datetime",
"type": "string"
}
},
"type": "object"
},
"User": {
"description": "Message describing User object.",
"id": "User",
Expand Down
37 changes: 37 additions & 0 deletions alloydb/v1/alloydb-gen.go

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

6 changes: 3 additions & 3 deletions alloydb/v1alpha/alloydb-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1489,7 +1489,7 @@
}
}
},
"revision": "20240612",
"revision": "20240627",
"rootUrl": "https://alloydb.googleapis.com/",
"schemas": {
"AuthorizedNetwork": {
Expand Down Expand Up @@ -2864,7 +2864,7 @@
"id": "ObservabilityInstanceConfig",
"properties": {
"enabled": {
"description": "Observability feature status for an instance. This is a read-only flag and modifiable only by producer API. This flag is turned \"off\" by default.",
"description": "Observability feature status for an instance. This flag is turned \"off\" by default.",
"type": "boolean"
},
"maxQueryStringLength": {
Expand All @@ -2877,7 +2877,7 @@
"type": "boolean"
},
"queryPlansPerMinute": {
"description": "Number of query execution plans captured by Insights per minute for all queries combined. The default value is 5. Any integer between 0 to 20 is considered valid.",
"description": "Number of query execution plans captured by Insights per minute for all queries combined. The default value is 200. Any integer between 0 to 200 is considered valid.",
"format": "int32",
"type": "integer"
},
Expand Down
9 changes: 4 additions & 5 deletions alloydb/v1alpha/alloydb-gen.go

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

6 changes: 3 additions & 3 deletions alloydb/v1beta/alloydb-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1486,7 +1486,7 @@
}
}
},
"revision": "20240612",
"revision": "20240627",
"rootUrl": "https://alloydb.googleapis.com/",
"schemas": {
"AuthorizedNetwork": {
Expand Down Expand Up @@ -2840,7 +2840,7 @@
"id": "ObservabilityInstanceConfig",
"properties": {
"enabled": {
"description": "Observability feature status for an instance. This is a read-only flag and modifiable only by producer API. This flag is turned \"off\" by default.",
"description": "Observability feature status for an instance. This flag is turned \"off\" by default.",
"type": "boolean"
},
"maxQueryStringLength": {
Expand All @@ -2853,7 +2853,7 @@
"type": "boolean"
},
"queryPlansPerMinute": {
"description": "Number of query execution plans captured by Insights per minute for all queries combined. The default value is 5. Any integer between 0 to 20 is considered valid.",
"description": "Number of query execution plans captured by Insights per minute for all queries combined. The default value is 200. Any integer between 0 to 200 is considered valid.",
"format": "int32",
"type": "integer"
},
Expand Down
9 changes: 4 additions & 5 deletions alloydb/v1beta/alloydb-gen.go

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

Loading

0 comments on commit a9177bd

Please sign in to comment.