google-apis-cloudfunctions_v1 0.18.0 → 0.21.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -0
- data/lib/google/apis/cloudfunctions_v1/classes.rb +329 -4
- data/lib/google/apis/cloudfunctions_v1/gem_version.rb +3 -3
- data/lib/google/apis/cloudfunctions_v1/representations.rb +114 -0
- data/lib/google/apis/cloudfunctions_v1/service.rb +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cd955c6566370295487022dc7b47777a303b89b369c08ac572b6d4c99f7ad264
|
4
|
+
data.tar.gz: 26d9125470911731c7b06f1b3d720980f01e5d0f6a4d8bff29fffd417b7f52a2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3a9dac3bdd37df84bb42fdaef767f268f3c6a46ab7748a6331f239aceb37763fd7d48b980851e4d3e32e34cd167f658d533d65ca75035b7ec4691c53e368a6a6
|
7
|
+
data.tar.gz: fadbed4b5dc1ed0d0c25f92e9af377e92a5667ab756858811ccc3caf6c36d0871df8c81a35b2ae40003be99531ad2164de4943b3cc5568853e6efe8ef39e294e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Release history for google-apis-cloudfunctions_v1
|
2
2
|
|
3
|
+
### v0.21.0 (2022-04-09)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220331
|
6
|
+
|
7
|
+
### v0.20.0 (2022-02-26)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220218
|
10
|
+
|
11
|
+
### v0.19.0 (2022-02-12)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220203
|
14
|
+
* Regenerated using generator version 0.4.1
|
15
|
+
|
3
16
|
### v0.18.0 (2021-12-14)
|
4
17
|
|
5
18
|
* Unspecified changes
|
@@ -217,7 +217,7 @@ module Google
|
|
217
217
|
end
|
218
218
|
|
219
219
|
# Describes a Cloud Function that contains user computation executed in response
|
220
|
-
# to an event. It encapsulate function and triggers configurations.
|
220
|
+
# to an event. It encapsulate function and triggers configurations.
|
221
221
|
class CloudFunction
|
222
222
|
include Google::Apis::Core::Hashable
|
223
223
|
|
@@ -260,6 +260,14 @@ module Google
|
|
260
260
|
# @return [String]
|
261
261
|
attr_accessor :description
|
262
262
|
|
263
|
+
# Docker Registry to use for this deployment. If `docker_repository` field is
|
264
|
+
# specified, this field will be automatically set as `ARTIFACT_REGISTRY`. If
|
265
|
+
# unspecified, it currently defaults to `CONTAINER_REGISTRY`. This field may be
|
266
|
+
# overridden by the backend for eligible deployments.
|
267
|
+
# Corresponds to the JSON property `dockerRegistry`
|
268
|
+
# @return [String]
|
269
|
+
attr_accessor :docker_registry
|
270
|
+
|
263
271
|
# User managed repository created in Artifact Registry optionally with a
|
264
272
|
# customer managed encryption key. If specified, deployments will use Artifact
|
265
273
|
# Registry. If unspecified and the deployment is eligible to use Artifact
|
@@ -467,6 +475,7 @@ module Google
|
|
467
475
|
@build_name = args[:build_name] if args.key?(:build_name)
|
468
476
|
@build_worker_pool = args[:build_worker_pool] if args.key?(:build_worker_pool)
|
469
477
|
@description = args[:description] if args.key?(:description)
|
478
|
+
@docker_registry = args[:docker_registry] if args.key?(:docker_registry)
|
470
479
|
@docker_repository = args[:docker_repository] if args.key?(:docker_repository)
|
471
480
|
@entry_point = args[:entry_point] if args.key?(:entry_point)
|
472
481
|
@environment_variables = args[:environment_variables] if args.key?(:environment_variables)
|
@@ -674,12 +683,29 @@ module Google
|
|
674
683
|
class GenerateUploadUrlRequest
|
675
684
|
include Google::Apis::Core::Hashable
|
676
685
|
|
686
|
+
# Resource name of a KMS crypto key (managed by the user) used to encrypt/
|
687
|
+
# decrypt function source code objects in staging Cloud Storage buckets. When
|
688
|
+
# you generate an upload url and upload your source code, it gets copied to a
|
689
|
+
# staging Cloud Storage bucket in an internal regional project. The source code
|
690
|
+
# is then copied to a versioned directory in the sources bucket in the consumer
|
691
|
+
# project during the function deployment. It must match the pattern `projects/`
|
692
|
+
# project`/locations/`location`/keyRings/`key_ring`/cryptoKeys/`crypto_key``.
|
693
|
+
# The Google Cloud Functions service account (service-`project_number`@gcf-admin-
|
694
|
+
# robot.iam.gserviceaccount.com) must be granted the role 'Cloud KMS CryptoKey
|
695
|
+
# Encrypter/Decrypter (roles/cloudkms.cryptoKeyEncrypterDecrypter)' on the Key/
|
696
|
+
# KeyRing/Project/Organization (least access preferred). GCF will delegate
|
697
|
+
# access to the Google Storage service account in the internal project.
|
698
|
+
# Corresponds to the JSON property `kmsKeyName`
|
699
|
+
# @return [String]
|
700
|
+
attr_accessor :kms_key_name
|
701
|
+
|
677
702
|
def initialize(**args)
|
678
703
|
update!(**args)
|
679
704
|
end
|
680
705
|
|
681
706
|
# Update properties of this object
|
682
707
|
def update!(**args)
|
708
|
+
@kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name)
|
683
709
|
end
|
684
710
|
end
|
685
711
|
|
@@ -704,6 +730,306 @@ module Google
|
|
704
730
|
end
|
705
731
|
end
|
706
732
|
|
733
|
+
# Represents the metadata of the long-running operation.
|
734
|
+
class GoogleCloudFunctionsV2alphaOperationMetadata
|
735
|
+
include Google::Apis::Core::Hashable
|
736
|
+
|
737
|
+
# API version used to start the operation.
|
738
|
+
# Corresponds to the JSON property `apiVersion`
|
739
|
+
# @return [String]
|
740
|
+
attr_accessor :api_version
|
741
|
+
|
742
|
+
# Identifies whether the user has requested cancellation of the operation.
|
743
|
+
# Operations that have successfully been cancelled have Operation.error value
|
744
|
+
# with a google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
|
745
|
+
# Corresponds to the JSON property `cancelRequested`
|
746
|
+
# @return [Boolean]
|
747
|
+
attr_accessor :cancel_requested
|
748
|
+
alias_method :cancel_requested?, :cancel_requested
|
749
|
+
|
750
|
+
# The time the operation was created.
|
751
|
+
# Corresponds to the JSON property `createTime`
|
752
|
+
# @return [String]
|
753
|
+
attr_accessor :create_time
|
754
|
+
|
755
|
+
# The time the operation finished running.
|
756
|
+
# Corresponds to the JSON property `endTime`
|
757
|
+
# @return [String]
|
758
|
+
attr_accessor :end_time
|
759
|
+
|
760
|
+
# The original request that started the operation.
|
761
|
+
# Corresponds to the JSON property `requestResource`
|
762
|
+
# @return [Hash<String,Object>]
|
763
|
+
attr_accessor :request_resource
|
764
|
+
|
765
|
+
# Mechanism for reporting in-progress stages
|
766
|
+
# Corresponds to the JSON property `stages`
|
767
|
+
# @return [Array<Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2alphaStage>]
|
768
|
+
attr_accessor :stages
|
769
|
+
|
770
|
+
# Human-readable status of the operation, if any.
|
771
|
+
# Corresponds to the JSON property `statusDetail`
|
772
|
+
# @return [String]
|
773
|
+
attr_accessor :status_detail
|
774
|
+
|
775
|
+
# Server-defined resource path for the target of the operation.
|
776
|
+
# Corresponds to the JSON property `target`
|
777
|
+
# @return [String]
|
778
|
+
attr_accessor :target
|
779
|
+
|
780
|
+
# Name of the verb executed by the operation.
|
781
|
+
# Corresponds to the JSON property `verb`
|
782
|
+
# @return [String]
|
783
|
+
attr_accessor :verb
|
784
|
+
|
785
|
+
def initialize(**args)
|
786
|
+
update!(**args)
|
787
|
+
end
|
788
|
+
|
789
|
+
# Update properties of this object
|
790
|
+
def update!(**args)
|
791
|
+
@api_version = args[:api_version] if args.key?(:api_version)
|
792
|
+
@cancel_requested = args[:cancel_requested] if args.key?(:cancel_requested)
|
793
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
794
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
795
|
+
@request_resource = args[:request_resource] if args.key?(:request_resource)
|
796
|
+
@stages = args[:stages] if args.key?(:stages)
|
797
|
+
@status_detail = args[:status_detail] if args.key?(:status_detail)
|
798
|
+
@target = args[:target] if args.key?(:target)
|
799
|
+
@verb = args[:verb] if args.key?(:verb)
|
800
|
+
end
|
801
|
+
end
|
802
|
+
|
803
|
+
# Each Stage of the deployment process
|
804
|
+
class GoogleCloudFunctionsV2alphaStage
|
805
|
+
include Google::Apis::Core::Hashable
|
806
|
+
|
807
|
+
# Message describing the Stage
|
808
|
+
# Corresponds to the JSON property `message`
|
809
|
+
# @return [String]
|
810
|
+
attr_accessor :message
|
811
|
+
|
812
|
+
# Name of the Stage. This will be unique for each Stage.
|
813
|
+
# Corresponds to the JSON property `name`
|
814
|
+
# @return [String]
|
815
|
+
attr_accessor :name
|
816
|
+
|
817
|
+
# Resource of the Stage
|
818
|
+
# Corresponds to the JSON property `resource`
|
819
|
+
# @return [String]
|
820
|
+
attr_accessor :resource
|
821
|
+
|
822
|
+
# Link to the current Stage resource
|
823
|
+
# Corresponds to the JSON property `resourceUri`
|
824
|
+
# @return [String]
|
825
|
+
attr_accessor :resource_uri
|
826
|
+
|
827
|
+
# Current state of the Stage
|
828
|
+
# Corresponds to the JSON property `state`
|
829
|
+
# @return [String]
|
830
|
+
attr_accessor :state
|
831
|
+
|
832
|
+
# State messages from the current Stage.
|
833
|
+
# Corresponds to the JSON property `stateMessages`
|
834
|
+
# @return [Array<Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2alphaStateMessage>]
|
835
|
+
attr_accessor :state_messages
|
836
|
+
|
837
|
+
def initialize(**args)
|
838
|
+
update!(**args)
|
839
|
+
end
|
840
|
+
|
841
|
+
# Update properties of this object
|
842
|
+
def update!(**args)
|
843
|
+
@message = args[:message] if args.key?(:message)
|
844
|
+
@name = args[:name] if args.key?(:name)
|
845
|
+
@resource = args[:resource] if args.key?(:resource)
|
846
|
+
@resource_uri = args[:resource_uri] if args.key?(:resource_uri)
|
847
|
+
@state = args[:state] if args.key?(:state)
|
848
|
+
@state_messages = args[:state_messages] if args.key?(:state_messages)
|
849
|
+
end
|
850
|
+
end
|
851
|
+
|
852
|
+
# Informational messages about the state of the Cloud Function or Operation.
|
853
|
+
class GoogleCloudFunctionsV2alphaStateMessage
|
854
|
+
include Google::Apis::Core::Hashable
|
855
|
+
|
856
|
+
# The message.
|
857
|
+
# Corresponds to the JSON property `message`
|
858
|
+
# @return [String]
|
859
|
+
attr_accessor :message
|
860
|
+
|
861
|
+
# Severity of the state message.
|
862
|
+
# Corresponds to the JSON property `severity`
|
863
|
+
# @return [String]
|
864
|
+
attr_accessor :severity
|
865
|
+
|
866
|
+
# One-word CamelCase type of the state message.
|
867
|
+
# Corresponds to the JSON property `type`
|
868
|
+
# @return [String]
|
869
|
+
attr_accessor :type
|
870
|
+
|
871
|
+
def initialize(**args)
|
872
|
+
update!(**args)
|
873
|
+
end
|
874
|
+
|
875
|
+
# Update properties of this object
|
876
|
+
def update!(**args)
|
877
|
+
@message = args[:message] if args.key?(:message)
|
878
|
+
@severity = args[:severity] if args.key?(:severity)
|
879
|
+
@type = args[:type] if args.key?(:type)
|
880
|
+
end
|
881
|
+
end
|
882
|
+
|
883
|
+
# Represents the metadata of the long-running operation.
|
884
|
+
class GoogleCloudFunctionsV2betaOperationMetadata
|
885
|
+
include Google::Apis::Core::Hashable
|
886
|
+
|
887
|
+
# API version used to start the operation.
|
888
|
+
# Corresponds to the JSON property `apiVersion`
|
889
|
+
# @return [String]
|
890
|
+
attr_accessor :api_version
|
891
|
+
|
892
|
+
# Identifies whether the user has requested cancellation of the operation.
|
893
|
+
# Operations that have successfully been cancelled have Operation.error value
|
894
|
+
# with a google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
|
895
|
+
# Corresponds to the JSON property `cancelRequested`
|
896
|
+
# @return [Boolean]
|
897
|
+
attr_accessor :cancel_requested
|
898
|
+
alias_method :cancel_requested?, :cancel_requested
|
899
|
+
|
900
|
+
# The time the operation was created.
|
901
|
+
# Corresponds to the JSON property `createTime`
|
902
|
+
# @return [String]
|
903
|
+
attr_accessor :create_time
|
904
|
+
|
905
|
+
# The time the operation finished running.
|
906
|
+
# Corresponds to the JSON property `endTime`
|
907
|
+
# @return [String]
|
908
|
+
attr_accessor :end_time
|
909
|
+
|
910
|
+
# The original request that started the operation.
|
911
|
+
# Corresponds to the JSON property `requestResource`
|
912
|
+
# @return [Hash<String,Object>]
|
913
|
+
attr_accessor :request_resource
|
914
|
+
|
915
|
+
# Mechanism for reporting in-progress stages
|
916
|
+
# Corresponds to the JSON property `stages`
|
917
|
+
# @return [Array<Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2betaStage>]
|
918
|
+
attr_accessor :stages
|
919
|
+
|
920
|
+
# Human-readable status of the operation, if any.
|
921
|
+
# Corresponds to the JSON property `statusDetail`
|
922
|
+
# @return [String]
|
923
|
+
attr_accessor :status_detail
|
924
|
+
|
925
|
+
# Server-defined resource path for the target of the operation.
|
926
|
+
# Corresponds to the JSON property `target`
|
927
|
+
# @return [String]
|
928
|
+
attr_accessor :target
|
929
|
+
|
930
|
+
# Name of the verb executed by the operation.
|
931
|
+
# Corresponds to the JSON property `verb`
|
932
|
+
# @return [String]
|
933
|
+
attr_accessor :verb
|
934
|
+
|
935
|
+
def initialize(**args)
|
936
|
+
update!(**args)
|
937
|
+
end
|
938
|
+
|
939
|
+
# Update properties of this object
|
940
|
+
def update!(**args)
|
941
|
+
@api_version = args[:api_version] if args.key?(:api_version)
|
942
|
+
@cancel_requested = args[:cancel_requested] if args.key?(:cancel_requested)
|
943
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
944
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
945
|
+
@request_resource = args[:request_resource] if args.key?(:request_resource)
|
946
|
+
@stages = args[:stages] if args.key?(:stages)
|
947
|
+
@status_detail = args[:status_detail] if args.key?(:status_detail)
|
948
|
+
@target = args[:target] if args.key?(:target)
|
949
|
+
@verb = args[:verb] if args.key?(:verb)
|
950
|
+
end
|
951
|
+
end
|
952
|
+
|
953
|
+
# Each Stage of the deployment process
|
954
|
+
class GoogleCloudFunctionsV2betaStage
|
955
|
+
include Google::Apis::Core::Hashable
|
956
|
+
|
957
|
+
# Message describing the Stage
|
958
|
+
# Corresponds to the JSON property `message`
|
959
|
+
# @return [String]
|
960
|
+
attr_accessor :message
|
961
|
+
|
962
|
+
# Name of the Stage. This will be unique for each Stage.
|
963
|
+
# Corresponds to the JSON property `name`
|
964
|
+
# @return [String]
|
965
|
+
attr_accessor :name
|
966
|
+
|
967
|
+
# Resource of the Stage
|
968
|
+
# Corresponds to the JSON property `resource`
|
969
|
+
# @return [String]
|
970
|
+
attr_accessor :resource
|
971
|
+
|
972
|
+
# Link to the current Stage resource
|
973
|
+
# Corresponds to the JSON property `resourceUri`
|
974
|
+
# @return [String]
|
975
|
+
attr_accessor :resource_uri
|
976
|
+
|
977
|
+
# Current state of the Stage
|
978
|
+
# Corresponds to the JSON property `state`
|
979
|
+
# @return [String]
|
980
|
+
attr_accessor :state
|
981
|
+
|
982
|
+
# State messages from the current Stage.
|
983
|
+
# Corresponds to the JSON property `stateMessages`
|
984
|
+
# @return [Array<Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2betaStateMessage>]
|
985
|
+
attr_accessor :state_messages
|
986
|
+
|
987
|
+
def initialize(**args)
|
988
|
+
update!(**args)
|
989
|
+
end
|
990
|
+
|
991
|
+
# Update properties of this object
|
992
|
+
def update!(**args)
|
993
|
+
@message = args[:message] if args.key?(:message)
|
994
|
+
@name = args[:name] if args.key?(:name)
|
995
|
+
@resource = args[:resource] if args.key?(:resource)
|
996
|
+
@resource_uri = args[:resource_uri] if args.key?(:resource_uri)
|
997
|
+
@state = args[:state] if args.key?(:state)
|
998
|
+
@state_messages = args[:state_messages] if args.key?(:state_messages)
|
999
|
+
end
|
1000
|
+
end
|
1001
|
+
|
1002
|
+
# Informational messages about the state of the Cloud Function or Operation.
|
1003
|
+
class GoogleCloudFunctionsV2betaStateMessage
|
1004
|
+
include Google::Apis::Core::Hashable
|
1005
|
+
|
1006
|
+
# The message.
|
1007
|
+
# Corresponds to the JSON property `message`
|
1008
|
+
# @return [String]
|
1009
|
+
attr_accessor :message
|
1010
|
+
|
1011
|
+
# Severity of the state message.
|
1012
|
+
# Corresponds to the JSON property `severity`
|
1013
|
+
# @return [String]
|
1014
|
+
attr_accessor :severity
|
1015
|
+
|
1016
|
+
# One-word CamelCase type of the state message.
|
1017
|
+
# Corresponds to the JSON property `type`
|
1018
|
+
# @return [String]
|
1019
|
+
attr_accessor :type
|
1020
|
+
|
1021
|
+
def initialize(**args)
|
1022
|
+
update!(**args)
|
1023
|
+
end
|
1024
|
+
|
1025
|
+
# Update properties of this object
|
1026
|
+
def update!(**args)
|
1027
|
+
@message = args[:message] if args.key?(:message)
|
1028
|
+
@severity = args[:severity] if args.key?(:severity)
|
1029
|
+
@type = args[:type] if args.key?(:type)
|
1030
|
+
end
|
1031
|
+
end
|
1032
|
+
|
707
1033
|
# Describes HttpsTrigger, could be used to connect web hooks to function.
|
708
1034
|
class HttpsTrigger
|
709
1035
|
include Google::Apis::Core::Hashable
|
@@ -1101,8 +1427,7 @@ module Google
|
|
1101
1427
|
|
1102
1428
|
# Configuration for a secret environment variable. It has the information
|
1103
1429
|
# necessary to fetch the secret value from secret manager and expose it as an
|
1104
|
-
# environment variable.
|
1105
|
-
# values are only fetched when a new clone starts.
|
1430
|
+
# environment variable.
|
1106
1431
|
class SecretEnvVar
|
1107
1432
|
include Google::Apis::Core::Hashable
|
1108
1433
|
|
@@ -1126,7 +1451,7 @@ module Google
|
|
1126
1451
|
|
1127
1452
|
# Version of the secret (version number or the string 'latest'). It is
|
1128
1453
|
# recommended to use a numeric version for secret environment variables as any
|
1129
|
-
# updates to the secret value is not reflected until new
|
1454
|
+
# updates to the secret value is not reflected until new instances start.
|
1130
1455
|
# Corresponds to the JSON property `version`
|
1131
1456
|
# @return [String]
|
1132
1457
|
attr_accessor :version
|
@@ -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.21.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.4.
|
22
|
+
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220331"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -100,6 +100,42 @@ module Google
|
|
100
100
|
include Google::Apis::Core::JsonObjectSupport
|
101
101
|
end
|
102
102
|
|
103
|
+
class GoogleCloudFunctionsV2alphaOperationMetadata
|
104
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
105
|
+
|
106
|
+
include Google::Apis::Core::JsonObjectSupport
|
107
|
+
end
|
108
|
+
|
109
|
+
class GoogleCloudFunctionsV2alphaStage
|
110
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
111
|
+
|
112
|
+
include Google::Apis::Core::JsonObjectSupport
|
113
|
+
end
|
114
|
+
|
115
|
+
class GoogleCloudFunctionsV2alphaStateMessage
|
116
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
117
|
+
|
118
|
+
include Google::Apis::Core::JsonObjectSupport
|
119
|
+
end
|
120
|
+
|
121
|
+
class GoogleCloudFunctionsV2betaOperationMetadata
|
122
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
123
|
+
|
124
|
+
include Google::Apis::Core::JsonObjectSupport
|
125
|
+
end
|
126
|
+
|
127
|
+
class GoogleCloudFunctionsV2betaStage
|
128
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
|
+
|
130
|
+
include Google::Apis::Core::JsonObjectSupport
|
131
|
+
end
|
132
|
+
|
133
|
+
class GoogleCloudFunctionsV2betaStateMessage
|
134
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
135
|
+
|
136
|
+
include Google::Apis::Core::JsonObjectSupport
|
137
|
+
end
|
138
|
+
|
103
139
|
class HttpsTrigger
|
104
140
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
105
141
|
|
@@ -254,6 +290,7 @@ module Google
|
|
254
290
|
property :build_name, as: 'buildName'
|
255
291
|
property :build_worker_pool, as: 'buildWorkerPool'
|
256
292
|
property :description, as: 'description'
|
293
|
+
property :docker_registry, as: 'dockerRegistry'
|
257
294
|
property :docker_repository, as: 'dockerRepository'
|
258
295
|
property :entry_point, as: 'entryPoint'
|
259
296
|
hash :environment_variables, as: 'environmentVariables'
|
@@ -334,6 +371,7 @@ module Google
|
|
334
371
|
class GenerateUploadUrlRequest
|
335
372
|
# @private
|
336
373
|
class Representation < Google::Apis::Core::JsonRepresentation
|
374
|
+
property :kms_key_name, as: 'kmsKeyName'
|
337
375
|
end
|
338
376
|
end
|
339
377
|
|
@@ -344,6 +382,82 @@ module Google
|
|
344
382
|
end
|
345
383
|
end
|
346
384
|
|
385
|
+
class GoogleCloudFunctionsV2alphaOperationMetadata
|
386
|
+
# @private
|
387
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
388
|
+
property :api_version, as: 'apiVersion'
|
389
|
+
property :cancel_requested, as: 'cancelRequested'
|
390
|
+
property :create_time, as: 'createTime'
|
391
|
+
property :end_time, as: 'endTime'
|
392
|
+
hash :request_resource, as: 'requestResource'
|
393
|
+
collection :stages, as: 'stages', class: Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2alphaStage, decorator: Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2alphaStage::Representation
|
394
|
+
|
395
|
+
property :status_detail, as: 'statusDetail'
|
396
|
+
property :target, as: 'target'
|
397
|
+
property :verb, as: 'verb'
|
398
|
+
end
|
399
|
+
end
|
400
|
+
|
401
|
+
class GoogleCloudFunctionsV2alphaStage
|
402
|
+
# @private
|
403
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
404
|
+
property :message, as: 'message'
|
405
|
+
property :name, as: 'name'
|
406
|
+
property :resource, as: 'resource'
|
407
|
+
property :resource_uri, as: 'resourceUri'
|
408
|
+
property :state, as: 'state'
|
409
|
+
collection :state_messages, as: 'stateMessages', class: Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2alphaStateMessage, decorator: Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2alphaStateMessage::Representation
|
410
|
+
|
411
|
+
end
|
412
|
+
end
|
413
|
+
|
414
|
+
class GoogleCloudFunctionsV2alphaStateMessage
|
415
|
+
# @private
|
416
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
417
|
+
property :message, as: 'message'
|
418
|
+
property :severity, as: 'severity'
|
419
|
+
property :type, as: 'type'
|
420
|
+
end
|
421
|
+
end
|
422
|
+
|
423
|
+
class GoogleCloudFunctionsV2betaOperationMetadata
|
424
|
+
# @private
|
425
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
426
|
+
property :api_version, as: 'apiVersion'
|
427
|
+
property :cancel_requested, as: 'cancelRequested'
|
428
|
+
property :create_time, as: 'createTime'
|
429
|
+
property :end_time, as: 'endTime'
|
430
|
+
hash :request_resource, as: 'requestResource'
|
431
|
+
collection :stages, as: 'stages', class: Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2betaStage, decorator: Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2betaStage::Representation
|
432
|
+
|
433
|
+
property :status_detail, as: 'statusDetail'
|
434
|
+
property :target, as: 'target'
|
435
|
+
property :verb, as: 'verb'
|
436
|
+
end
|
437
|
+
end
|
438
|
+
|
439
|
+
class GoogleCloudFunctionsV2betaStage
|
440
|
+
# @private
|
441
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
442
|
+
property :message, as: 'message'
|
443
|
+
property :name, as: 'name'
|
444
|
+
property :resource, as: 'resource'
|
445
|
+
property :resource_uri, as: 'resourceUri'
|
446
|
+
property :state, as: 'state'
|
447
|
+
collection :state_messages, as: 'stateMessages', class: Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2betaStateMessage, decorator: Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2betaStateMessage::Representation
|
448
|
+
|
449
|
+
end
|
450
|
+
end
|
451
|
+
|
452
|
+
class GoogleCloudFunctionsV2betaStateMessage
|
453
|
+
# @private
|
454
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
455
|
+
property :message, as: 'message'
|
456
|
+
property :severity, as: 'severity'
|
457
|
+
property :type, as: 'type'
|
458
|
+
end
|
459
|
+
end
|
460
|
+
|
347
461
|
class HttpsTrigger
|
348
462
|
# @private
|
349
463
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -137,8 +137,8 @@ module Google
|
|
137
137
|
# The resource that owns the locations collection, if applicable.
|
138
138
|
# @param [String] filter
|
139
139
|
# A filter to narrow down results to a preferred subset. The filtering language
|
140
|
-
# accepts strings like "displayName=tokyo"
|
141
|
-
# AIP-160](https://google.aip.dev/160).
|
140
|
+
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
141
|
+
# in [AIP-160](https://google.aip.dev/160).
|
142
142
|
# @param [Fixnum] page_size
|
143
143
|
# The maximum number of results to return. If not set, the service selects a
|
144
144
|
# default.
|
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.21.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-04-11 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.21.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: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.3.
|
78
|
+
rubygems_version: 3.3.5
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Functions API V1
|