Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(all): auto-regenerate discovery clients #2675

Merged
merged 1 commit into from
Jul 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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