Skip to content
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
9 changes: 8 additions & 1 deletion analyticshub/v1beta1/analyticshub-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@
}
}
},
"revision": "20250623",
"revision": "20250901",
"rootUrl": "https://analyticshub.googleapis.com/",
"schemas": {
"AuditConfig": {
Expand Down Expand Up @@ -871,6 +871,13 @@
"location": {
"description": "Required. The geographic location where the dataset should reside. See https://cloud.google.com/bigquery/docs/locations for supported locations.",
"type": "string"
},
"replicaLocations": {
"description": "Optional. The geographic locations where the dataset should be replicated. See [BigQuery locations](https://cloud.google.com/bigquery/docs/locations) for supported locations.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
Expand Down
4 changes: 4 additions & 0 deletions analyticshub/v1beta1/analyticshub-gen.go

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

74 changes: 73 additions & 1 deletion androidpublisher/v3/androidpublisher-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -4985,6 +4985,40 @@
},
"subscriptionsv2": {
"methods": {
"cancel": {
"description": "Cancel a subscription purchase for the user.",
"flatPath": "androidpublisher/v3/applications/{packageName}/purchases/subscriptionsv2/tokens/{token}:cancel",
"httpMethod": "POST",
"id": "androidpublisher.purchases.subscriptionsv2.cancel",
"parameterOrder": [
"packageName",
"token"
],
"parameters": {
"packageName": {
"description": "Required. The package of the application for which this subscription was purchased (for example, 'com.some.thing').",
"location": "path",
"required": true,
"type": "string"
},
"token": {
"description": "Required. The token provided to the user's device when the subscription was purchased.",
"location": "path",
"required": true,
"type": "string"
}
},
"path": "androidpublisher/v3/applications/{packageName}/purchases/subscriptionsv2/tokens/{token}:cancel",
"request": {
"$ref": "CancelSubscriptionPurchaseRequest"
},
"response": {
"$ref": "CancelSubscriptionPurchaseResponse"
},
"scopes": [
"https://www.googleapis.com/auth/androidpublisher"
]
},
"get": {
"description": "Get metadata about a subscription",
"flatPath": "androidpublisher/v3/applications/{packageName}/purchases/subscriptionsv2/tokens/{token}",
Expand Down Expand Up @@ -5521,7 +5555,7 @@
}
}
},
"revision": "20250828",
"revision": "20250903",
"rootUrl": "https://androidpublisher.googleapis.com/",
"schemas": {
"Abi": {
Expand Down Expand Up @@ -6736,6 +6770,23 @@
},
"type": "object"
},
"CancelSubscriptionPurchaseRequest": {
"description": "Request for the purchases.subscriptionsv2.cancel API.",
"id": "CancelSubscriptionPurchaseRequest",
"properties": {
"cancellationContext": {
"$ref": "CancellationContext",
"description": "Required. Additional details around the subscription revocation."
}
},
"type": "object"
},
"CancelSubscriptionPurchaseResponse": {
"description": "Response for the purchases.subscriptionsv2.cancel API.",
"id": "CancelSubscriptionPurchaseResponse",
"properties": {},
"type": "object"
},
"CancelSurveyResult": {
"description": "Result of the cancel survey when the subscription was canceled by the user.",
"id": "CancelSurveyResult",
Expand Down Expand Up @@ -6790,6 +6841,27 @@
},
"type": "object"
},
"CancellationContext": {
"description": "Cancellation context of the purchases.subscriptionsv2.cancel API.",
"id": "CancellationContext",
"properties": {
"cancellationType": {
"description": "Required. The type of cancellation for the purchased subscription.",
"enum": [
"CANCELLATION_TYPE_UNSPECIFIED",
"USER_REQUESTED_STOP_RENEWALS",
"DEVELOPER_REQUESTED_STOP_PAYMENTS"
],
"enumDescriptions": [
"Cancellation type unspecified.",
"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",
"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"
],
"type": "string"
}
},
"type": "object"
},
"CancellationEvent": {
"description": "Details of when the order was canceled.",
"id": "CancellationEvent",
Expand Down
179 changes: 179 additions & 0 deletions androidpublisher/v3/androidpublisher-gen.go

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

6 changes: 4 additions & 2 deletions cloudfunctions/v2/cloudfunctions-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,7 @@
}
}
},
"revision": "20250814",
"revision": "20250902",
"rootUrl": "https://cloudfunctions.googleapis.com/",
"schemas": {
"AbortFunctionUpgradeRequest": {
Expand Down Expand Up @@ -2140,6 +2140,7 @@
"enum": [
"UPGRADE_STATE_UNSPECIFIED",
"ELIGIBLE_FOR_2ND_GEN_UPGRADE",
"INELIGIBLE_FOR_UPGRADE_UNTIL_REDEPLOYMENT",
"UPGRADE_OPERATION_IN_PROGRESS",
"SETUP_FUNCTION_UPGRADE_CONFIG_SUCCESSFUL",
"SETUP_FUNCTION_UPGRADE_CONFIG_ERROR",
Expand All @@ -2151,7 +2152,8 @@
],
"enumDescriptions": [
"Unspecified state. Most functions are in this upgrade state.",
"Functions in this state are eligible for 1st Gen -\u003e 2nd Gen upgrade.",
"Functions in this state are eligible for 1st Gen upgrade.",
"Functions in this state are ineligible for 1st Gen upgrade until redeployment with newer runtime.",
"An upgrade related operation is in progress.",
"SetupFunctionUpgradeConfig API was successful and a 2nd Gen function has been created based on 1st Gen function instance.",
"SetupFunctionUpgradeConfig API was un-successful.",
Expand Down
4 changes: 3 additions & 1 deletion cloudfunctions/v2/cloudfunctions-gen.go

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

Loading