google-apis-cloudfunctions_v2 0.31.0 → 0.33.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: 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
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-cloudfunctions_v2
|
|
2
2
|
|
|
3
|
+
### v0.33.0 (2023-12-17)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20231207
|
|
6
|
+
|
|
7
|
+
### v0.32.0 (2023-12-10)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20231130
|
|
10
|
+
|
|
3
11
|
### v0.31.0 (2023-11-12)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20231102
|
|
@@ -384,6 +384,15 @@ module Google
|
|
|
384
384
|
# @return [String]
|
|
385
385
|
attr_accessor :retry_policy
|
|
386
386
|
|
|
387
|
+
# Optional. The hostname of the service that 1st Gen function should be observed.
|
|
388
|
+
# If no string is provided, the default service implementing the API will be
|
|
389
|
+
# used. For example, `storage.googleapis.com` is the default for all event types
|
|
390
|
+
# in the `google.storage` namespace. The field is only applicable to 1st Gen
|
|
391
|
+
# functions.
|
|
392
|
+
# Corresponds to the JSON property `service`
|
|
393
|
+
# @return [String]
|
|
394
|
+
attr_accessor :service
|
|
395
|
+
|
|
387
396
|
# Optional. The email of the trigger's service account. The service account must
|
|
388
397
|
# have permission to invoke Cloud Run services, the permission is `run.routes.
|
|
389
398
|
# invoke`. If empty, defaults to the Compute Engine default service account: ``
|
|
@@ -417,6 +426,7 @@ module Google
|
|
|
417
426
|
@event_type = args[:event_type] if args.key?(:event_type)
|
|
418
427
|
@pubsub_topic = args[:pubsub_topic] if args.key?(:pubsub_topic)
|
|
419
428
|
@retry_policy = args[:retry_policy] if args.key?(:retry_policy)
|
|
429
|
+
@service = args[:service] if args.key?(:service)
|
|
420
430
|
@service_account_email = args[:service_account_email] if args.key?(:service_account_email)
|
|
421
431
|
@trigger = args[:trigger] if args.key?(:trigger)
|
|
422
432
|
@trigger_region = args[:trigger_region] if args.key?(:trigger_region)
|
|
@@ -711,6 +721,11 @@ module Google
|
|
|
711
721
|
# @return [String]
|
|
712
722
|
attr_accessor :end_time
|
|
713
723
|
|
|
724
|
+
# The operation type.
|
|
725
|
+
# Corresponds to the JSON property `operationType`
|
|
726
|
+
# @return [String]
|
|
727
|
+
attr_accessor :operation_type
|
|
728
|
+
|
|
714
729
|
# The original request that started the operation.
|
|
715
730
|
# Corresponds to the JSON property `requestResource`
|
|
716
731
|
# @return [Hash<String,Object>]
|
|
@@ -752,6 +767,7 @@ module Google
|
|
|
752
767
|
@cancel_requested = args[:cancel_requested] if args.key?(:cancel_requested)
|
|
753
768
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
754
769
|
@end_time = args[:end_time] if args.key?(:end_time)
|
|
770
|
+
@operation_type = args[:operation_type] if args.key?(:operation_type)
|
|
755
771
|
@request_resource = args[:request_resource] if args.key?(:request_resource)
|
|
756
772
|
@source_token = args[:source_token] if args.key?(:source_token)
|
|
757
773
|
@stages = args[:stages] if args.key?(:stages)
|
|
@@ -888,6 +904,11 @@ module Google
|
|
|
888
904
|
# @return [String]
|
|
889
905
|
attr_accessor :end_time
|
|
890
906
|
|
|
907
|
+
# The operation type.
|
|
908
|
+
# Corresponds to the JSON property `operationType`
|
|
909
|
+
# @return [String]
|
|
910
|
+
attr_accessor :operation_type
|
|
911
|
+
|
|
891
912
|
# The original request that started the operation.
|
|
892
913
|
# Corresponds to the JSON property `requestResource`
|
|
893
914
|
# @return [Hash<String,Object>]
|
|
@@ -929,6 +950,7 @@ module Google
|
|
|
929
950
|
@cancel_requested = args[:cancel_requested] if args.key?(:cancel_requested)
|
|
930
951
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
931
952
|
@end_time = args[:end_time] if args.key?(:end_time)
|
|
953
|
+
@operation_type = args[:operation_type] if args.key?(:operation_type)
|
|
932
954
|
@request_resource = args[:request_resource] if args.key?(:request_resource)
|
|
933
955
|
@source_token = args[:source_token] if args.key?(:source_token)
|
|
934
956
|
@stages = args[:stages] if args.key?(:stages)
|
|
@@ -1065,6 +1087,11 @@ module Google
|
|
|
1065
1087
|
# @return [String]
|
|
1066
1088
|
attr_accessor :end_time
|
|
1067
1089
|
|
|
1090
|
+
# The operation type.
|
|
1091
|
+
# Corresponds to the JSON property `operationType`
|
|
1092
|
+
# @return [String]
|
|
1093
|
+
attr_accessor :operation_type
|
|
1094
|
+
|
|
1068
1095
|
# The original request that started the operation.
|
|
1069
1096
|
# Corresponds to the JSON property `requestResource`
|
|
1070
1097
|
# @return [Hash<String,Object>]
|
|
@@ -1106,6 +1133,7 @@ module Google
|
|
|
1106
1133
|
@cancel_requested = args[:cancel_requested] if args.key?(:cancel_requested)
|
|
1107
1134
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
1108
1135
|
@end_time = args[:end_time] if args.key?(:end_time)
|
|
1136
|
+
@operation_type = args[:operation_type] if args.key?(:operation_type)
|
|
1109
1137
|
@request_resource = args[:request_resource] if args.key?(:request_resource)
|
|
1110
1138
|
@source_token = args[:source_token] if args.key?(:source_token)
|
|
1111
1139
|
@stages = args[:stages] if args.key?(:stages)
|
|
@@ -1827,9 +1855,9 @@ module Google
|
|
|
1827
1855
|
attr_accessor :all_traffic_on_latest_revision
|
|
1828
1856
|
alias_method :all_traffic_on_latest_revision?, :all_traffic_on_latest_revision
|
|
1829
1857
|
|
|
1830
|
-
#
|
|
1831
|
-
#
|
|
1832
|
-
#
|
|
1858
|
+
# The number of CPUs used in a single container instance. Default value is
|
|
1859
|
+
# calculated from available memory. Supports the same values as Cloud Run, see
|
|
1860
|
+
# https://cloud.google.com/run/docs/reference/rest/v1/Container#
|
|
1833
1861
|
# resourcerequirements Example: "1" indicates 1 vCPU
|
|
1834
1862
|
# Corresponds to the JSON property `availableCpu`
|
|
1835
1863
|
# @return [String]
|
|
@@ -1864,8 +1892,8 @@ module Google
|
|
|
1864
1892
|
# @return [Fixnum]
|
|
1865
1893
|
attr_accessor :max_instance_count
|
|
1866
1894
|
|
|
1867
|
-
#
|
|
1868
|
-
#
|
|
1895
|
+
# Sets the maximum number of concurrent requests that each instance can receive.
|
|
1896
|
+
# Defaults to 1.
|
|
1869
1897
|
# Corresponds to the JSON property `maxInstanceRequestConcurrency`
|
|
1870
1898
|
# @return [Fixnum]
|
|
1871
1899
|
attr_accessor :max_instance_request_concurrency
|
|
@@ -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
|
|
@@ -370,6 +370,7 @@ module Google
|
|
|
370
370
|
property :event_type, as: 'eventType'
|
|
371
371
|
property :pubsub_topic, as: 'pubsubTopic'
|
|
372
372
|
property :retry_policy, as: 'retryPolicy'
|
|
373
|
+
property :service, as: 'service'
|
|
373
374
|
property :service_account_email, as: 'serviceAccountEmail'
|
|
374
375
|
property :trigger, as: 'trigger'
|
|
375
376
|
property :trigger_region, as: 'triggerRegion'
|
|
@@ -452,6 +453,7 @@ module Google
|
|
|
452
453
|
property :cancel_requested, as: 'cancelRequested'
|
|
453
454
|
property :create_time, as: 'createTime'
|
|
454
455
|
property :end_time, as: 'endTime'
|
|
456
|
+
property :operation_type, as: 'operationType'
|
|
455
457
|
hash :request_resource, as: 'requestResource'
|
|
456
458
|
property :source_token, as: 'sourceToken'
|
|
457
459
|
collection :stages, as: 'stages', class: Google::Apis::CloudfunctionsV2::GoogleCloudFunctionsV2Stage, decorator: Google::Apis::CloudfunctionsV2::GoogleCloudFunctionsV2Stage::Representation
|
|
@@ -498,6 +500,7 @@ module Google
|
|
|
498
500
|
property :cancel_requested, as: 'cancelRequested'
|
|
499
501
|
property :create_time, as: 'createTime'
|
|
500
502
|
property :end_time, as: 'endTime'
|
|
503
|
+
property :operation_type, as: 'operationType'
|
|
501
504
|
hash :request_resource, as: 'requestResource'
|
|
502
505
|
property :source_token, as: 'sourceToken'
|
|
503
506
|
collection :stages, as: 'stages', class: Google::Apis::CloudfunctionsV2::GoogleCloudFunctionsV2alphaStage, decorator: Google::Apis::CloudfunctionsV2::GoogleCloudFunctionsV2alphaStage::Representation
|
|
@@ -544,6 +547,7 @@ module Google
|
|
|
544
547
|
property :cancel_requested, as: 'cancelRequested'
|
|
545
548
|
property :create_time, as: 'createTime'
|
|
546
549
|
property :end_time, as: 'endTime'
|
|
550
|
+
property :operation_type, as: 'operationType'
|
|
547
551
|
hash :request_resource, as: 'requestResource'
|
|
548
552
|
property :source_token, as: 'sourceToken'
|
|
549
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-
|
|
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: []
|