google-apis-cloudfunctions_v1 0.39.0 → 0.40.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: 814ac3d5b8393e5fc9418b97dc5f2af675628c0739fd4787222ddb0c68471db0
|
4
|
+
data.tar.gz: e8c09ea5a1e155d8f5587f81fb567bbc3bb44a5ba30df815be55e9fe28e60c86
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 67351b5d01715ce202858194d13547f908f45ff2133ea16d27687d805592ecf5fc55424147ff60c8cab57dc29d5cc32e797cb111da62e8689b664737af271966
|
7
|
+
data.tar.gz: d9c172e3a4fcb64762127914ca4f5f0cfef306b92185857936c471d0f749dbe2ea532d039d79f7bc56f06a53ccd4617355cc08d77de766bd5d415ba5f784e184
|
data/CHANGELOG.md
CHANGED
@@ -735,6 +735,25 @@ module Google
|
|
735
735
|
end
|
736
736
|
end
|
737
737
|
|
738
|
+
# Extra GCF specific location information.
|
739
|
+
class GoogleCloudFunctionsV2LocationMetadata
|
740
|
+
include Google::Apis::Core::Hashable
|
741
|
+
|
742
|
+
# The Cloud Function environments this location supports.
|
743
|
+
# Corresponds to the JSON property `environments`
|
744
|
+
# @return [Array<String>]
|
745
|
+
attr_accessor :environments
|
746
|
+
|
747
|
+
def initialize(**args)
|
748
|
+
update!(**args)
|
749
|
+
end
|
750
|
+
|
751
|
+
# Update properties of this object
|
752
|
+
def update!(**args)
|
753
|
+
@environments = args[:environments] if args.key?(:environments)
|
754
|
+
end
|
755
|
+
end
|
756
|
+
|
738
757
|
# Represents the metadata of the long-running operation.
|
739
758
|
class GoogleCloudFunctionsV2OperationMetadata
|
740
759
|
include Google::Apis::Core::Hashable
|
@@ -885,6 +904,25 @@ module Google
|
|
885
904
|
end
|
886
905
|
end
|
887
906
|
|
907
|
+
# Extra GCF specific location information.
|
908
|
+
class GoogleCloudFunctionsV2alphaLocationMetadata
|
909
|
+
include Google::Apis::Core::Hashable
|
910
|
+
|
911
|
+
# The Cloud Function environments this location supports.
|
912
|
+
# Corresponds to the JSON property `environments`
|
913
|
+
# @return [Array<String>]
|
914
|
+
attr_accessor :environments
|
915
|
+
|
916
|
+
def initialize(**args)
|
917
|
+
update!(**args)
|
918
|
+
end
|
919
|
+
|
920
|
+
# Update properties of this object
|
921
|
+
def update!(**args)
|
922
|
+
@environments = args[:environments] if args.key?(:environments)
|
923
|
+
end
|
924
|
+
end
|
925
|
+
|
888
926
|
# Represents the metadata of the long-running operation.
|
889
927
|
class GoogleCloudFunctionsV2alphaOperationMetadata
|
890
928
|
include Google::Apis::Core::Hashable
|
@@ -1035,6 +1073,25 @@ module Google
|
|
1035
1073
|
end
|
1036
1074
|
end
|
1037
1075
|
|
1076
|
+
# Extra GCF specific location information.
|
1077
|
+
class GoogleCloudFunctionsV2betaLocationMetadata
|
1078
|
+
include Google::Apis::Core::Hashable
|
1079
|
+
|
1080
|
+
# The Cloud Function environments this location supports.
|
1081
|
+
# Corresponds to the JSON property `environments`
|
1082
|
+
# @return [Array<String>]
|
1083
|
+
attr_accessor :environments
|
1084
|
+
|
1085
|
+
def initialize(**args)
|
1086
|
+
update!(**args)
|
1087
|
+
end
|
1088
|
+
|
1089
|
+
# Update properties of this object
|
1090
|
+
def update!(**args)
|
1091
|
+
@environments = args[:environments] if args.key?(:environments)
|
1092
|
+
end
|
1093
|
+
end
|
1094
|
+
|
1038
1095
|
# Represents the metadata of the long-running operation.
|
1039
1096
|
class GoogleCloudFunctionsV2betaOperationMetadata
|
1040
1097
|
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.40.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230515"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -100,6 +100,12 @@ module Google
|
|
100
100
|
include Google::Apis::Core::JsonObjectSupport
|
101
101
|
end
|
102
102
|
|
103
|
+
class GoogleCloudFunctionsV2LocationMetadata
|
104
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
105
|
+
|
106
|
+
include Google::Apis::Core::JsonObjectSupport
|
107
|
+
end
|
108
|
+
|
103
109
|
class GoogleCloudFunctionsV2OperationMetadata
|
104
110
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
105
111
|
|
@@ -118,6 +124,12 @@ module Google
|
|
118
124
|
include Google::Apis::Core::JsonObjectSupport
|
119
125
|
end
|
120
126
|
|
127
|
+
class GoogleCloudFunctionsV2alphaLocationMetadata
|
128
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
|
+
|
130
|
+
include Google::Apis::Core::JsonObjectSupport
|
131
|
+
end
|
132
|
+
|
121
133
|
class GoogleCloudFunctionsV2alphaOperationMetadata
|
122
134
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
123
135
|
|
@@ -136,6 +148,12 @@ module Google
|
|
136
148
|
include Google::Apis::Core::JsonObjectSupport
|
137
149
|
end
|
138
150
|
|
151
|
+
class GoogleCloudFunctionsV2betaLocationMetadata
|
152
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
153
|
+
|
154
|
+
include Google::Apis::Core::JsonObjectSupport
|
155
|
+
end
|
156
|
+
|
139
157
|
class GoogleCloudFunctionsV2betaOperationMetadata
|
140
158
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
141
159
|
|
@@ -400,6 +418,13 @@ module Google
|
|
400
418
|
end
|
401
419
|
end
|
402
420
|
|
421
|
+
class GoogleCloudFunctionsV2LocationMetadata
|
422
|
+
# @private
|
423
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
424
|
+
collection :environments, as: 'environments'
|
425
|
+
end
|
426
|
+
end
|
427
|
+
|
403
428
|
class GoogleCloudFunctionsV2OperationMetadata
|
404
429
|
# @private
|
405
430
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -438,6 +463,13 @@ module Google
|
|
438
463
|
end
|
439
464
|
end
|
440
465
|
|
466
|
+
class GoogleCloudFunctionsV2alphaLocationMetadata
|
467
|
+
# @private
|
468
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
469
|
+
collection :environments, as: 'environments'
|
470
|
+
end
|
471
|
+
end
|
472
|
+
|
441
473
|
class GoogleCloudFunctionsV2alphaOperationMetadata
|
442
474
|
# @private
|
443
475
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -476,6 +508,13 @@ module Google
|
|
476
508
|
end
|
477
509
|
end
|
478
510
|
|
511
|
+
class GoogleCloudFunctionsV2betaLocationMetadata
|
512
|
+
# @private
|
513
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
514
|
+
collection :environments, as: 'environments'
|
515
|
+
end
|
516
|
+
end
|
517
|
+
|
479
518
|
class GoogleCloudFunctionsV2betaOperationMetadata
|
480
519
|
# @private
|
481
520
|
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.40.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: 2023-05-
|
11
|
+
date: 2023-05-21 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.40.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: []
|