google-apis-cloudfunctions_v1 0.27.0 → 0.30.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: 2516e353614458d9a08b8afd730129607fdcb62f024b081af27b2b7dbf807528
|
4
|
+
data.tar.gz: ab80e838e5d20a4a003384d2917e125645cb31399f2d092ccb85949ecb1f4128
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 858e70a523d2f33b362af8162372645e6df853a9e7cdc4f922ea6ba5205f96c85e539d33cd64213fd2f7adae81130c6866bc2e846c9071a1c5d9652e71c9770b
|
7
|
+
data.tar.gz: 3ad6806500fdad384d687cc77a3c08da194d82db8fde12b12285701bd04051c61cc6c470127d605d76ef31556238884c21c48611337ec0ee81432eab7d8805eb
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Release history for google-apis-cloudfunctions_v1
|
2
2
|
|
3
|
+
### v0.30.0 (2022-09-02)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220824
|
6
|
+
|
7
|
+
### v0.29.0 (2022-08-12)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220805
|
10
|
+
|
11
|
+
### v0.28.0 (2022-07-16)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220707
|
14
|
+
* Regenerated using generator version 0.9.0
|
15
|
+
|
3
16
|
### v0.27.0 (2022-07-02)
|
4
17
|
|
5
18
|
* Regenerated using generator version 0.8.0
|
@@ -120,28 +120,33 @@ module Google
|
|
120
120
|
# members` can have the following values: * `allUsers`: A special identifier
|
121
121
|
# that represents anyone who is on the internet; with or without a Google
|
122
122
|
# account. * `allAuthenticatedUsers`: A special identifier that represents
|
123
|
-
# anyone who is authenticated with a Google account or a service account.
|
124
|
-
#
|
125
|
-
#
|
126
|
-
#
|
127
|
-
#
|
128
|
-
#
|
129
|
-
# `
|
130
|
-
#
|
131
|
-
#
|
132
|
-
#
|
133
|
-
#
|
134
|
-
#
|
135
|
-
# example, `
|
136
|
-
# If the
|
137
|
-
# emailid`` and the
|
138
|
-
# `deleted:
|
139
|
-
# identifier) representing a
|
140
|
-
# example, `
|
141
|
-
#
|
142
|
-
#
|
143
|
-
#
|
144
|
-
#
|
123
|
+
# anyone who is authenticated with a Google account or a service account. Does
|
124
|
+
# not include identities that come from external identity providers (IdPs)
|
125
|
+
# through identity federation. * `user:`emailid``: An email address that
|
126
|
+
# represents a specific Google account. For example, `alice@example.com` . * `
|
127
|
+
# serviceAccount:`emailid``: An email address that represents a Google service
|
128
|
+
# account. For example, `my-other-app@appspot.gserviceaccount.com`. * `
|
129
|
+
# serviceAccount:`projectid`.svc.id.goog[`namespace`/`kubernetes-sa`]`: An
|
130
|
+
# identifier for a [Kubernetes service account](https://cloud.google.com/
|
131
|
+
# kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-
|
132
|
+
# project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:`emailid``: An
|
133
|
+
# email address that represents a Google group. For example, `admins@example.com`
|
134
|
+
# . * `deleted:user:`emailid`?uid=`uniqueid``: An email address (plus unique
|
135
|
+
# identifier) representing a user that has been recently deleted. For example, `
|
136
|
+
# alice@example.com?uid=123456789012345678901`. If the user is recovered, this
|
137
|
+
# value reverts to `user:`emailid`` and the recovered user retains the role in
|
138
|
+
# the binding. * `deleted:serviceAccount:`emailid`?uid=`uniqueid``: An email
|
139
|
+
# address (plus unique identifier) representing a service account that has been
|
140
|
+
# recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=
|
141
|
+
# 123456789012345678901`. If the service account is undeleted, this value
|
142
|
+
# reverts to `serviceAccount:`emailid`` and the undeleted service account
|
143
|
+
# retains the role in the binding. * `deleted:group:`emailid`?uid=`uniqueid``:
|
144
|
+
# An email address (plus unique identifier) representing a Google group that has
|
145
|
+
# been recently deleted. For example, `admins@example.com?uid=
|
146
|
+
# 123456789012345678901`. If the group is recovered, this value reverts to `
|
147
|
+
# group:`emailid`` and the recovered group retains the role in the binding. * `
|
148
|
+
# domain:`domain``: The G Suite domain (primary) that represents all the users
|
149
|
+
# of that domain. For example, `google.com` or `example.com`.
|
145
150
|
# Corresponds to the JSON property `members`
|
146
151
|
# @return [Array<String>]
|
147
152
|
attr_accessor :members
|
@@ -730,6 +735,156 @@ module Google
|
|
730
735
|
end
|
731
736
|
end
|
732
737
|
|
738
|
+
# Represents the metadata of the long-running operation.
|
739
|
+
class GoogleCloudFunctionsV2OperationMetadata
|
740
|
+
include Google::Apis::Core::Hashable
|
741
|
+
|
742
|
+
# API version used to start the operation.
|
743
|
+
# Corresponds to the JSON property `apiVersion`
|
744
|
+
# @return [String]
|
745
|
+
attr_accessor :api_version
|
746
|
+
|
747
|
+
# Identifies whether the user has requested cancellation of the operation.
|
748
|
+
# Operations that have successfully been cancelled have Operation.error value
|
749
|
+
# with a google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
|
750
|
+
# Corresponds to the JSON property `cancelRequested`
|
751
|
+
# @return [Boolean]
|
752
|
+
attr_accessor :cancel_requested
|
753
|
+
alias_method :cancel_requested?, :cancel_requested
|
754
|
+
|
755
|
+
# The time the operation was created.
|
756
|
+
# Corresponds to the JSON property `createTime`
|
757
|
+
# @return [String]
|
758
|
+
attr_accessor :create_time
|
759
|
+
|
760
|
+
# The time the operation finished running.
|
761
|
+
# Corresponds to the JSON property `endTime`
|
762
|
+
# @return [String]
|
763
|
+
attr_accessor :end_time
|
764
|
+
|
765
|
+
# The original request that started the operation.
|
766
|
+
# Corresponds to the JSON property `requestResource`
|
767
|
+
# @return [Hash<String,Object>]
|
768
|
+
attr_accessor :request_resource
|
769
|
+
|
770
|
+
# Mechanism for reporting in-progress stages
|
771
|
+
# Corresponds to the JSON property `stages`
|
772
|
+
# @return [Array<Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2Stage>]
|
773
|
+
attr_accessor :stages
|
774
|
+
|
775
|
+
# Human-readable status of the operation, if any.
|
776
|
+
# Corresponds to the JSON property `statusDetail`
|
777
|
+
# @return [String]
|
778
|
+
attr_accessor :status_detail
|
779
|
+
|
780
|
+
# Server-defined resource path for the target of the operation.
|
781
|
+
# Corresponds to the JSON property `target`
|
782
|
+
# @return [String]
|
783
|
+
attr_accessor :target
|
784
|
+
|
785
|
+
# Name of the verb executed by the operation.
|
786
|
+
# Corresponds to the JSON property `verb`
|
787
|
+
# @return [String]
|
788
|
+
attr_accessor :verb
|
789
|
+
|
790
|
+
def initialize(**args)
|
791
|
+
update!(**args)
|
792
|
+
end
|
793
|
+
|
794
|
+
# Update properties of this object
|
795
|
+
def update!(**args)
|
796
|
+
@api_version = args[:api_version] if args.key?(:api_version)
|
797
|
+
@cancel_requested = args[:cancel_requested] if args.key?(:cancel_requested)
|
798
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
799
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
800
|
+
@request_resource = args[:request_resource] if args.key?(:request_resource)
|
801
|
+
@stages = args[:stages] if args.key?(:stages)
|
802
|
+
@status_detail = args[:status_detail] if args.key?(:status_detail)
|
803
|
+
@target = args[:target] if args.key?(:target)
|
804
|
+
@verb = args[:verb] if args.key?(:verb)
|
805
|
+
end
|
806
|
+
end
|
807
|
+
|
808
|
+
# Each Stage of the deployment process
|
809
|
+
class GoogleCloudFunctionsV2Stage
|
810
|
+
include Google::Apis::Core::Hashable
|
811
|
+
|
812
|
+
# Message describing the Stage
|
813
|
+
# Corresponds to the JSON property `message`
|
814
|
+
# @return [String]
|
815
|
+
attr_accessor :message
|
816
|
+
|
817
|
+
# Name of the Stage. This will be unique for each Stage.
|
818
|
+
# Corresponds to the JSON property `name`
|
819
|
+
# @return [String]
|
820
|
+
attr_accessor :name
|
821
|
+
|
822
|
+
# Resource of the Stage
|
823
|
+
# Corresponds to the JSON property `resource`
|
824
|
+
# @return [String]
|
825
|
+
attr_accessor :resource
|
826
|
+
|
827
|
+
# Link to the current Stage resource
|
828
|
+
# Corresponds to the JSON property `resourceUri`
|
829
|
+
# @return [String]
|
830
|
+
attr_accessor :resource_uri
|
831
|
+
|
832
|
+
# Current state of the Stage
|
833
|
+
# Corresponds to the JSON property `state`
|
834
|
+
# @return [String]
|
835
|
+
attr_accessor :state
|
836
|
+
|
837
|
+
# State messages from the current Stage.
|
838
|
+
# Corresponds to the JSON property `stateMessages`
|
839
|
+
# @return [Array<Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2StateMessage>]
|
840
|
+
attr_accessor :state_messages
|
841
|
+
|
842
|
+
def initialize(**args)
|
843
|
+
update!(**args)
|
844
|
+
end
|
845
|
+
|
846
|
+
# Update properties of this object
|
847
|
+
def update!(**args)
|
848
|
+
@message = args[:message] if args.key?(:message)
|
849
|
+
@name = args[:name] if args.key?(:name)
|
850
|
+
@resource = args[:resource] if args.key?(:resource)
|
851
|
+
@resource_uri = args[:resource_uri] if args.key?(:resource_uri)
|
852
|
+
@state = args[:state] if args.key?(:state)
|
853
|
+
@state_messages = args[:state_messages] if args.key?(:state_messages)
|
854
|
+
end
|
855
|
+
end
|
856
|
+
|
857
|
+
# Informational messages about the state of the Cloud Function or Operation.
|
858
|
+
class GoogleCloudFunctionsV2StateMessage
|
859
|
+
include Google::Apis::Core::Hashable
|
860
|
+
|
861
|
+
# The message.
|
862
|
+
# Corresponds to the JSON property `message`
|
863
|
+
# @return [String]
|
864
|
+
attr_accessor :message
|
865
|
+
|
866
|
+
# Severity of the state message.
|
867
|
+
# Corresponds to the JSON property `severity`
|
868
|
+
# @return [String]
|
869
|
+
attr_accessor :severity
|
870
|
+
|
871
|
+
# One-word CamelCase type of the state message.
|
872
|
+
# Corresponds to the JSON property `type`
|
873
|
+
# @return [String]
|
874
|
+
attr_accessor :type
|
875
|
+
|
876
|
+
def initialize(**args)
|
877
|
+
update!(**args)
|
878
|
+
end
|
879
|
+
|
880
|
+
# Update properties of this object
|
881
|
+
def update!(**args)
|
882
|
+
@message = args[:message] if args.key?(:message)
|
883
|
+
@severity = args[:severity] if args.key?(:severity)
|
884
|
+
@type = args[:type] if args.key?(:type)
|
885
|
+
end
|
886
|
+
end
|
887
|
+
|
733
888
|
# Represents the metadata of the long-running operation.
|
734
889
|
class GoogleCloudFunctionsV2alphaOperationMetadata
|
735
890
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module CloudfunctionsV1
|
18
18
|
# Version of the google-apis-cloudfunctions_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.30.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 = "20220824"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -100,6 +100,24 @@ module Google
|
|
100
100
|
include Google::Apis::Core::JsonObjectSupport
|
101
101
|
end
|
102
102
|
|
103
|
+
class GoogleCloudFunctionsV2OperationMetadata
|
104
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
105
|
+
|
106
|
+
include Google::Apis::Core::JsonObjectSupport
|
107
|
+
end
|
108
|
+
|
109
|
+
class GoogleCloudFunctionsV2Stage
|
110
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
111
|
+
|
112
|
+
include Google::Apis::Core::JsonObjectSupport
|
113
|
+
end
|
114
|
+
|
115
|
+
class GoogleCloudFunctionsV2StateMessage
|
116
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
117
|
+
|
118
|
+
include Google::Apis::Core::JsonObjectSupport
|
119
|
+
end
|
120
|
+
|
103
121
|
class GoogleCloudFunctionsV2alphaOperationMetadata
|
104
122
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
105
123
|
|
@@ -382,6 +400,44 @@ module Google
|
|
382
400
|
end
|
383
401
|
end
|
384
402
|
|
403
|
+
class GoogleCloudFunctionsV2OperationMetadata
|
404
|
+
# @private
|
405
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
406
|
+
property :api_version, as: 'apiVersion'
|
407
|
+
property :cancel_requested, as: 'cancelRequested'
|
408
|
+
property :create_time, as: 'createTime'
|
409
|
+
property :end_time, as: 'endTime'
|
410
|
+
hash :request_resource, as: 'requestResource'
|
411
|
+
collection :stages, as: 'stages', class: Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2Stage, decorator: Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2Stage::Representation
|
412
|
+
|
413
|
+
property :status_detail, as: 'statusDetail'
|
414
|
+
property :target, as: 'target'
|
415
|
+
property :verb, as: 'verb'
|
416
|
+
end
|
417
|
+
end
|
418
|
+
|
419
|
+
class GoogleCloudFunctionsV2Stage
|
420
|
+
# @private
|
421
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
422
|
+
property :message, as: 'message'
|
423
|
+
property :name, as: 'name'
|
424
|
+
property :resource, as: 'resource'
|
425
|
+
property :resource_uri, as: 'resourceUri'
|
426
|
+
property :state, as: 'state'
|
427
|
+
collection :state_messages, as: 'stateMessages', class: Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2StateMessage, decorator: Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2StateMessage::Representation
|
428
|
+
|
429
|
+
end
|
430
|
+
end
|
431
|
+
|
432
|
+
class GoogleCloudFunctionsV2StateMessage
|
433
|
+
# @private
|
434
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
435
|
+
property :message, as: 'message'
|
436
|
+
property :severity, as: 'severity'
|
437
|
+
property :type, as: 'type'
|
438
|
+
end
|
439
|
+
end
|
440
|
+
|
385
441
|
class GoogleCloudFunctionsV2alphaOperationMetadata
|
386
442
|
# @private
|
387
443
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-cloudfunctions_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.30.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-
|
11
|
+
date: 2022-09-05 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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v1/v0.30.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudfunctions_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|