Skip to content

Commit 6db0561

Browse files
feat(all): auto-regenerate discovery clients (#3301)
1 parent 4fcd5bb commit 6db0561

24 files changed

+375
-51
lines changed

analyticshub/v1beta1/analyticshub-api.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -695,7 +695,7 @@
695695
}
696696
}
697697
},
698-
"revision": "20250623",
698+
"revision": "20250901",
699699
"rootUrl": "https://analyticshub.googleapis.com/",
700700
"schemas": {
701701
"AuditConfig": {
@@ -871,6 +871,13 @@
871871
"location": {
872872
"description": "Required. The geographic location where the dataset should reside. See https://cloud.google.com/bigquery/docs/locations for supported locations.",
873873
"type": "string"
874+
},
875+
"replicaLocations": {
876+
"description": "Optional. The geographic locations where the dataset should be replicated. See [BigQuery locations](https://cloud.google.com/bigquery/docs/locations) for supported locations.",
877+
"items": {
878+
"type": "string"
879+
},
880+
"type": "array"
874881
}
875882
},
876883
"type": "object"

analyticshub/v1beta1/analyticshub-gen.go

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

androidpublisher/v3/androidpublisher-api.json

Lines changed: 73 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4985,6 +4985,40 @@
49854985
},
49864986
"subscriptionsv2": {
49874987
"methods": {
4988+
"cancel": {
4989+
"description": "Cancel a subscription purchase for the user.",
4990+
"flatPath": "androidpublisher/v3/applications/{packageName}/purchases/subscriptionsv2/tokens/{token}:cancel",
4991+
"httpMethod": "POST",
4992+
"id": "androidpublisher.purchases.subscriptionsv2.cancel",
4993+
"parameterOrder": [
4994+
"packageName",
4995+
"token"
4996+
],
4997+
"parameters": {
4998+
"packageName": {
4999+
"description": "Required. The package of the application for which this subscription was purchased (for example, 'com.some.thing').",
5000+
"location": "path",
5001+
"required": true,
5002+
"type": "string"
5003+
},
5004+
"token": {
5005+
"description": "Required. The token provided to the user's device when the subscription was purchased.",
5006+
"location": "path",
5007+
"required": true,
5008+
"type": "string"
5009+
}
5010+
},
5011+
"path": "androidpublisher/v3/applications/{packageName}/purchases/subscriptionsv2/tokens/{token}:cancel",
5012+
"request": {
5013+
"$ref": "CancelSubscriptionPurchaseRequest"
5014+
},
5015+
"response": {
5016+
"$ref": "CancelSubscriptionPurchaseResponse"
5017+
},
5018+
"scopes": [
5019+
"https://www.googleapis.com/auth/androidpublisher"
5020+
]
5021+
},
49885022
"get": {
49895023
"description": "Get metadata about a subscription",
49905024
"flatPath": "androidpublisher/v3/applications/{packageName}/purchases/subscriptionsv2/tokens/{token}",
@@ -5521,7 +5555,7 @@
55215555
}
55225556
}
55235557
},
5524-
"revision": "20250828",
5558+
"revision": "20250903",
55255559
"rootUrl": "https://androidpublisher.googleapis.com/",
55265560
"schemas": {
55275561
"Abi": {
@@ -6736,6 +6770,23 @@
67366770
},
67376771
"type": "object"
67386772
},
6773+
"CancelSubscriptionPurchaseRequest": {
6774+
"description": "Request for the purchases.subscriptionsv2.cancel API.",
6775+
"id": "CancelSubscriptionPurchaseRequest",
6776+
"properties": {
6777+
"cancellationContext": {
6778+
"$ref": "CancellationContext",
6779+
"description": "Required. Additional details around the subscription revocation."
6780+
}
6781+
},
6782+
"type": "object"
6783+
},
6784+
"CancelSubscriptionPurchaseResponse": {
6785+
"description": "Response for the purchases.subscriptionsv2.cancel API.",
6786+
"id": "CancelSubscriptionPurchaseResponse",
6787+
"properties": {},
6788+
"type": "object"
6789+
},
67396790
"CancelSurveyResult": {
67406791
"description": "Result of the cancel survey when the subscription was canceled by the user.",
67416792
"id": "CancelSurveyResult",
@@ -6790,6 +6841,27 @@
67906841
},
67916842
"type": "object"
67926843
},
6844+
"CancellationContext": {
6845+
"description": "Cancellation context of the purchases.subscriptionsv2.cancel API.",
6846+
"id": "CancellationContext",
6847+
"properties": {
6848+
"cancellationType": {
6849+
"description": "Required. The type of cancellation for the purchased subscription.",
6850+
"enum": [
6851+
"CANCELLATION_TYPE_UNSPECIFIED",
6852+
"USER_REQUESTED_STOP_RENEWALS",
6853+
"DEVELOPER_REQUESTED_STOP_PAYMENTS"
6854+
],
6855+
"enumDescriptions": [
6856+
"Cancellation type unspecified.",
6857+
"Cancellation requested by the user, and the subscription can be restored. It only stops the subscription's next renewal. For an installment subscription, users still need to finish the commitment period. For more details on renewals and payments, see https://developer.android.com/google/play/billing/subscriptions#installments",
6858+
"Cancellation requested by the developer, and the subscription cannot be restored. It stops the subscription's next payment. For an installment subscription, users will not need to pay the next payment and finish the commitment period. For more details on renewals and payments, see https://developer.android.com/google/play/billing/subscriptions#installments"
6859+
],
6860+
"type": "string"
6861+
}
6862+
},
6863+
"type": "object"
6864+
},
67936865
"CancellationEvent": {
67946866
"description": "Details of when the order was canceled.",
67956867
"id": "CancellationEvent",

androidpublisher/v3/androidpublisher-gen.go

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

cloudfunctions/v2/cloudfunctions-api.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -750,7 +750,7 @@
750750
}
751751
}
752752
},
753-
"revision": "20250814",
753+
"revision": "20250902",
754754
"rootUrl": "https://cloudfunctions.googleapis.com/",
755755
"schemas": {
756756
"AbortFunctionUpgradeRequest": {
@@ -2140,6 +2140,7 @@
21402140
"enum": [
21412141
"UPGRADE_STATE_UNSPECIFIED",
21422142
"ELIGIBLE_FOR_2ND_GEN_UPGRADE",
2143+
"INELIGIBLE_FOR_UPGRADE_UNTIL_REDEPLOYMENT",
21432144
"UPGRADE_OPERATION_IN_PROGRESS",
21442145
"SETUP_FUNCTION_UPGRADE_CONFIG_SUCCESSFUL",
21452146
"SETUP_FUNCTION_UPGRADE_CONFIG_ERROR",
@@ -2151,7 +2152,8 @@
21512152
],
21522153
"enumDescriptions": [
21532154
"Unspecified state. Most functions are in this upgrade state.",
2154-
"Functions in this state are eligible for 1st Gen -\u003e 2nd Gen upgrade.",
2155+
"Functions in this state are eligible for 1st Gen upgrade.",
2156+
"Functions in this state are ineligible for 1st Gen upgrade until redeployment with newer runtime.",
21552157
"An upgrade related operation is in progress.",
21562158
"SetupFunctionUpgradeConfig API was successful and a 2nd Gen function has been created based on 1st Gen function instance.",
21572159
"SetupFunctionUpgradeConfig API was un-successful.",

cloudfunctions/v2/cloudfunctions-gen.go

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

0 commit comments

Comments
 (0)