google-apis-appengine_v1alpha 0.8.0 → 0.12.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: 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
@@ -1,5 +1,22 @@
|
|
1
1
|
# Release history for google-apis-appengine_v1alpha
|
2
2
|
|
3
|
+
### v0.12.0 (2021-09-03)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210827
|
6
|
+
|
7
|
+
### v0.11.0 (2021-08-20)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20210816
|
10
|
+
|
11
|
+
### v0.10.0 (2021-06-29)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210618
|
14
|
+
* Regenerated using generator version 0.4.0
|
15
|
+
|
16
|
+
### v0.9.0 (2021-06-24)
|
17
|
+
|
18
|
+
* Unspecified changes
|
19
|
+
|
3
20
|
### v0.8.0 (2021-06-18)
|
4
21
|
|
5
22
|
* Regenerated from discovery document revision 20210613
|
@@ -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
|
-
GENERATOR_VERSION = "0.
|
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
|
@@ -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,29 +1,35 @@
|
|
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-06
|
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
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.4'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.4'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
description: This is the simple REST client for App Engine Admin API V1alpha. Simple
|
28
34
|
REST clients are Ruby client libraries that provide access to Google services via
|
29
35
|
their HTTP REST API endpoints. These libraries are generated and updated automatically
|
@@ -52,7 +58,7 @@ licenses:
|
|
52
58
|
metadata:
|
53
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-appengine_v1alpha/CHANGELOG.md
|
55
|
-
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
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-appengine_v1alpha
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|