google-apis-appengine_v1beta 0.13.0 → 0.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 32adc5ac42578f9a68756cfda6c2bcce4a5980001686f6ab091659f6b36a5dc8
|
4
|
+
data.tar.gz: 14f6a2d3b82eb84ec0fb51197c62876bf4ba61085d7a6542b75082692885a31d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 36485f2fe7a1b5246f342306b3ddbd6b48d7e045d5cba9b44a5c915b251ea06ec9152cce4a9bd63bc2cd520e05be224b6d653c20cdec2f10d08af9bdfb3c3758
|
7
|
+
data.tar.gz: 5133a520ce9b23ddbc07daedbd7a3811fb9d61cde2dc3cce1b603672163fa551af858706417c8664da8c047142fd48bf228a6edb25c113450bc9e04a8bdd74a7
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Release history for google-apis-appengine_v1beta
|
2
2
|
|
3
|
+
### v0.17.0 (2021-09-24)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210918
|
6
|
+
|
7
|
+
### v0.16.0 (2021-09-17)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20210911
|
10
|
+
|
11
|
+
### v0.15.0 (2021-09-03)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210827
|
14
|
+
|
15
|
+
### v0.14.0 (2021-08-20)
|
16
|
+
|
17
|
+
* Regenerated from discovery document revision 20210816
|
18
|
+
|
3
19
|
### v0.13.0 (2021-07-30)
|
4
20
|
|
5
21
|
* Regenerated from discovery document revision 20210721
|
@@ -171,6 +171,13 @@ module Google
|
|
171
171
|
# @return [String]
|
172
172
|
attr_accessor :name
|
173
173
|
|
174
|
+
# The service account associated with the application. This is the app-level
|
175
|
+
# default identity. If no identity provided during create version, Admin API
|
176
|
+
# will fallback to this one.
|
177
|
+
# Corresponds to the JSON property `serviceAccount`
|
178
|
+
# @return [String]
|
179
|
+
attr_accessor :service_account
|
180
|
+
|
174
181
|
# Serving status of this application.
|
175
182
|
# Corresponds to the JSON property `servingStatus`
|
176
183
|
# @return [String]
|
@@ -195,6 +202,7 @@ module Google
|
|
195
202
|
@id = args[:id] if args.key?(:id)
|
196
203
|
@location_id = args[:location_id] if args.key?(:location_id)
|
197
204
|
@name = args[:name] if args.key?(:name)
|
205
|
+
@service_account = args[:service_account] if args.key?(:service_account)
|
198
206
|
@serving_status = args[:serving_status] if args.key?(:serving_status)
|
199
207
|
end
|
200
208
|
end
|
@@ -1074,7 +1082,7 @@ module Google
|
|
1074
1082
|
attr_accessor :action
|
1075
1083
|
|
1076
1084
|
# An optional string description of this rule. This field has a maximum length
|
1077
|
-
# of
|
1085
|
+
# of 400 characters.
|
1078
1086
|
# Corresponds to the JSON property `description`
|
1079
1087
|
# @return [String]
|
1080
1088
|
attr_accessor :description
|
@@ -1146,6 +1154,150 @@ module Google
|
|
1146
1154
|
end
|
1147
1155
|
end
|
1148
1156
|
|
1157
|
+
# Represents the metadata of the long-running operation.
|
1158
|
+
class GoogleAppengineV2OperationMetadata
|
1159
|
+
include Google::Apis::Core::Hashable
|
1160
|
+
|
1161
|
+
# Output only. API version used to start the operation.
|
1162
|
+
# Corresponds to the JSON property `apiVersion`
|
1163
|
+
# @return [String]
|
1164
|
+
attr_accessor :api_version
|
1165
|
+
|
1166
|
+
# Output only. The time the operation was created.
|
1167
|
+
# Corresponds to the JSON property `createTime`
|
1168
|
+
# @return [String]
|
1169
|
+
attr_accessor :create_time
|
1170
|
+
|
1171
|
+
# Output only. The time the operation finished running.
|
1172
|
+
# Corresponds to the JSON property `endTime`
|
1173
|
+
# @return [String]
|
1174
|
+
attr_accessor :end_time
|
1175
|
+
|
1176
|
+
# Output only. Ephemeral message that may change every time the operation is
|
1177
|
+
# polled.
|
1178
|
+
# Corresponds to the JSON property `ephemeralMessage`
|
1179
|
+
# @return [String]
|
1180
|
+
attr_accessor :ephemeral_message
|
1181
|
+
|
1182
|
+
# Output only. Identifies whether the user has requested cancellation of the
|
1183
|
+
# operation. Operations that have been cancelled successfully have Operation.
|
1184
|
+
# error value with a google.rpc.Status.code of 1, corresponding to Code.
|
1185
|
+
# CANCELLED.
|
1186
|
+
# Corresponds to the JSON property `requestedCancellation`
|
1187
|
+
# @return [Boolean]
|
1188
|
+
attr_accessor :requested_cancellation
|
1189
|
+
alias_method :requested_cancellation?, :requested_cancellation
|
1190
|
+
|
1191
|
+
# Output only. Human-readable status of the operation, if any.
|
1192
|
+
# Corresponds to the JSON property `statusMessage`
|
1193
|
+
# @return [String]
|
1194
|
+
attr_accessor :status_message
|
1195
|
+
|
1196
|
+
# Output only. Server-defined resource path for the target of the operation.
|
1197
|
+
# Corresponds to the JSON property `target`
|
1198
|
+
# @return [String]
|
1199
|
+
attr_accessor :target
|
1200
|
+
|
1201
|
+
# Output only. Name of the verb executed by the operation.
|
1202
|
+
# Corresponds to the JSON property `verb`
|
1203
|
+
# @return [String]
|
1204
|
+
attr_accessor :verb
|
1205
|
+
|
1206
|
+
# Output only. Durable messages that persist on every operation poll.
|
1207
|
+
# Corresponds to the JSON property `warning`
|
1208
|
+
# @return [Array<String>]
|
1209
|
+
attr_accessor :warning
|
1210
|
+
|
1211
|
+
def initialize(**args)
|
1212
|
+
update!(**args)
|
1213
|
+
end
|
1214
|
+
|
1215
|
+
# Update properties of this object
|
1216
|
+
def update!(**args)
|
1217
|
+
@api_version = args[:api_version] if args.key?(:api_version)
|
1218
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
1219
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
1220
|
+
@ephemeral_message = args[:ephemeral_message] if args.key?(:ephemeral_message)
|
1221
|
+
@requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
|
1222
|
+
@status_message = args[:status_message] if args.key?(:status_message)
|
1223
|
+
@target = args[:target] if args.key?(:target)
|
1224
|
+
@verb = args[:verb] if args.key?(:verb)
|
1225
|
+
@warning = args[:warning] if args.key?(:warning)
|
1226
|
+
end
|
1227
|
+
end
|
1228
|
+
|
1229
|
+
# Represents the metadata of the long-running operation.
|
1230
|
+
class GoogleAppengineV2mainOperationMetadata
|
1231
|
+
include Google::Apis::Core::Hashable
|
1232
|
+
|
1233
|
+
# Output only. API version used to start the operation.
|
1234
|
+
# Corresponds to the JSON property `apiVersion`
|
1235
|
+
# @return [String]
|
1236
|
+
attr_accessor :api_version
|
1237
|
+
|
1238
|
+
# Output only. The time the operation was created.
|
1239
|
+
# Corresponds to the JSON property `createTime`
|
1240
|
+
# @return [String]
|
1241
|
+
attr_accessor :create_time
|
1242
|
+
|
1243
|
+
# Output only. The time the operation finished running.
|
1244
|
+
# Corresponds to the JSON property `endTime`
|
1245
|
+
# @return [String]
|
1246
|
+
attr_accessor :end_time
|
1247
|
+
|
1248
|
+
# Output only. Ephemeral message that may change every time the operation is
|
1249
|
+
# polled.
|
1250
|
+
# Corresponds to the JSON property `ephemeralMessage`
|
1251
|
+
# @return [String]
|
1252
|
+
attr_accessor :ephemeral_message
|
1253
|
+
|
1254
|
+
# Output only. Identifies whether the user has requested cancellation of the
|
1255
|
+
# operation. Operations that have been cancelled successfully have Operation.
|
1256
|
+
# error value with a google.rpc.Status.code of 1, corresponding to Code.
|
1257
|
+
# CANCELLED.
|
1258
|
+
# Corresponds to the JSON property `requestedCancellation`
|
1259
|
+
# @return [Boolean]
|
1260
|
+
attr_accessor :requested_cancellation
|
1261
|
+
alias_method :requested_cancellation?, :requested_cancellation
|
1262
|
+
|
1263
|
+
# Output only. Human-readable status of the operation, if any.
|
1264
|
+
# Corresponds to the JSON property `statusMessage`
|
1265
|
+
# @return [String]
|
1266
|
+
attr_accessor :status_message
|
1267
|
+
|
1268
|
+
# Output only. Server-defined resource path for the target of the operation.
|
1269
|
+
# Corresponds to the JSON property `target`
|
1270
|
+
# @return [String]
|
1271
|
+
attr_accessor :target
|
1272
|
+
|
1273
|
+
# Output only. Name of the verb executed by the operation.
|
1274
|
+
# Corresponds to the JSON property `verb`
|
1275
|
+
# @return [String]
|
1276
|
+
attr_accessor :verb
|
1277
|
+
|
1278
|
+
# Output only. Durable messages that persist on every operation poll.
|
1279
|
+
# Corresponds to the JSON property `warning`
|
1280
|
+
# @return [Array<String>]
|
1281
|
+
attr_accessor :warning
|
1282
|
+
|
1283
|
+
def initialize(**args)
|
1284
|
+
update!(**args)
|
1285
|
+
end
|
1286
|
+
|
1287
|
+
# Update properties of this object
|
1288
|
+
def update!(**args)
|
1289
|
+
@api_version = args[:api_version] if args.key?(:api_version)
|
1290
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
1291
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
1292
|
+
@ephemeral_message = args[:ephemeral_message] if args.key?(:ephemeral_message)
|
1293
|
+
@requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
|
1294
|
+
@status_message = args[:status_message] if args.key?(:status_message)
|
1295
|
+
@target = args[:target] if args.key?(:target)
|
1296
|
+
@verb = args[:verb] if args.key?(:verb)
|
1297
|
+
@warning = args[:warning] if args.key?(:warning)
|
1298
|
+
end
|
1299
|
+
end
|
1300
|
+
|
1149
1301
|
# Health checking configuration for VM instances. Unhealthy instances are killed
|
1150
1302
|
# and replaced with new instances. Only applicable for instances in App Engine
|
1151
1303
|
# flexible environment.
|
@@ -2407,6 +2559,20 @@ module Google
|
|
2407
2559
|
# @return [String]
|
2408
2560
|
attr_accessor :id
|
2409
2561
|
|
2562
|
+
# A set of labels to apply to this service. Labels are key/value pairs that
|
2563
|
+
# describe the service and all resources that belong to it (e.g., versions). The
|
2564
|
+
# labels can be used to search and group resources, and are propagated to the
|
2565
|
+
# usage and billing reports, enabling fine-grain analysis of costs. An example
|
2566
|
+
# of using labels is to tag resources belonging to different environments (e.g.,
|
2567
|
+
# "env=prod", "env=qa"). Label keys and values can be no longer than 63
|
2568
|
+
# characters, can only contain lowercase letters, numeric characters,
|
2569
|
+
# underscores, dashes, and international characters. Label keys must start with
|
2570
|
+
# a lowercase letter or an international character. Each service can have at
|
2571
|
+
# most 32 labels.
|
2572
|
+
# Corresponds to the JSON property `labels`
|
2573
|
+
# @return [Hash<String,String>]
|
2574
|
+
attr_accessor :labels
|
2575
|
+
|
2410
2576
|
# Full path to the Service resource in the API. Example: apps/myapp/services/
|
2411
2577
|
# default.@OutputOnly
|
2412
2578
|
# Corresponds to the JSON property `name`
|
@@ -2432,6 +2598,7 @@ module Google
|
|
2432
2598
|
# Update properties of this object
|
2433
2599
|
def update!(**args)
|
2434
2600
|
@id = args[:id] if args.key?(:id)
|
2601
|
+
@labels = args[:labels] if args.key?(:labels)
|
2435
2602
|
@name = args[:name] if args.key?(:name)
|
2436
2603
|
@network_settings = args[:network_settings] if args.key?(:network_settings)
|
2437
2604
|
@split = args[:split] if args.key?(:split)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module AppengineV1beta
|
18
18
|
# Version of the google-apis-appengine_v1beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.17.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210918"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -202,6 +202,18 @@ module Google
|
|
202
202
|
include Google::Apis::Core::JsonObjectSupport
|
203
203
|
end
|
204
204
|
|
205
|
+
class GoogleAppengineV2OperationMetadata
|
206
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
207
|
+
|
208
|
+
include Google::Apis::Core::JsonObjectSupport
|
209
|
+
end
|
210
|
+
|
211
|
+
class GoogleAppengineV2mainOperationMetadata
|
212
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
213
|
+
|
214
|
+
include Google::Apis::Core::JsonObjectSupport
|
215
|
+
end
|
216
|
+
|
205
217
|
class HealthCheck
|
206
218
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
207
219
|
|
@@ -497,6 +509,7 @@ module Google
|
|
497
509
|
property :id, as: 'id'
|
498
510
|
property :location_id, as: 'locationId'
|
499
511
|
property :name, as: 'name'
|
512
|
+
property :service_account, as: 'serviceAccount'
|
500
513
|
property :serving_status, as: 'servingStatus'
|
501
514
|
end
|
502
515
|
end
|
@@ -759,6 +772,36 @@ module Google
|
|
759
772
|
end
|
760
773
|
end
|
761
774
|
|
775
|
+
class GoogleAppengineV2OperationMetadata
|
776
|
+
# @private
|
777
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
778
|
+
property :api_version, as: 'apiVersion'
|
779
|
+
property :create_time, as: 'createTime'
|
780
|
+
property :end_time, as: 'endTime'
|
781
|
+
property :ephemeral_message, as: 'ephemeralMessage'
|
782
|
+
property :requested_cancellation, as: 'requestedCancellation'
|
783
|
+
property :status_message, as: 'statusMessage'
|
784
|
+
property :target, as: 'target'
|
785
|
+
property :verb, as: 'verb'
|
786
|
+
collection :warning, as: 'warning'
|
787
|
+
end
|
788
|
+
end
|
789
|
+
|
790
|
+
class GoogleAppengineV2mainOperationMetadata
|
791
|
+
# @private
|
792
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
793
|
+
property :api_version, as: 'apiVersion'
|
794
|
+
property :create_time, as: 'createTime'
|
795
|
+
property :end_time, as: 'endTime'
|
796
|
+
property :ephemeral_message, as: 'ephemeralMessage'
|
797
|
+
property :requested_cancellation, as: 'requestedCancellation'
|
798
|
+
property :status_message, as: 'statusMessage'
|
799
|
+
property :target, as: 'target'
|
800
|
+
property :verb, as: 'verb'
|
801
|
+
collection :warning, as: 'warning'
|
802
|
+
end
|
803
|
+
end
|
804
|
+
|
762
805
|
class HealthCheck
|
763
806
|
# @private
|
764
807
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1087,6 +1130,7 @@ module Google
|
|
1087
1130
|
# @private
|
1088
1131
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1089
1132
|
property :id, as: 'id'
|
1133
|
+
hash :labels, as: 'labels'
|
1090
1134
|
property :name, as: 'name'
|
1091
1135
|
property :network_settings, as: 'networkSettings', class: Google::Apis::AppengineV1beta::NetworkSettings, decorator: Google::Apis::AppengineV1beta::NetworkSettings::Representation
|
1092
1136
|
|
@@ -32,10 +32,10 @@ module Google
|
|
32
32
|
# View and manage your applications deployed on Google App Engine
|
33
33
|
AUTH_APPENGINE_ADMIN = 'https://www.googleapis.com/auth/appengine.admin'
|
34
34
|
|
35
|
-
# See, edit, configure, and delete your Google Cloud
|
35
|
+
# See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
|
36
36
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
37
37
|
|
38
|
-
# View your data across Google Cloud
|
38
|
+
# View your data across Google Cloud services and see the email address of your Google Account
|
39
39
|
AUTH_CLOUD_PLATFORM_READ_ONLY = 'https://www.googleapis.com/auth/cloud-platform.read-only'
|
40
40
|
end
|
41
41
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-appengine_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.17.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: 2021-
|
11
|
+
date: 2021-09-27 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/master/generated/google-apis-appengine_v1beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1beta/v0.17.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-appengine_v1beta
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|