Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#2765)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed Sep 1, 2024
1 parent d9ef5ce commit 6e81c8f
Show file tree
Hide file tree
Showing 4 changed files with 121 additions and 9 deletions.
10 changes: 9 additions & 1 deletion alloydb/v1beta/alloydb-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1486,7 +1486,7 @@
}
}
},
"revision": "20240806",
"revision": "20240823",
"rootUrl": "https://alloydb.googleapis.com/",
"schemas": {
"AuthorizedNetwork": {
Expand Down Expand Up @@ -3437,6 +3437,10 @@
"description": "Configuration for availability of database instance",
"id": "StorageDatabasecenterPartnerapiV1mainAvailabilityConfiguration",
"properties": {
"automaticFailoverRoutingConfigured": {
"description": "Checks for existence of (multi-cluster) routing configuration that allows automatic failover to a different zone/region in case of an outage. Applicable to Bigtable resources.",
"type": "boolean"
},
"availabilityType": {
"description": "Availability type. Potential values: * `ZONAL`: The instance serves data from only one zone. Outages in that zone affect data accessibility. * `REGIONAL`: The instance can serve data from more than one zone in a region (it is highly available).",
"enum": [
Expand Down Expand Up @@ -5028,6 +5032,10 @@
},
"type": "array"
},
"keepExtraRoles": {
"description": "Input only. If the user already exists and it has additional roles, keep them granted.",
"type": "boolean"
},
"name": {
"description": "Output only. Name of the resource in the form of projects/{project}/locations/{location}/cluster/{cluster}/users/{user}.",
"readOnly": true,
Expand Down
23 changes: 16 additions & 7 deletions alloydb/v1beta/alloydb-gen.go

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

38 changes: 37 additions & 1 deletion pagespeedonline/v5/pagespeedonline-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@
}
}
},
"revision": "20240509",
"revision": "20240829",
"rootUrl": "https://pagespeedonline.googleapis.com/",
"schemas": {
"AuditRefs": {
Expand Down Expand Up @@ -432,6 +432,10 @@
"description": "The audit's id.",
"type": "string"
},
"metricSavings": {
"$ref": "MetricSavings",
"description": "The metric savings of the audit."
},
"numericUnit": {
"description": "The unit of the numeric_value field. Used to format the numeric value for display.",
"type": "string"
Expand Down Expand Up @@ -592,6 +596,38 @@
},
"type": "object"
},
"MetricSavings": {
"description": "The metric savings of the audit.",
"id": "MetricSavings",
"properties": {
"CLS": {
"description": "Optional. Optional numeric value representing the audit's savings for the CLS metric.",
"format": "double",
"type": "number"
},
"FCP": {
"description": "Optional. Optional numeric value representing the audit's savings for the FCP metric.",
"format": "double",
"type": "number"
},
"INP": {
"description": "Optional. Optional numeric value representing the audit's savings for the INP metric.",
"format": "double",
"type": "number"
},
"LCP": {
"description": "Optional. Optional numeric value representing the audit's savings for the LCP metric.",
"format": "double",
"type": "number"
},
"TBT": {
"description": "Optional. Optional numeric value representing the audit's savings for the TBT metric.",
"format": "double",
"type": "number"
}
},
"type": "object"
},
"PagespeedApiLoadingExperienceV5": {
"description": "The CrUX loading experience object that contains CrUX data breakdowns.",
"id": "PagespeedApiLoadingExperienceV5",
Expand Down
59 changes: 59 additions & 0 deletions pagespeedonline/v5/pagespeedonline-gen.go

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

0 comments on commit 6e81c8f

Please sign in to comment.