google-apis-cloudfunctions_v2beta 0.9.0 → 0.10.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: e2ad130dfa7306d2cbb371efb388879e3a7e70d2a39aa94b217992eb3e710d73
|
4
|
+
data.tar.gz: 5a3b01916da3affa6e7575e449ce896db333b0338efc32f6375356f360b01106
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 588b8edc55d5e90aa39d4aa9dbcb3000afed0782d0c75c5081e19939752f2751d5fadc298a1c210cac2660296c8d7d2a203112a92436d28349eb0e85d3e0db48
|
7
|
+
data.tar.gz: a21b010afa3006a39bd671ca91ecbb437d25c97f44c56b18a165982ce8fd7e98d5f06808d9c7f60fe630262aa2b28e8ef8db210d1aabbd4ad05116e59137efc1
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-cloudfunctions_v2beta
|
2
2
|
|
3
|
+
### v0.10.0 (2022-07-16)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220707
|
6
|
+
* Regenerated using generator version 0.9.0
|
7
|
+
|
3
8
|
### v0.9.0 (2022-07-01)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20220622
|
@@ -563,6 +563,156 @@ module Google
|
|
563
563
|
end
|
564
564
|
end
|
565
565
|
|
566
|
+
# Represents the metadata of the long-running operation.
|
567
|
+
class GoogleCloudFunctionsV2OperationMetadata
|
568
|
+
include Google::Apis::Core::Hashable
|
569
|
+
|
570
|
+
# API version used to start the operation.
|
571
|
+
# Corresponds to the JSON property `apiVersion`
|
572
|
+
# @return [String]
|
573
|
+
attr_accessor :api_version
|
574
|
+
|
575
|
+
# Identifies whether the user has requested cancellation of the operation.
|
576
|
+
# Operations that have successfully been cancelled have Operation.error value
|
577
|
+
# with a google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
|
578
|
+
# Corresponds to the JSON property `cancelRequested`
|
579
|
+
# @return [Boolean]
|
580
|
+
attr_accessor :cancel_requested
|
581
|
+
alias_method :cancel_requested?, :cancel_requested
|
582
|
+
|
583
|
+
# The time the operation was created.
|
584
|
+
# Corresponds to the JSON property `createTime`
|
585
|
+
# @return [String]
|
586
|
+
attr_accessor :create_time
|
587
|
+
|
588
|
+
# The time the operation finished running.
|
589
|
+
# Corresponds to the JSON property `endTime`
|
590
|
+
# @return [String]
|
591
|
+
attr_accessor :end_time
|
592
|
+
|
593
|
+
# The original request that started the operation.
|
594
|
+
# Corresponds to the JSON property `requestResource`
|
595
|
+
# @return [Hash<String,Object>]
|
596
|
+
attr_accessor :request_resource
|
597
|
+
|
598
|
+
# Mechanism for reporting in-progress stages
|
599
|
+
# Corresponds to the JSON property `stages`
|
600
|
+
# @return [Array<Google::Apis::CloudfunctionsV2beta::GoogleCloudFunctionsV2Stage>]
|
601
|
+
attr_accessor :stages
|
602
|
+
|
603
|
+
# Human-readable status of the operation, if any.
|
604
|
+
# Corresponds to the JSON property `statusDetail`
|
605
|
+
# @return [String]
|
606
|
+
attr_accessor :status_detail
|
607
|
+
|
608
|
+
# Server-defined resource path for the target of the operation.
|
609
|
+
# Corresponds to the JSON property `target`
|
610
|
+
# @return [String]
|
611
|
+
attr_accessor :target
|
612
|
+
|
613
|
+
# Name of the verb executed by the operation.
|
614
|
+
# Corresponds to the JSON property `verb`
|
615
|
+
# @return [String]
|
616
|
+
attr_accessor :verb
|
617
|
+
|
618
|
+
def initialize(**args)
|
619
|
+
update!(**args)
|
620
|
+
end
|
621
|
+
|
622
|
+
# Update properties of this object
|
623
|
+
def update!(**args)
|
624
|
+
@api_version = args[:api_version] if args.key?(:api_version)
|
625
|
+
@cancel_requested = args[:cancel_requested] if args.key?(:cancel_requested)
|
626
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
627
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
628
|
+
@request_resource = args[:request_resource] if args.key?(:request_resource)
|
629
|
+
@stages = args[:stages] if args.key?(:stages)
|
630
|
+
@status_detail = args[:status_detail] if args.key?(:status_detail)
|
631
|
+
@target = args[:target] if args.key?(:target)
|
632
|
+
@verb = args[:verb] if args.key?(:verb)
|
633
|
+
end
|
634
|
+
end
|
635
|
+
|
636
|
+
# Each Stage of the deployment process
|
637
|
+
class GoogleCloudFunctionsV2Stage
|
638
|
+
include Google::Apis::Core::Hashable
|
639
|
+
|
640
|
+
# Message describing the Stage
|
641
|
+
# Corresponds to the JSON property `message`
|
642
|
+
# @return [String]
|
643
|
+
attr_accessor :message
|
644
|
+
|
645
|
+
# Name of the Stage. This will be unique for each Stage.
|
646
|
+
# Corresponds to the JSON property `name`
|
647
|
+
# @return [String]
|
648
|
+
attr_accessor :name
|
649
|
+
|
650
|
+
# Resource of the Stage
|
651
|
+
# Corresponds to the JSON property `resource`
|
652
|
+
# @return [String]
|
653
|
+
attr_accessor :resource
|
654
|
+
|
655
|
+
# Link to the current Stage resource
|
656
|
+
# Corresponds to the JSON property `resourceUri`
|
657
|
+
# @return [String]
|
658
|
+
attr_accessor :resource_uri
|
659
|
+
|
660
|
+
# Current state of the Stage
|
661
|
+
# Corresponds to the JSON property `state`
|
662
|
+
# @return [String]
|
663
|
+
attr_accessor :state
|
664
|
+
|
665
|
+
# State messages from the current Stage.
|
666
|
+
# Corresponds to the JSON property `stateMessages`
|
667
|
+
# @return [Array<Google::Apis::CloudfunctionsV2beta::GoogleCloudFunctionsV2StateMessage>]
|
668
|
+
attr_accessor :state_messages
|
669
|
+
|
670
|
+
def initialize(**args)
|
671
|
+
update!(**args)
|
672
|
+
end
|
673
|
+
|
674
|
+
# Update properties of this object
|
675
|
+
def update!(**args)
|
676
|
+
@message = args[:message] if args.key?(:message)
|
677
|
+
@name = args[:name] if args.key?(:name)
|
678
|
+
@resource = args[:resource] if args.key?(:resource)
|
679
|
+
@resource_uri = args[:resource_uri] if args.key?(:resource_uri)
|
680
|
+
@state = args[:state] if args.key?(:state)
|
681
|
+
@state_messages = args[:state_messages] if args.key?(:state_messages)
|
682
|
+
end
|
683
|
+
end
|
684
|
+
|
685
|
+
# Informational messages about the state of the Cloud Function or Operation.
|
686
|
+
class GoogleCloudFunctionsV2StateMessage
|
687
|
+
include Google::Apis::Core::Hashable
|
688
|
+
|
689
|
+
# The message.
|
690
|
+
# Corresponds to the JSON property `message`
|
691
|
+
# @return [String]
|
692
|
+
attr_accessor :message
|
693
|
+
|
694
|
+
# Severity of the state message.
|
695
|
+
# Corresponds to the JSON property `severity`
|
696
|
+
# @return [String]
|
697
|
+
attr_accessor :severity
|
698
|
+
|
699
|
+
# One-word CamelCase type of the state message.
|
700
|
+
# Corresponds to the JSON property `type`
|
701
|
+
# @return [String]
|
702
|
+
attr_accessor :type
|
703
|
+
|
704
|
+
def initialize(**args)
|
705
|
+
update!(**args)
|
706
|
+
end
|
707
|
+
|
708
|
+
# Update properties of this object
|
709
|
+
def update!(**args)
|
710
|
+
@message = args[:message] if args.key?(:message)
|
711
|
+
@severity = args[:severity] if args.key?(:severity)
|
712
|
+
@type = args[:type] if args.key?(:type)
|
713
|
+
end
|
714
|
+
end
|
715
|
+
|
566
716
|
# Represents the metadata of the long-running operation.
|
567
717
|
class GoogleCloudFunctionsV2alphaOperationMetadata
|
568
718
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module CloudfunctionsV2beta
|
18
18
|
# Version of the google-apis-cloudfunctions_v2beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.10.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.9.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220707"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -94,6 +94,24 @@ module Google
|
|
94
94
|
include Google::Apis::Core::JsonObjectSupport
|
95
95
|
end
|
96
96
|
|
97
|
+
class GoogleCloudFunctionsV2OperationMetadata
|
98
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
|
+
|
100
|
+
include Google::Apis::Core::JsonObjectSupport
|
101
|
+
end
|
102
|
+
|
103
|
+
class GoogleCloudFunctionsV2Stage
|
104
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
105
|
+
|
106
|
+
include Google::Apis::Core::JsonObjectSupport
|
107
|
+
end
|
108
|
+
|
109
|
+
class GoogleCloudFunctionsV2StateMessage
|
110
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
111
|
+
|
112
|
+
include Google::Apis::Core::JsonObjectSupport
|
113
|
+
end
|
114
|
+
|
97
115
|
class GoogleCloudFunctionsV2alphaOperationMetadata
|
98
116
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
117
|
|
@@ -381,6 +399,44 @@ module Google
|
|
381
399
|
end
|
382
400
|
end
|
383
401
|
|
402
|
+
class GoogleCloudFunctionsV2OperationMetadata
|
403
|
+
# @private
|
404
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
405
|
+
property :api_version, as: 'apiVersion'
|
406
|
+
property :cancel_requested, as: 'cancelRequested'
|
407
|
+
property :create_time, as: 'createTime'
|
408
|
+
property :end_time, as: 'endTime'
|
409
|
+
hash :request_resource, as: 'requestResource'
|
410
|
+
collection :stages, as: 'stages', class: Google::Apis::CloudfunctionsV2beta::GoogleCloudFunctionsV2Stage, decorator: Google::Apis::CloudfunctionsV2beta::GoogleCloudFunctionsV2Stage::Representation
|
411
|
+
|
412
|
+
property :status_detail, as: 'statusDetail'
|
413
|
+
property :target, as: 'target'
|
414
|
+
property :verb, as: 'verb'
|
415
|
+
end
|
416
|
+
end
|
417
|
+
|
418
|
+
class GoogleCloudFunctionsV2Stage
|
419
|
+
# @private
|
420
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
421
|
+
property :message, as: 'message'
|
422
|
+
property :name, as: 'name'
|
423
|
+
property :resource, as: 'resource'
|
424
|
+
property :resource_uri, as: 'resourceUri'
|
425
|
+
property :state, as: 'state'
|
426
|
+
collection :state_messages, as: 'stateMessages', class: Google::Apis::CloudfunctionsV2beta::GoogleCloudFunctionsV2StateMessage, decorator: Google::Apis::CloudfunctionsV2beta::GoogleCloudFunctionsV2StateMessage::Representation
|
427
|
+
|
428
|
+
end
|
429
|
+
end
|
430
|
+
|
431
|
+
class GoogleCloudFunctionsV2StateMessage
|
432
|
+
# @private
|
433
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
434
|
+
property :message, as: 'message'
|
435
|
+
property :severity, as: 'severity'
|
436
|
+
property :type, as: 'type'
|
437
|
+
end
|
438
|
+
end
|
439
|
+
|
384
440
|
class GoogleCloudFunctionsV2alphaOperationMetadata
|
385
441
|
# @private
|
386
442
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-cloudfunctions_v2beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.10.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: 2022-07-
|
11
|
+
date: 2022-07-18 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-cloudfunctions_v2beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v2beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v2beta/v0.10.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudfunctions_v2beta
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|