google-apis-cloudfunctions_v2 0.32.0 → 0.33.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: 1bad2517dae720751f83cb7e67164f1b13a19dda34461e6e5af7522754fa97b4
|
4
|
+
data.tar.gz: d67230e49aafe432258c49e18b2da3f148ba4b26eebdbead0982b483f8262b9f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 628f87a68bc1225ce02991d26121b32f6c13c23b61613243123841a06f2bb05af1ae3b9264b85e07f406a421559c31d905df0f4e154f70d1c29157147d4a4a8b
|
7
|
+
data.tar.gz: b4ac171a7ddf23ab86fc406492547f615efd4441650f366faf0c3a42a664be44c5be1d9b97b4e1982d56ac468286bc12b180da73e63a6aadc8063f2018491ca2
|
data/CHANGELOG.md
CHANGED
@@ -721,6 +721,11 @@ module Google
|
|
721
721
|
# @return [String]
|
722
722
|
attr_accessor :end_time
|
723
723
|
|
724
|
+
# The operation type.
|
725
|
+
# Corresponds to the JSON property `operationType`
|
726
|
+
# @return [String]
|
727
|
+
attr_accessor :operation_type
|
728
|
+
|
724
729
|
# The original request that started the operation.
|
725
730
|
# Corresponds to the JSON property `requestResource`
|
726
731
|
# @return [Hash<String,Object>]
|
@@ -762,6 +767,7 @@ module Google
|
|
762
767
|
@cancel_requested = args[:cancel_requested] if args.key?(:cancel_requested)
|
763
768
|
@create_time = args[:create_time] if args.key?(:create_time)
|
764
769
|
@end_time = args[:end_time] if args.key?(:end_time)
|
770
|
+
@operation_type = args[:operation_type] if args.key?(:operation_type)
|
765
771
|
@request_resource = args[:request_resource] if args.key?(:request_resource)
|
766
772
|
@source_token = args[:source_token] if args.key?(:source_token)
|
767
773
|
@stages = args[:stages] if args.key?(:stages)
|
@@ -898,6 +904,11 @@ module Google
|
|
898
904
|
# @return [String]
|
899
905
|
attr_accessor :end_time
|
900
906
|
|
907
|
+
# The operation type.
|
908
|
+
# Corresponds to the JSON property `operationType`
|
909
|
+
# @return [String]
|
910
|
+
attr_accessor :operation_type
|
911
|
+
|
901
912
|
# The original request that started the operation.
|
902
913
|
# Corresponds to the JSON property `requestResource`
|
903
914
|
# @return [Hash<String,Object>]
|
@@ -939,6 +950,7 @@ module Google
|
|
939
950
|
@cancel_requested = args[:cancel_requested] if args.key?(:cancel_requested)
|
940
951
|
@create_time = args[:create_time] if args.key?(:create_time)
|
941
952
|
@end_time = args[:end_time] if args.key?(:end_time)
|
953
|
+
@operation_type = args[:operation_type] if args.key?(:operation_type)
|
942
954
|
@request_resource = args[:request_resource] if args.key?(:request_resource)
|
943
955
|
@source_token = args[:source_token] if args.key?(:source_token)
|
944
956
|
@stages = args[:stages] if args.key?(:stages)
|
@@ -1075,6 +1087,11 @@ module Google
|
|
1075
1087
|
# @return [String]
|
1076
1088
|
attr_accessor :end_time
|
1077
1089
|
|
1090
|
+
# The operation type.
|
1091
|
+
# Corresponds to the JSON property `operationType`
|
1092
|
+
# @return [String]
|
1093
|
+
attr_accessor :operation_type
|
1094
|
+
|
1078
1095
|
# The original request that started the operation.
|
1079
1096
|
# Corresponds to the JSON property `requestResource`
|
1080
1097
|
# @return [Hash<String,Object>]
|
@@ -1116,6 +1133,7 @@ module Google
|
|
1116
1133
|
@cancel_requested = args[:cancel_requested] if args.key?(:cancel_requested)
|
1117
1134
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1118
1135
|
@end_time = args[:end_time] if args.key?(:end_time)
|
1136
|
+
@operation_type = args[:operation_type] if args.key?(:operation_type)
|
1119
1137
|
@request_resource = args[:request_resource] if args.key?(:request_resource)
|
1120
1138
|
@source_token = args[:source_token] if args.key?(:source_token)
|
1121
1139
|
@stages = args[:stages] if args.key?(:stages)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module CloudfunctionsV2
|
18
18
|
# Version of the google-apis-cloudfunctions_v2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.33.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 = "20231207"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -453,6 +453,7 @@ module Google
|
|
453
453
|
property :cancel_requested, as: 'cancelRequested'
|
454
454
|
property :create_time, as: 'createTime'
|
455
455
|
property :end_time, as: 'endTime'
|
456
|
+
property :operation_type, as: 'operationType'
|
456
457
|
hash :request_resource, as: 'requestResource'
|
457
458
|
property :source_token, as: 'sourceToken'
|
458
459
|
collection :stages, as: 'stages', class: Google::Apis::CloudfunctionsV2::GoogleCloudFunctionsV2Stage, decorator: Google::Apis::CloudfunctionsV2::GoogleCloudFunctionsV2Stage::Representation
|
@@ -499,6 +500,7 @@ module Google
|
|
499
500
|
property :cancel_requested, as: 'cancelRequested'
|
500
501
|
property :create_time, as: 'createTime'
|
501
502
|
property :end_time, as: 'endTime'
|
503
|
+
property :operation_type, as: 'operationType'
|
502
504
|
hash :request_resource, as: 'requestResource'
|
503
505
|
property :source_token, as: 'sourceToken'
|
504
506
|
collection :stages, as: 'stages', class: Google::Apis::CloudfunctionsV2::GoogleCloudFunctionsV2alphaStage, decorator: Google::Apis::CloudfunctionsV2::GoogleCloudFunctionsV2alphaStage::Representation
|
@@ -545,6 +547,7 @@ module Google
|
|
545
547
|
property :cancel_requested, as: 'cancelRequested'
|
546
548
|
property :create_time, as: 'createTime'
|
547
549
|
property :end_time, as: 'endTime'
|
550
|
+
property :operation_type, as: 'operationType'
|
548
551
|
hash :request_resource, as: 'requestResource'
|
549
552
|
property :source_token, as: 'sourceToken'
|
550
553
|
collection :stages, as: 'stages', class: Google::Apis::CloudfunctionsV2::GoogleCloudFunctionsV2betaStage, decorator: Google::Apis::CloudfunctionsV2::GoogleCloudFunctionsV2betaStage::Representation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-cloudfunctions_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.33.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-12-
|
11
|
+
date: 2023-12-17 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_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v2/v0.33.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudfunctions_v2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|