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

Merged
merged 1 commit into from
Nov 3, 2023
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
151 changes: 150 additions & 1 deletion appengine/v1/appengine-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,47 @@
"https://www.googleapis.com/auth/cloud-platform.read-only"
]
},
"listRuntimes": {
"description": "Lists all the available runtimes for the application.",
"flatPath": "v1/apps/{appsId}:listRuntimes",
"httpMethod": "GET",
"id": "appengine.apps.listRuntimes",
"parameterOrder": [
"appsId"
],
"parameters": {
"appsId": {
"description": "Part of `parent`. Required. Name of the parent Application resource. Example: apps/myapp.",
"location": "path",
"required": true,
"type": "string"
},
"environment": {
"description": "Optional. The environment of the Application.",
"enum": [
"ENVIRONMENT_UNSPECIFIED",
"STANDARD",
"FLEXIBLE"
],
"enumDescriptions": [
"Default value.",
"App Engine Standard.",
"App Engine Flexible"
],
"location": "query",
"type": "string"
}
},
"path": "v1/apps/{appsId}:listRuntimes",
"response": {
"$ref": "ListRuntimesResponse"
},
"scopes": [
"https://www.googleapis.com/auth/appengine.admin",
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/cloud-platform.read-only"
]
},
"patch": {
"description": "Updates the specified Application resource. You can update the following fields: auth_domain - Google authentication domain for controlling user access to the application. default_cookie_expiration - Cookie expiration policy for the application. iap - Identity-Aware Proxy properties for the application.",
"flatPath": "v1/apps/{appsId}",
Expand Down Expand Up @@ -1610,7 +1651,7 @@
}
}
},
"revision": "20231024",
"revision": "20231030",
"rootUrl": "https://appengine.googleapis.com/",
"schemas": {
"ApiConfigHandler": {
Expand Down Expand Up @@ -2096,6 +2137,28 @@
},
"type": "object"
},
"Date": {
"description": "Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: A full date, with non-zero year, month, and day values. A month and day, with a zero year (for example, an anniversary). A year on its own, with a zero month and a zero day. A year and month, with a zero day (for example, a credit card expiration date).Related types: google.type.TimeOfDay google.type.DateTime google.protobuf.Timestamp",
"id": "Date",
"properties": {
"day": {
"description": "Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant.",
"format": "int32",
"type": "integer"
},
"month": {
"description": "Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.",
"format": "int32",
"type": "integer"
},
"year": {
"description": "Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.",
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"DebugInstanceRequest": {
"description": "Request message for Instances.DebugInstance.",
"id": "DebugInstanceRequest",
Expand Down Expand Up @@ -2701,6 +2764,24 @@
},
"type": "object"
},
"ListRuntimesResponse": {
"description": "Response message for Applications.ListRuntimes.",
"id": "ListRuntimesResponse",
"properties": {
"nextPageToken": {
"description": "Continuation token for fetching the next page of results.",
"type": "string"
},
"runtimes": {
"description": "The runtimes available to the requested application.",
"items": {
"$ref": "Runtime"
},
"type": "array"
}
},
"type": "object"
},
"ListServicesResponse": {
"description": "Response message for Services.ListServices.",
"id": "ListServicesResponse",
Expand Down Expand Up @@ -3431,6 +3512,74 @@
},
"type": "object"
},
"Runtime": {
"description": "Runtime versions for App Engine.",
"id": "Runtime",
"properties": {
"decommissionedDate": {
"$ref": "Date",
"description": "Date when Runtime is decommissioned."
},
"deprecationDate": {
"$ref": "Date",
"description": "Date when Runtime is deprecated."
},
"endOfSupportDate": {
"$ref": "Date",
"description": "Date when Runtime is end of support."
},
"environment": {
"description": "The environment of the runtime.",
"enum": [
"ENVIRONMENT_UNSPECIFIED",
"STANDARD",
"FLEXIBLE"
],
"enumDescriptions": [
"Default value.",
"App Engine Standard.",
"App Engine Flexible"
],
"type": "string"
},
"name": {
"description": "The name of the runtime, e.g., 'go113', 'nodejs12', etc.",
"type": "string"
},
"stage": {
"description": "The stage of life this runtime is in, e.g., BETA, GA, etc.",
"enum": [
"RUNTIME_STAGE_UNSPECIFIED",
"DEVELOPMENT",
"ALPHA",
"BETA",
"GA",
"DEPRECATED",
"DECOMMISSIONED",
"END_OF_SUPPORT"
],
"enumDescriptions": [
"Not specified.",
"The runtime is in development.",
"The runtime is in the Alpha stage.",
"The runtime is in the Beta stage.",
"The runtime is generally available.",
"The runtime is deprecated.",
"The runtime is no longer supported.",
"The runtime is end of support."
],
"type": "string"
},
"warnings": {
"description": "Warning messages, e.g., a deprecation warning.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"ScriptHandler": {
"description": "Executes a script to handle the request that matches the URL pattern.",
"id": "ScriptHandler",
Expand Down
Loading