google-apis-appengine_v1 0.32.0 → 0.33.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/appengine_v1/classes.rb +12 -11
- data/lib/google/apis/appengine_v1/gem_version.rb +2 -2
- data/lib/google/apis/appengine_v1/service.rb +47 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ddb45131f0707c3d6af444e094b5d4ea9a14b033ac5b5fd8e4de1660c671c2fd
|
4
|
+
data.tar.gz: 2c9db62d2f7d2ff4fc2041d384db6e335c0870057cada1131312b822556f05fb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2c91168514aaa5f7b125f58a6a4374c55c2677ca38a1599901c43f9a25f036dc3552b6fc5d349c2d7811f3be69098edb6aefa832973f26deaab1f5807c5e86bc
|
7
|
+
data.tar.gz: ef9f4600cbafbc2e5c48a068a738d36a059a4ab15c3688810462f271d6eaae451a4e992abebc81283563470fe87ea655a9c67b990c52f33f693f0873cb0ac407
|
data/CHANGELOG.md
CHANGED
@@ -97,9 +97,9 @@ module Google
|
|
97
97
|
# @return [String]
|
98
98
|
attr_accessor :auth_domain
|
99
99
|
|
100
|
-
# Google Cloud Storage bucket that can be used for storing files
|
101
|
-
# this application. This bucket is associated with the
|
102
|
-
# used by the gcloud deployment commands.@OutputOnly
|
100
|
+
# Output only. Google Cloud Storage bucket that can be used for storing files
|
101
|
+
# associated with this application. This bucket is associated with the
|
102
|
+
# application and can be used by the gcloud deployment commands.@OutputOnly
|
103
103
|
# Corresponds to the JSON property `codeBucket`
|
104
104
|
# @return [String]
|
105
105
|
attr_accessor :code_bucket
|
@@ -110,8 +110,8 @@ module Google
|
|
110
110
|
# @return [String]
|
111
111
|
attr_accessor :database_type
|
112
112
|
|
113
|
-
# Google Cloud Storage bucket that can be used by this application
|
114
|
-
# content.@OutputOnly
|
113
|
+
# Output only. Google Cloud Storage bucket that can be used by this application
|
114
|
+
# to store content.@OutputOnly
|
115
115
|
# Corresponds to the JSON property `defaultBucket`
|
116
116
|
# @return [String]
|
117
117
|
attr_accessor :default_bucket
|
@@ -121,7 +121,8 @@ module Google
|
|
121
121
|
# @return [String]
|
122
122
|
attr_accessor :default_cookie_expiration
|
123
123
|
|
124
|
-
# Hostname used to reach this application, as resolved by App
|
124
|
+
# Output only. Hostname used to reach this application, as resolved by App
|
125
|
+
# Engine.@OutputOnly
|
125
126
|
# Corresponds to the JSON property `defaultHostname`
|
126
127
|
# @return [String]
|
127
128
|
attr_accessor :default_hostname
|
@@ -139,8 +140,8 @@ module Google
|
|
139
140
|
# @return [Google::Apis::AppengineV1::FeatureSettings]
|
140
141
|
attr_accessor :feature_settings
|
141
142
|
|
142
|
-
# The Google Container Registry domain used for storing managed
|
143
|
-
# images for this application.
|
143
|
+
# Output only. The Google Container Registry domain used for storing managed
|
144
|
+
# build docker images for this application.
|
144
145
|
# Corresponds to the JSON property `gcrDomain`
|
145
146
|
# @return [String]
|
146
147
|
attr_accessor :gcr_domain
|
@@ -165,8 +166,8 @@ module Google
|
|
165
166
|
# @return [String]
|
166
167
|
attr_accessor :location_id
|
167
168
|
|
168
|
-
# Full path to the Application resource in the API. Example: apps/
|
169
|
-
# OutputOnly
|
169
|
+
# Output only. Full path to the Application resource in the API. Example: apps/
|
170
|
+
# myapp.@OutputOnly
|
170
171
|
# Corresponds to the JSON property `name`
|
171
172
|
# @return [String]
|
172
173
|
attr_accessor :name
|
@@ -1184,7 +1185,7 @@ module Google
|
|
1184
1185
|
# @return [String]
|
1185
1186
|
attr_accessor :oauth2_client_secret
|
1186
1187
|
|
1187
|
-
# Hex-encoded SHA-256 hash of the client secret.@OutputOnly
|
1188
|
+
# Output only. Hex-encoded SHA-256 hash of the client secret.@OutputOnly
|
1188
1189
|
# Corresponds to the JSON property `oauth2ClientSecretSha256`
|
1189
1190
|
# @return [String]
|
1190
1191
|
attr_accessor :oauth2_client_secret_sha256
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module AppengineV1
|
18
18
|
# Version of the google-apis-appengine_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.33.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230320"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -56,6 +56,9 @@ module Google
|
|
56
56
|
# applications, see Managing Projects, Applications, and Billing (https://cloud.
|
57
57
|
# google.com/appengine/docs/standard/python/console/).
|
58
58
|
# @param [Google::Apis::AppengineV1::Application] application_object
|
59
|
+
# @param [String] parent
|
60
|
+
# The project and location in which the application should be created, specified
|
61
|
+
# in the format projects/*/locations/*
|
59
62
|
# @param [String] fields
|
60
63
|
# Selector specifying which fields to include in a partial response.
|
61
64
|
# @param [String] quota_user
|
@@ -73,12 +76,13 @@ module Google
|
|
73
76
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
74
77
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
75
78
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
76
|
-
def create_app(application_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
79
|
+
def create_app(application_object = nil, parent: nil, fields: nil, quota_user: nil, options: nil, &block)
|
77
80
|
command = make_simple_command(:post, 'v1/apps', options)
|
78
81
|
command.request_representation = Google::Apis::AppengineV1::Application::Representation
|
79
82
|
command.request_object = application_object
|
80
83
|
command.response_representation = Google::Apis::AppengineV1::Operation::Representation
|
81
84
|
command.response_class = Google::Apis::AppengineV1::Operation
|
85
|
+
command.query['parent'] = parent unless parent.nil?
|
82
86
|
command.query['fields'] = fields unless fields.nil?
|
83
87
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
84
88
|
execute_or_queue_command(command, &block)
|
@@ -1555,6 +1559,48 @@ module Google
|
|
1555
1559
|
execute_or_queue_command(command, &block)
|
1556
1560
|
end
|
1557
1561
|
|
1562
|
+
# Creates an App Engine application for a Google Cloud Platform project.
|
1563
|
+
# Required fields: id - The ID of the target Cloud Platform project. location -
|
1564
|
+
# The region (https://cloud.google.com/appengine/docs/locations) where you want
|
1565
|
+
# the App Engine application located.For more information about App Engine
|
1566
|
+
# applications, see Managing Projects, Applications, and Billing (https://cloud.
|
1567
|
+
# google.com/appengine/docs/standard/python/console/).
|
1568
|
+
# @param [String] projects_id
|
1569
|
+
# Part of `parent`. The project and location in which the application should be
|
1570
|
+
# created, specified in the format projects/*/locations/*
|
1571
|
+
# @param [String] locations_id
|
1572
|
+
# Part of `parent`. See documentation of `projectsId`.
|
1573
|
+
# @param [Google::Apis::AppengineV1::Application] application_object
|
1574
|
+
# @param [String] fields
|
1575
|
+
# Selector specifying which fields to include in a partial response.
|
1576
|
+
# @param [String] quota_user
|
1577
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1578
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1579
|
+
# @param [Google::Apis::RequestOptions] options
|
1580
|
+
# Request-specific options
|
1581
|
+
#
|
1582
|
+
# @yield [result, err] Result & error if block supplied
|
1583
|
+
# @yieldparam result [Google::Apis::AppengineV1::Operation] parsed result object
|
1584
|
+
# @yieldparam err [StandardError] error object if request failed
|
1585
|
+
#
|
1586
|
+
# @return [Google::Apis::AppengineV1::Operation]
|
1587
|
+
#
|
1588
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1589
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1590
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1591
|
+
def create_project_location_application(projects_id, locations_id, application_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
1592
|
+
command = make_simple_command(:post, 'v1/projects/{projectsId}/locations/{locationsId}/applications', options)
|
1593
|
+
command.request_representation = Google::Apis::AppengineV1::Application::Representation
|
1594
|
+
command.request_object = application_object
|
1595
|
+
command.response_representation = Google::Apis::AppengineV1::Operation::Representation
|
1596
|
+
command.response_class = Google::Apis::AppengineV1::Operation
|
1597
|
+
command.params['projectsId'] = projects_id unless projects_id.nil?
|
1598
|
+
command.params['locationsId'] = locations_id unless locations_id.nil?
|
1599
|
+
command.query['fields'] = fields unless fields.nil?
|
1600
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1601
|
+
execute_or_queue_command(command, &block)
|
1602
|
+
end
|
1603
|
+
|
1558
1604
|
# Gets information about an application.
|
1559
1605
|
# @param [String] projects_id
|
1560
1606
|
# Part of `name`. Name of the Application resource to get. Example: apps/myapp.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-appengine_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.33.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-03-
|
11
|
+
date: 2023-03-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-appengine_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1/v0.33.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-appengine_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|