Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#2345)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed Jan 12, 2024
1 parent d016573 commit c3e43a1
Show file tree
Hide file tree
Showing 31 changed files with 631 additions and 110 deletions.
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.

0 comments on commit c3e43a1

Please sign in to comment.