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 #2345

Merged
merged 1 commit into from
Jan 12, 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
70 changes: 69 additions & 1 deletion androidpublisher/v3/androidpublisher-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -4194,6 +4194,40 @@
"scopes": [
"https://www.googleapis.com/auth/androidpublisher"
]
},
"revoke": {
"description": "Revoke a subscription purchase for the user.",
"flatPath": "androidpublisher/v3/applications/{packageName}/purchases/subscriptionsv2/tokens/{token}:revoke",
"httpMethod": "POST",
"id": "androidpublisher.purchases.subscriptionsv2.revoke",
"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}:revoke",
"request": {
"$ref": "RevokeSubscriptionPurchaseRequest"
},
"response": {
"$ref": "RevokeSubscriptionPurchaseResponse"
},
"scopes": [
"https://www.googleapis.com/auth/androidpublisher"
]
}
}
},
Expand Down Expand Up @@ -4661,7 +4695,7 @@
}
}
},
"revision": "20240109",
"revision": "20240111",
"rootUrl": "https://androidpublisher.googleapis.com/",
"schemas": {
"Abi": {
Expand Down Expand Up @@ -7999,6 +8033,34 @@
},
"type": "object"
},
"RevocationContext": {
"description": "Revocation context of the purchases.subscriptionsv2.revoke API.",
"id": "RevocationContext",
"properties": {
"proratedRefund": {
"$ref": "UNDEFINED_packageNameRevocationContextProratedRefund",
"description": "Optional. Used when users should be refunded a prorated amount they paid for their subscription based on the amount of time remaining in a subscription. Not supported for subscriptions with multiple items."
}
},
"type": "object"
},
"RevokeSubscriptionPurchaseRequest": {
"description": "Request for the purchases.subscriptionsv2.revoke API.",
"id": "RevokeSubscriptionPurchaseRequest",
"properties": {
"revocationContext": {
"$ref": "RevocationContext",
"description": "Required. Additional details around the subscription revocation."
}
},
"type": "object"
},
"RevokeSubscriptionPurchaseResponse": {
"description": "Response for the purchases.subscriptionsv2.revoke API.",
"id": "RevokeSubscriptionPurchaseResponse",
"properties": {},
"type": "object"
},
"ScreenDensity": {
"description": "Represents a screen density.",
"id": "ScreenDensity",
Expand Down Expand Up @@ -9173,6 +9235,12 @@
},
"type": "object"
},
"UNDEFINED_packageNameRevocationContextProratedRefund": {
"description": "Used to determine if the refund type in the RevocationContext is a prorated refund.",
"id": "UNDEFINED_packageNameRevocationContextProratedRefund",
"properties": {},
"type": "object"
},
"UpdateBasePlanStateRequest": {
"description": "Request message to update the state of a subscription base plan.",
"id": "UpdateBasePlanStateRequest",
Expand Down
233 changes: 233 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.

4 changes: 2 additions & 2 deletions apigee/v1/apigee-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -9730,7 +9730,7 @@
}
}
},
"revision": "20231219",
"revision": "20240108",
"rootUrl": "https://apigee.googleapis.com/",
"schemas": {
"EdgeConfigstoreBundleBadBundle": {
Expand Down Expand Up @@ -12449,7 +12449,7 @@
"type": "string"
},
"forwardProxyUri": {
"description": "Optional. Url of the forward proxy to be applied to the runtime instances in this environment. Must be in the format of {scheme}://{hostname}:{port}. Note that scheme must be one of \"http\" or \"https\", and port must be supplied. To remove a forward proxy setting, update the field to an empty value.",
"description": "Optional. URI of the forward proxy to be applied to the runtime instances in this environment. Must be in the format of {scheme}://{hostname}:{port}. Note that the scheme must be one of \"http\" or \"https\", and the port must be supplied. To remove a forward proxy setting, update the field to an empty value. Note: At this time, PUT operations to add forwardProxyUri to an existing environment fail if the environment has nodeConfig set up. To successfully add the forwardProxyUri setting in this case, include the NodeConfig details with the request.",
"type": "string"
},
"hasAttachedFlowHooks": {
Expand Down
12 changes: 8 additions & 4 deletions apigee/v1/apigee-gen.go

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

Loading