google-apis-appengine_v1alpha 0.11.0 → 0.12.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 64ab0492b919e2566c3dc980f1eef79007aad0d49425f0cc6607ffa74a90c661
|
4
|
+
data.tar.gz: c31c638f7eed82af24e1857d3edd51a343e219a96afd6dd24b2958d2dcf5f2d4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 31276ca39a40f2d3026451f876debe1b74a02da06ad17a9ca02e89a86d27db380be6720a27da16386eafa0c2057ba4cf495439f0a042c190e255301f81d32a20
|
7
|
+
data.tar.gz: e629bcf3d9fe5a13a30d4e3c4df376f2c86d5528ede686db3a5067ecc083cc8983baf163ecd9278083748cf10c7f58254bdd2b6a8ed25fc986f7f20833ed33c4
|
data/CHANGELOG.md
CHANGED
@@ -320,6 +320,150 @@ module Google
|
|
320
320
|
end
|
321
321
|
end
|
322
322
|
|
323
|
+
# Represents the metadata of the long-running operation.
|
324
|
+
class GoogleAppengineV2OperationMetadata
|
325
|
+
include Google::Apis::Core::Hashable
|
326
|
+
|
327
|
+
# Output only. API version used to start the operation.
|
328
|
+
# Corresponds to the JSON property `apiVersion`
|
329
|
+
# @return [String]
|
330
|
+
attr_accessor :api_version
|
331
|
+
|
332
|
+
# Output only. The time the operation was created.
|
333
|
+
# Corresponds to the JSON property `createTime`
|
334
|
+
# @return [String]
|
335
|
+
attr_accessor :create_time
|
336
|
+
|
337
|
+
# Output only. The time the operation finished running.
|
338
|
+
# Corresponds to the JSON property `endTime`
|
339
|
+
# @return [String]
|
340
|
+
attr_accessor :end_time
|
341
|
+
|
342
|
+
# Output only. Ephemeral message that may change every time the operation is
|
343
|
+
# polled.
|
344
|
+
# Corresponds to the JSON property `ephemeralMessage`
|
345
|
+
# @return [String]
|
346
|
+
attr_accessor :ephemeral_message
|
347
|
+
|
348
|
+
# Output only. Identifies whether the user has requested cancellation of the
|
349
|
+
# operation. Operations that have been cancelled successfully have Operation.
|
350
|
+
# error value with a google.rpc.Status.code of 1, corresponding to Code.
|
351
|
+
# CANCELLED.
|
352
|
+
# Corresponds to the JSON property `requestedCancellation`
|
353
|
+
# @return [Boolean]
|
354
|
+
attr_accessor :requested_cancellation
|
355
|
+
alias_method :requested_cancellation?, :requested_cancellation
|
356
|
+
|
357
|
+
# Output only. Human-readable status of the operation, if any.
|
358
|
+
# Corresponds to the JSON property `statusMessage`
|
359
|
+
# @return [String]
|
360
|
+
attr_accessor :status_message
|
361
|
+
|
362
|
+
# Output only. Server-defined resource path for the target of the operation.
|
363
|
+
# Corresponds to the JSON property `target`
|
364
|
+
# @return [String]
|
365
|
+
attr_accessor :target
|
366
|
+
|
367
|
+
# Output only. Name of the verb executed by the operation.
|
368
|
+
# Corresponds to the JSON property `verb`
|
369
|
+
# @return [String]
|
370
|
+
attr_accessor :verb
|
371
|
+
|
372
|
+
# Output only. Durable messages that persist on every operation poll.
|
373
|
+
# Corresponds to the JSON property `warning`
|
374
|
+
# @return [Array<String>]
|
375
|
+
attr_accessor :warning
|
376
|
+
|
377
|
+
def initialize(**args)
|
378
|
+
update!(**args)
|
379
|
+
end
|
380
|
+
|
381
|
+
# Update properties of this object
|
382
|
+
def update!(**args)
|
383
|
+
@api_version = args[:api_version] if args.key?(:api_version)
|
384
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
385
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
386
|
+
@ephemeral_message = args[:ephemeral_message] if args.key?(:ephemeral_message)
|
387
|
+
@requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
|
388
|
+
@status_message = args[:status_message] if args.key?(:status_message)
|
389
|
+
@target = args[:target] if args.key?(:target)
|
390
|
+
@verb = args[:verb] if args.key?(:verb)
|
391
|
+
@warning = args[:warning] if args.key?(:warning)
|
392
|
+
end
|
393
|
+
end
|
394
|
+
|
395
|
+
# Represents the metadata of the long-running operation.
|
396
|
+
class GoogleAppengineV2mainOperationMetadata
|
397
|
+
include Google::Apis::Core::Hashable
|
398
|
+
|
399
|
+
# Output only. API version used to start the operation.
|
400
|
+
# Corresponds to the JSON property `apiVersion`
|
401
|
+
# @return [String]
|
402
|
+
attr_accessor :api_version
|
403
|
+
|
404
|
+
# Output only. The time the operation was created.
|
405
|
+
# Corresponds to the JSON property `createTime`
|
406
|
+
# @return [String]
|
407
|
+
attr_accessor :create_time
|
408
|
+
|
409
|
+
# Output only. The time the operation finished running.
|
410
|
+
# Corresponds to the JSON property `endTime`
|
411
|
+
# @return [String]
|
412
|
+
attr_accessor :end_time
|
413
|
+
|
414
|
+
# Output only. Ephemeral message that may change every time the operation is
|
415
|
+
# polled.
|
416
|
+
# Corresponds to the JSON property `ephemeralMessage`
|
417
|
+
# @return [String]
|
418
|
+
attr_accessor :ephemeral_message
|
419
|
+
|
420
|
+
# Output only. Identifies whether the user has requested cancellation of the
|
421
|
+
# operation. Operations that have been cancelled successfully have Operation.
|
422
|
+
# error value with a google.rpc.Status.code of 1, corresponding to Code.
|
423
|
+
# CANCELLED.
|
424
|
+
# Corresponds to the JSON property `requestedCancellation`
|
425
|
+
# @return [Boolean]
|
426
|
+
attr_accessor :requested_cancellation
|
427
|
+
alias_method :requested_cancellation?, :requested_cancellation
|
428
|
+
|
429
|
+
# Output only. Human-readable status of the operation, if any.
|
430
|
+
# Corresponds to the JSON property `statusMessage`
|
431
|
+
# @return [String]
|
432
|
+
attr_accessor :status_message
|
433
|
+
|
434
|
+
# Output only. Server-defined resource path for the target of the operation.
|
435
|
+
# Corresponds to the JSON property `target`
|
436
|
+
# @return [String]
|
437
|
+
attr_accessor :target
|
438
|
+
|
439
|
+
# Output only. Name of the verb executed by the operation.
|
440
|
+
# Corresponds to the JSON property `verb`
|
441
|
+
# @return [String]
|
442
|
+
attr_accessor :verb
|
443
|
+
|
444
|
+
# Output only. Durable messages that persist on every operation poll.
|
445
|
+
# Corresponds to the JSON property `warning`
|
446
|
+
# @return [Array<String>]
|
447
|
+
attr_accessor :warning
|
448
|
+
|
449
|
+
def initialize(**args)
|
450
|
+
update!(**args)
|
451
|
+
end
|
452
|
+
|
453
|
+
# Update properties of this object
|
454
|
+
def update!(**args)
|
455
|
+
@api_version = args[:api_version] if args.key?(:api_version)
|
456
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
457
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
458
|
+
@ephemeral_message = args[:ephemeral_message] if args.key?(:ephemeral_message)
|
459
|
+
@requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
|
460
|
+
@status_message = args[:status_message] if args.key?(:status_message)
|
461
|
+
@target = args[:target] if args.key?(:target)
|
462
|
+
@verb = args[:verb] if args.key?(:verb)
|
463
|
+
@warning = args[:warning] if args.key?(:warning)
|
464
|
+
end
|
465
|
+
end
|
466
|
+
|
323
467
|
# Response message for AuthorizedCertificates.ListAuthorizedCertificates.
|
324
468
|
class ListAuthorizedCertificatesResponse
|
325
469
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module AppengineV1alpha
|
18
18
|
# Version of the google-apis-appengine_v1alpha gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.12.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 = "20210827"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -76,6 +76,18 @@ module Google
|
|
76
76
|
include Google::Apis::Core::JsonObjectSupport
|
77
77
|
end
|
78
78
|
|
79
|
+
class GoogleAppengineV2OperationMetadata
|
80
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
81
|
+
|
82
|
+
include Google::Apis::Core::JsonObjectSupport
|
83
|
+
end
|
84
|
+
|
85
|
+
class GoogleAppengineV2mainOperationMetadata
|
86
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
|
+
|
88
|
+
include Google::Apis::Core::JsonObjectSupport
|
89
|
+
end
|
90
|
+
|
79
91
|
class ListAuthorizedCertificatesResponse
|
80
92
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
81
93
|
|
@@ -247,6 +259,36 @@ module Google
|
|
247
259
|
end
|
248
260
|
end
|
249
261
|
|
262
|
+
class GoogleAppengineV2OperationMetadata
|
263
|
+
# @private
|
264
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
265
|
+
property :api_version, as: 'apiVersion'
|
266
|
+
property :create_time, as: 'createTime'
|
267
|
+
property :end_time, as: 'endTime'
|
268
|
+
property :ephemeral_message, as: 'ephemeralMessage'
|
269
|
+
property :requested_cancellation, as: 'requestedCancellation'
|
270
|
+
property :status_message, as: 'statusMessage'
|
271
|
+
property :target, as: 'target'
|
272
|
+
property :verb, as: 'verb'
|
273
|
+
collection :warning, as: 'warning'
|
274
|
+
end
|
275
|
+
end
|
276
|
+
|
277
|
+
class GoogleAppengineV2mainOperationMetadata
|
278
|
+
# @private
|
279
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
280
|
+
property :api_version, as: 'apiVersion'
|
281
|
+
property :create_time, as: 'createTime'
|
282
|
+
property :end_time, as: 'endTime'
|
283
|
+
property :ephemeral_message, as: 'ephemeralMessage'
|
284
|
+
property :requested_cancellation, as: 'requestedCancellation'
|
285
|
+
property :status_message, as: 'statusMessage'
|
286
|
+
property :target, as: 'target'
|
287
|
+
property :verb, as: 'verb'
|
288
|
+
collection :warning, as: 'warning'
|
289
|
+
end
|
290
|
+
end
|
291
|
+
|
250
292
|
class ListAuthorizedCertificatesResponse
|
251
293
|
# @private
|
252
294
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-appengine_v1alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.12.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-06 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_v1alpha/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1alpha/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1alpha/v0.12.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-appengine_v1alpha
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|