google-apis-cloudfunctions_v1 0.37.0 → 0.38.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: b95181bf86e7a9aa5cbdab51116f1c83be2405d3d3f2d8d2ecefe14c63e6ebf2
|
4
|
+
data.tar.gz: 1cc7684971fc7adb96c7b3cde494ac2c0f729fe01ff50391c57fff4284a18df2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c002a1fed674711d3536a5bf22cfae56e7a50c12cb47612df8bc05f25470a5bf1858957bd45e04fbd5a53c15811f09e295ca384d3b15c8ab695991e96c73e5a3
|
7
|
+
data.tar.gz: dcca75ffcfcd5175204461b1e06b24fa3cac156bc180704d9606b182c979214014a6db7c1d86e835f2f05c7bf1c7e2d18dd7bcee44dc0c90060fe4accfba4a6b
|
data/CHANGELOG.md
CHANGED
@@ -885,25 +885,6 @@ module Google
|
|
885
885
|
end
|
886
886
|
end
|
887
887
|
|
888
|
-
# Extra GCF specific location information.
|
889
|
-
class GoogleCloudFunctionsV2alphaLocationMetadata
|
890
|
-
include Google::Apis::Core::Hashable
|
891
|
-
|
892
|
-
# The Cloud Function environments this location supports.
|
893
|
-
# Corresponds to the JSON property `environments`
|
894
|
-
# @return [Array<String>]
|
895
|
-
attr_accessor :environments
|
896
|
-
|
897
|
-
def initialize(**args)
|
898
|
-
update!(**args)
|
899
|
-
end
|
900
|
-
|
901
|
-
# Update properties of this object
|
902
|
-
def update!(**args)
|
903
|
-
@environments = args[:environments] if args.key?(:environments)
|
904
|
-
end
|
905
|
-
end
|
906
|
-
|
907
888
|
# Represents the metadata of the long-running operation.
|
908
889
|
class GoogleCloudFunctionsV2alphaOperationMetadata
|
909
890
|
include Google::Apis::Core::Hashable
|
@@ -938,7 +919,7 @@ module Google
|
|
938
919
|
|
939
920
|
# Mechanism for reporting in-progress stages
|
940
921
|
# Corresponds to the JSON property `stages`
|
941
|
-
# @return [Array<Google::Apis::CloudfunctionsV1::
|
922
|
+
# @return [Array<Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2alphaStage>]
|
942
923
|
attr_accessor :stages
|
943
924
|
|
944
925
|
# Human-readable status of the operation, if any.
|
@@ -974,24 +955,39 @@ module Google
|
|
974
955
|
end
|
975
956
|
end
|
976
957
|
|
977
|
-
#
|
978
|
-
class
|
958
|
+
# Each Stage of the deployment process
|
959
|
+
class GoogleCloudFunctionsV2alphaStage
|
979
960
|
include Google::Apis::Core::Hashable
|
980
961
|
|
981
|
-
#
|
962
|
+
# Message describing the Stage
|
982
963
|
# Corresponds to the JSON property `message`
|
983
964
|
# @return [String]
|
984
965
|
attr_accessor :message
|
985
966
|
|
986
|
-
#
|
987
|
-
# Corresponds to the JSON property `
|
967
|
+
# Name of the Stage. This will be unique for each Stage.
|
968
|
+
# Corresponds to the JSON property `name`
|
988
969
|
# @return [String]
|
989
|
-
attr_accessor :
|
970
|
+
attr_accessor :name
|
990
971
|
|
991
|
-
#
|
992
|
-
# Corresponds to the JSON property `
|
972
|
+
# Resource of the Stage
|
973
|
+
# Corresponds to the JSON property `resource`
|
993
974
|
# @return [String]
|
994
|
-
attr_accessor :
|
975
|
+
attr_accessor :resource
|
976
|
+
|
977
|
+
# Link to the current Stage resource
|
978
|
+
# Corresponds to the JSON property `resourceUri`
|
979
|
+
# @return [String]
|
980
|
+
attr_accessor :resource_uri
|
981
|
+
|
982
|
+
# Current state of the Stage
|
983
|
+
# Corresponds to the JSON property `state`
|
984
|
+
# @return [String]
|
985
|
+
attr_accessor :state
|
986
|
+
|
987
|
+
# State messages from the current Stage.
|
988
|
+
# Corresponds to the JSON property `stateMessages`
|
989
|
+
# @return [Array<Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2alphaStateMessage>]
|
990
|
+
attr_accessor :state_messages
|
995
991
|
|
996
992
|
def initialize(**args)
|
997
993
|
update!(**args)
|
@@ -1000,19 +996,32 @@ module Google
|
|
1000
996
|
# Update properties of this object
|
1001
997
|
def update!(**args)
|
1002
998
|
@message = args[:message] if args.key?(:message)
|
1003
|
-
@
|
1004
|
-
@
|
999
|
+
@name = args[:name] if args.key?(:name)
|
1000
|
+
@resource = args[:resource] if args.key?(:resource)
|
1001
|
+
@resource_uri = args[:resource_uri] if args.key?(:resource_uri)
|
1002
|
+
@state = args[:state] if args.key?(:state)
|
1003
|
+
@state_messages = args[:state_messages] if args.key?(:state_messages)
|
1005
1004
|
end
|
1006
1005
|
end
|
1007
1006
|
|
1008
|
-
#
|
1009
|
-
class
|
1007
|
+
# Informational messages about the state of the Cloud Function or Operation.
|
1008
|
+
class GoogleCloudFunctionsV2alphaStateMessage
|
1010
1009
|
include Google::Apis::Core::Hashable
|
1011
1010
|
|
1012
|
-
# The
|
1013
|
-
# Corresponds to the JSON property `
|
1014
|
-
# @return [
|
1015
|
-
attr_accessor :
|
1011
|
+
# The message.
|
1012
|
+
# Corresponds to the JSON property `message`
|
1013
|
+
# @return [String]
|
1014
|
+
attr_accessor :message
|
1015
|
+
|
1016
|
+
# Severity of the state message.
|
1017
|
+
# Corresponds to the JSON property `severity`
|
1018
|
+
# @return [String]
|
1019
|
+
attr_accessor :severity
|
1020
|
+
|
1021
|
+
# One-word CamelCase type of the state message.
|
1022
|
+
# Corresponds to the JSON property `type`
|
1023
|
+
# @return [String]
|
1024
|
+
attr_accessor :type
|
1016
1025
|
|
1017
1026
|
def initialize(**args)
|
1018
1027
|
update!(**args)
|
@@ -1020,7 +1029,9 @@ module Google
|
|
1020
1029
|
|
1021
1030
|
# Update properties of this object
|
1022
1031
|
def update!(**args)
|
1023
|
-
@
|
1032
|
+
@message = args[:message] if args.key?(:message)
|
1033
|
+
@severity = args[:severity] if args.key?(:severity)
|
1034
|
+
@type = args[:type] if args.key?(:type)
|
1024
1035
|
end
|
1025
1036
|
end
|
1026
1037
|
|
@@ -1283,7 +1294,7 @@ module Google
|
|
1283
1294
|
end
|
1284
1295
|
end
|
1285
1296
|
|
1286
|
-
# A resource that represents Google Cloud
|
1297
|
+
# A resource that represents a Google Cloud location.
|
1287
1298
|
class Location
|
1288
1299
|
include Google::Apis::Core::Hashable
|
1289
1300
|
|
@@ -1330,25 +1341,6 @@ module Google
|
|
1330
1341
|
end
|
1331
1342
|
end
|
1332
1343
|
|
1333
|
-
# Extra GCF specific location information.
|
1334
|
-
class LocationMetadata
|
1335
|
-
include Google::Apis::Core::Hashable
|
1336
|
-
|
1337
|
-
# The Cloud Function environments this location supports.
|
1338
|
-
# Corresponds to the JSON property `environments`
|
1339
|
-
# @return [Array<String>]
|
1340
|
-
attr_accessor :environments
|
1341
|
-
|
1342
|
-
def initialize(**args)
|
1343
|
-
update!(**args)
|
1344
|
-
end
|
1345
|
-
|
1346
|
-
# Update properties of this object
|
1347
|
-
def update!(**args)
|
1348
|
-
@environments = args[:environments] if args.key?(:environments)
|
1349
|
-
end
|
1350
|
-
end
|
1351
|
-
|
1352
1344
|
# This resource represents a long-running operation that is the result of a
|
1353
1345
|
# network API call.
|
1354
1346
|
class Operation
|
@@ -1801,55 +1793,6 @@ module Google
|
|
1801
1793
|
end
|
1802
1794
|
end
|
1803
1795
|
|
1804
|
-
# Each Stage of the deployment process
|
1805
|
-
class Stage
|
1806
|
-
include Google::Apis::Core::Hashable
|
1807
|
-
|
1808
|
-
# Message describing the Stage
|
1809
|
-
# Corresponds to the JSON property `message`
|
1810
|
-
# @return [String]
|
1811
|
-
attr_accessor :message
|
1812
|
-
|
1813
|
-
# Name of the Stage. This will be unique for each Stage.
|
1814
|
-
# Corresponds to the JSON property `name`
|
1815
|
-
# @return [String]
|
1816
|
-
attr_accessor :name
|
1817
|
-
|
1818
|
-
# Resource of the Stage
|
1819
|
-
# Corresponds to the JSON property `resource`
|
1820
|
-
# @return [String]
|
1821
|
-
attr_accessor :resource
|
1822
|
-
|
1823
|
-
# Link to the current Stage resource
|
1824
|
-
# Corresponds to the JSON property `resourceUri`
|
1825
|
-
# @return [String]
|
1826
|
-
attr_accessor :resource_uri
|
1827
|
-
|
1828
|
-
# Current state of the Stage
|
1829
|
-
# Corresponds to the JSON property `state`
|
1830
|
-
# @return [String]
|
1831
|
-
attr_accessor :state
|
1832
|
-
|
1833
|
-
# State messages from the current Stage.
|
1834
|
-
# Corresponds to the JSON property `stateMessages`
|
1835
|
-
# @return [Array<Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2alphaStateMessage>]
|
1836
|
-
attr_accessor :state_messages
|
1837
|
-
|
1838
|
-
def initialize(**args)
|
1839
|
-
update!(**args)
|
1840
|
-
end
|
1841
|
-
|
1842
|
-
# Update properties of this object
|
1843
|
-
def update!(**args)
|
1844
|
-
@message = args[:message] if args.key?(:message)
|
1845
|
-
@name = args[:name] if args.key?(:name)
|
1846
|
-
@resource = args[:resource] if args.key?(:resource)
|
1847
|
-
@resource_uri = args[:resource_uri] if args.key?(:resource_uri)
|
1848
|
-
@state = args[:state] if args.key?(:state)
|
1849
|
-
@state_messages = args[:state_messages] if args.key?(:state_messages)
|
1850
|
-
end
|
1851
|
-
end
|
1852
|
-
|
1853
1796
|
# The `Status` type defines a logical error model that is suitable for different
|
1854
1797
|
# programming environments, including REST APIs and RPC APIs. It is used by [
|
1855
1798
|
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
@@ -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.38.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 = "20230420"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -118,25 +118,19 @@ module Google
|
|
118
118
|
include Google::Apis::Core::JsonObjectSupport
|
119
119
|
end
|
120
120
|
|
121
|
-
class GoogleCloudFunctionsV2alphaLocationMetadata
|
122
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
123
|
-
|
124
|
-
include Google::Apis::Core::JsonObjectSupport
|
125
|
-
end
|
126
|
-
|
127
121
|
class GoogleCloudFunctionsV2alphaOperationMetadata
|
128
122
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
123
|
|
130
124
|
include Google::Apis::Core::JsonObjectSupport
|
131
125
|
end
|
132
126
|
|
133
|
-
class
|
127
|
+
class GoogleCloudFunctionsV2alphaStage
|
134
128
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
135
129
|
|
136
130
|
include Google::Apis::Core::JsonObjectSupport
|
137
131
|
end
|
138
132
|
|
139
|
-
class
|
133
|
+
class GoogleCloudFunctionsV2alphaStateMessage
|
140
134
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
141
135
|
|
142
136
|
include Google::Apis::Core::JsonObjectSupport
|
@@ -190,12 +184,6 @@ module Google
|
|
190
184
|
include Google::Apis::Core::JsonObjectSupport
|
191
185
|
end
|
192
186
|
|
193
|
-
class LocationMetadata
|
194
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
|
-
|
196
|
-
include Google::Apis::Core::JsonObjectSupport
|
197
|
-
end
|
198
|
-
|
199
187
|
class Operation
|
200
188
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
189
|
|
@@ -250,12 +238,6 @@ module Google
|
|
250
238
|
include Google::Apis::Core::JsonObjectSupport
|
251
239
|
end
|
252
240
|
|
253
|
-
class Stage
|
254
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
255
|
-
|
256
|
-
include Google::Apis::Core::JsonObjectSupport
|
257
|
-
end
|
258
|
-
|
259
241
|
class Status
|
260
242
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
243
|
|
@@ -456,13 +438,6 @@ module Google
|
|
456
438
|
end
|
457
439
|
end
|
458
440
|
|
459
|
-
class GoogleCloudFunctionsV2alphaLocationMetadata
|
460
|
-
# @private
|
461
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
462
|
-
collection :environments, as: 'environments'
|
463
|
-
end
|
464
|
-
end
|
465
|
-
|
466
441
|
class GoogleCloudFunctionsV2alphaOperationMetadata
|
467
442
|
# @private
|
468
443
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -471,7 +446,7 @@ module Google
|
|
471
446
|
property :create_time, as: 'createTime'
|
472
447
|
property :end_time, as: 'endTime'
|
473
448
|
hash :request_resource, as: 'requestResource'
|
474
|
-
collection :stages, as: 'stages', class: Google::Apis::CloudfunctionsV1::
|
449
|
+
collection :stages, as: 'stages', class: Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2alphaStage, decorator: Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2alphaStage::Representation
|
475
450
|
|
476
451
|
property :status_detail, as: 'statusDetail'
|
477
452
|
property :target, as: 'target'
|
@@ -479,19 +454,25 @@ module Google
|
|
479
454
|
end
|
480
455
|
end
|
481
456
|
|
482
|
-
class
|
457
|
+
class GoogleCloudFunctionsV2alphaStage
|
483
458
|
# @private
|
484
459
|
class Representation < Google::Apis::Core::JsonRepresentation
|
485
460
|
property :message, as: 'message'
|
486
|
-
property :
|
487
|
-
property :
|
461
|
+
property :name, as: 'name'
|
462
|
+
property :resource, as: 'resource'
|
463
|
+
property :resource_uri, as: 'resourceUri'
|
464
|
+
property :state, as: 'state'
|
465
|
+
collection :state_messages, as: 'stateMessages', class: Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2alphaStateMessage, decorator: Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2alphaStateMessage::Representation
|
466
|
+
|
488
467
|
end
|
489
468
|
end
|
490
469
|
|
491
|
-
class
|
470
|
+
class GoogleCloudFunctionsV2alphaStateMessage
|
492
471
|
# @private
|
493
472
|
class Representation < Google::Apis::Core::JsonRepresentation
|
494
|
-
|
473
|
+
property :message, as: 'message'
|
474
|
+
property :severity, as: 'severity'
|
475
|
+
property :type, as: 'type'
|
495
476
|
end
|
496
477
|
end
|
497
478
|
|
@@ -580,13 +561,6 @@ module Google
|
|
580
561
|
end
|
581
562
|
end
|
582
563
|
|
583
|
-
class LocationMetadata
|
584
|
-
# @private
|
585
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
586
|
-
collection :environments, as: 'environments'
|
587
|
-
end
|
588
|
-
end
|
589
|
-
|
590
564
|
class Operation
|
591
565
|
# @private
|
592
566
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -677,19 +651,6 @@ module Google
|
|
677
651
|
end
|
678
652
|
end
|
679
653
|
|
680
|
-
class Stage
|
681
|
-
# @private
|
682
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
683
|
-
property :message, as: 'message'
|
684
|
-
property :name, as: 'name'
|
685
|
-
property :resource, as: 'resource'
|
686
|
-
property :resource_uri, as: 'resourceUri'
|
687
|
-
property :state, as: 'state'
|
688
|
-
collection :state_messages, as: 'stateMessages', class: Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2alphaStateMessage, decorator: Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2alphaStateMessage::Representation
|
689
|
-
|
690
|
-
end
|
691
|
-
end
|
692
|
-
|
693
654
|
class Status
|
694
655
|
# @private
|
695
656
|
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.38.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-04-
|
11
|
+
date: 2023-04-30 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.38.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: []
|