Skip to content

Commit

Permalink
feat(appengine): update the api
Browse files Browse the repository at this point in the history
#### appengine:v1beta

The following keys were added:
- schemas.FlexibleRuntimeSettings (Total Keys: 4)
- schemas.Version.properties.flexibleRuntimeSettings.$ref (Total Keys: 1)
  • Loading branch information
yoshi-automation committed Jan 24, 2023
1 parent c42fa8d commit a26d8ec
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 3 deletions.
16 changes: 16 additions & 0 deletions docs/dyn/appengine_v1beta.apps.services.versions.html
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,10 @@ <h3>Method Details</h3>
&quot;staticFile&quot;: &quot;A String&quot;, # Static file content to be served for this error.
},
],
&quot;flexibleRuntimeSettings&quot;: { # Runtime settings for the App Engine flexible environment. # Settings for App Engine flexible runtimes.
&quot;operatingSystem&quot;: &quot;A String&quot;, # The operating system of the application runtime.
&quot;runtimeVersion&quot;: &quot;A String&quot;, # The runtime version of an App Engine flexible application.
},
&quot;handlers&quot;: [ # An ordered list of URL-matching patterns that should be applied to incoming requests. The first matching URL handles the request and other request handlers are not attempted.Only returned in GET requests if view=FULL is set.
{ # URL pattern and description of how the URL should be handled. App Engine can handle URLs by executing application code or by serving static files uploaded with the version, such as images, CSS, or JavaScript.
&quot;apiEndpoint&quot;: { # Uses Google Cloud Endpoints to handle requests. # Uses API Endpoints to handle requests.
Expand Down Expand Up @@ -534,6 +538,10 @@ <h3>Method Details</h3>
&quot;staticFile&quot;: &quot;A String&quot;, # Static file content to be served for this error.
},
],
&quot;flexibleRuntimeSettings&quot;: { # Runtime settings for the App Engine flexible environment. # Settings for App Engine flexible runtimes.
&quot;operatingSystem&quot;: &quot;A String&quot;, # The operating system of the application runtime.
&quot;runtimeVersion&quot;: &quot;A String&quot;, # The runtime version of an App Engine flexible application.
},
&quot;handlers&quot;: [ # An ordered list of URL-matching patterns that should be applied to incoming requests. The first matching URL handles the request and other request handlers are not attempted.Only returned in GET requests if view=FULL is set.
{ # URL pattern and description of how the URL should be handled. App Engine can handle URLs by executing application code or by serving static files uploaded with the version, such as images, CSS, or JavaScript.
&quot;apiEndpoint&quot;: { # Uses Google Cloud Endpoints to handle requests. # Uses API Endpoints to handle requests.
Expand Down Expand Up @@ -780,6 +788,10 @@ <h3>Method Details</h3>
&quot;staticFile&quot;: &quot;A String&quot;, # Static file content to be served for this error.
},
],
&quot;flexibleRuntimeSettings&quot;: { # Runtime settings for the App Engine flexible environment. # Settings for App Engine flexible runtimes.
&quot;operatingSystem&quot;: &quot;A String&quot;, # The operating system of the application runtime.
&quot;runtimeVersion&quot;: &quot;A String&quot;, # The runtime version of an App Engine flexible application.
},
&quot;handlers&quot;: [ # An ordered list of URL-matching patterns that should be applied to incoming requests. The first matching URL handles the request and other request handlers are not attempted.Only returned in GET requests if view=FULL is set.
{ # URL pattern and description of how the URL should be handled. App Engine can handle URLs by executing application code or by serving static files uploaded with the version, such as images, CSS, or JavaScript.
&quot;apiEndpoint&quot;: { # Uses Google Cloud Endpoints to handle requests. # Uses API Endpoints to handle requests.
Expand Down Expand Up @@ -1029,6 +1041,10 @@ <h3>Method Details</h3>
&quot;staticFile&quot;: &quot;A String&quot;, # Static file content to be served for this error.
},
],
&quot;flexibleRuntimeSettings&quot;: { # Runtime settings for the App Engine flexible environment. # Settings for App Engine flexible runtimes.
&quot;operatingSystem&quot;: &quot;A String&quot;, # The operating system of the application runtime.
&quot;runtimeVersion&quot;: &quot;A String&quot;, # The runtime version of an App Engine flexible application.
},
&quot;handlers&quot;: [ # An ordered list of URL-matching patterns that should be applied to incoming requests. The first matching URL handles the request and other request handlers are not attempted.Only returned in GET requests if view=FULL is set.
{ # URL pattern and description of how the URL should be handled. App Engine can handle URLs by executing application code or by serving static files uploaded with the version, such as images, CSS, or JavaScript.
&quot;apiEndpoint&quot;: { # Uses Google Cloud Endpoints to handle requests. # Uses API Endpoints to handle requests.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1647,7 +1647,7 @@
}
}
},
"revision": "20230109",
"revision": "20230114",
"rootUrl": "https://appengine.googleapis.com/",
"schemas": {
"ApiConfigHandler": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -887,7 +887,7 @@
}
}
},
"revision": "20230109",
"revision": "20230114",
"rootUrl": "https://appengine.googleapis.com/",
"schemas": {
"AuthorizedCertificate": {
Expand Down
21 changes: 20 additions & 1 deletion googleapiclient/discovery_cache/documents/appengine.v1beta.json
Original file line number Diff line number Diff line change
Expand Up @@ -1898,7 +1898,7 @@
}
}
},
"revision": "20230109",
"revision": "20230114",
"rootUrl": "https://appengine.googleapis.com/",
"schemas": {
"ApiConfigHandler": {
Expand Down Expand Up @@ -2636,6 +2636,21 @@
},
"type": "object"
},
"FlexibleRuntimeSettings": {
"description": "Runtime settings for the App Engine flexible environment.",
"id": "FlexibleRuntimeSettings",
"properties": {
"operatingSystem": {
"description": "The operating system of the application runtime.",
"type": "string"
},
"runtimeVersion": {
"description": "The runtime version of an App Engine flexible application.",
"type": "string"
}
},
"type": "object"
},
"GoogleAppengineV1betaLocationMetadata": {
"description": "Metadata for the given google.cloud.location.Location.",
"id": "GoogleAppengineV1betaLocationMetadata",
Expand Down Expand Up @@ -4118,6 +4133,10 @@
},
"type": "array"
},
"flexibleRuntimeSettings": {
"$ref": "FlexibleRuntimeSettings",
"description": "Settings for App Engine flexible runtimes."
},
"handlers": {
"description": "An ordered list of URL-matching patterns that should be applied to incoming requests. The first matching URL handles the request and other request handlers are not attempted.Only returned in GET requests if view=FULL is set.",
"items": {
Expand Down

0 comments on commit a26d8ec

Please sign in to comment.