google-apis-cloudfunctions_v2 0.59.0 → 0.60.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: 0231abe07f2030cae4b84460d13d12cf82a67a8ba9477cddc5ad6353f3e68acd
|
|
4
|
+
data.tar.gz: e781ff7dc3bf654c3ec148cb91f7b414d08694a7ba7ae8a9338f27d0f3bd33bb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1c90e3fae56b71cba8171618f533edbc1d0c8e52734a8d39d2af0ac40261b483c73b8d7fc900f167361e82076938e3895c051cfeee9873db690c930931b99fa3
|
|
7
|
+
data.tar.gz: d975bad06bf82ed84648705c1e10a4238604d88032a2d9365c6d3862161b1e0e7fcd1aa002698d85417d622acf5b41c1c3c721b1c0e58820981988bc9242fa20
|
data/CHANGELOG.md
CHANGED
|
@@ -449,6 +449,44 @@ module Google
|
|
|
449
449
|
end
|
|
450
450
|
end
|
|
451
451
|
|
|
452
|
+
# The Direct VPC network interface. This is mutually exclusive with VPC
|
|
453
|
+
# Connector.
|
|
454
|
+
class DirectVpcNetworkInterface
|
|
455
|
+
include Google::Apis::Core::Hashable
|
|
456
|
+
|
|
457
|
+
# Optional. The name of the VPC network to which the function will be connected.
|
|
458
|
+
# Specify either a VPC network or a subnet, or both. If you specify only a
|
|
459
|
+
# network, the subnet uses the same name as the network.
|
|
460
|
+
# Corresponds to the JSON property `network`
|
|
461
|
+
# @return [String]
|
|
462
|
+
attr_accessor :network
|
|
463
|
+
|
|
464
|
+
# Optional. The name of the VPC subnetwork that the Cloud Function resource will
|
|
465
|
+
# get IPs from. Specify either a VPC network or a subnet, or both. If both
|
|
466
|
+
# network and subnetwork are specified, the given VPC subnetwork must belong to
|
|
467
|
+
# the given VPC network. If subnetwork is not specified, the subnetwork with the
|
|
468
|
+
# same name with the network will be used.
|
|
469
|
+
# Corresponds to the JSON property `subnetwork`
|
|
470
|
+
# @return [String]
|
|
471
|
+
attr_accessor :subnetwork
|
|
472
|
+
|
|
473
|
+
# Optional. Network tags applied to this Cloud Function resource.
|
|
474
|
+
# Corresponds to the JSON property `tags`
|
|
475
|
+
# @return [Array<String>]
|
|
476
|
+
attr_accessor :tags
|
|
477
|
+
|
|
478
|
+
def initialize(**args)
|
|
479
|
+
update!(**args)
|
|
480
|
+
end
|
|
481
|
+
|
|
482
|
+
# Update properties of this object
|
|
483
|
+
def update!(**args)
|
|
484
|
+
@network = args[:network] if args.key?(:network)
|
|
485
|
+
@subnetwork = args[:subnetwork] if args.key?(:subnetwork)
|
|
486
|
+
@tags = args[:tags] if args.key?(:tags)
|
|
487
|
+
end
|
|
488
|
+
end
|
|
489
|
+
|
|
452
490
|
# Filters events based on exact matches on the CloudEvents attributes.
|
|
453
491
|
class EventFilter
|
|
454
492
|
include Google::Apis::Core::Hashable
|
|
@@ -1744,6 +1782,18 @@ module Google
|
|
|
1744
1782
|
# @return [String]
|
|
1745
1783
|
attr_accessor :binary_authorization_policy
|
|
1746
1784
|
|
|
1785
|
+
# Optional. Egress settings for direct VPC. If not provided, it defaults to
|
|
1786
|
+
# VPC_EGRESS_PRIVATE_RANGES_ONLY.
|
|
1787
|
+
# Corresponds to the JSON property `directVpcEgress`
|
|
1788
|
+
# @return [String]
|
|
1789
|
+
attr_accessor :direct_vpc_egress
|
|
1790
|
+
|
|
1791
|
+
# Optional. The Direct VPC network interface for the Cloud Function. Currently
|
|
1792
|
+
# only a single Direct VPC is supported.
|
|
1793
|
+
# Corresponds to the JSON property `directVpcNetworkInterface`
|
|
1794
|
+
# @return [Array<Google::Apis::CloudfunctionsV2::DirectVpcNetworkInterface>]
|
|
1795
|
+
attr_accessor :direct_vpc_network_interface
|
|
1796
|
+
|
|
1747
1797
|
# Environment variables that shall be available during function execution.
|
|
1748
1798
|
# Corresponds to the JSON property `environmentVariables`
|
|
1749
1799
|
# @return [Hash<String,String>]
|
|
@@ -1851,6 +1901,8 @@ module Google
|
|
|
1851
1901
|
@available_cpu = args[:available_cpu] if args.key?(:available_cpu)
|
|
1852
1902
|
@available_memory = args[:available_memory] if args.key?(:available_memory)
|
|
1853
1903
|
@binary_authorization_policy = args[:binary_authorization_policy] if args.key?(:binary_authorization_policy)
|
|
1904
|
+
@direct_vpc_egress = args[:direct_vpc_egress] if args.key?(:direct_vpc_egress)
|
|
1905
|
+
@direct_vpc_network_interface = args[:direct_vpc_network_interface] if args.key?(:direct_vpc_network_interface)
|
|
1854
1906
|
@environment_variables = args[:environment_variables] if args.key?(:environment_variables)
|
|
1855
1907
|
@ingress_settings = args[:ingress_settings] if args.key?(:ingress_settings)
|
|
1856
1908
|
@max_instance_count = args[:max_instance_count] if args.key?(:max_instance_count)
|
|
@@ -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.60.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260205"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -88,6 +88,12 @@ module Google
|
|
|
88
88
|
include Google::Apis::Core::JsonObjectSupport
|
|
89
89
|
end
|
|
90
90
|
|
|
91
|
+
class DirectVpcNetworkInterface
|
|
92
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
93
|
+
|
|
94
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
95
|
+
end
|
|
96
|
+
|
|
91
97
|
class EventFilter
|
|
92
98
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
93
99
|
|
|
@@ -418,6 +424,15 @@ module Google
|
|
|
418
424
|
end
|
|
419
425
|
end
|
|
420
426
|
|
|
427
|
+
class DirectVpcNetworkInterface
|
|
428
|
+
# @private
|
|
429
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
430
|
+
property :network, as: 'network'
|
|
431
|
+
property :subnetwork, as: 'subnetwork'
|
|
432
|
+
collection :tags, as: 'tags'
|
|
433
|
+
end
|
|
434
|
+
end
|
|
435
|
+
|
|
421
436
|
class EventFilter
|
|
422
437
|
# @private
|
|
423
438
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -727,6 +742,9 @@ module Google
|
|
|
727
742
|
property :available_cpu, as: 'availableCpu'
|
|
728
743
|
property :available_memory, as: 'availableMemory'
|
|
729
744
|
property :binary_authorization_policy, as: 'binaryAuthorizationPolicy'
|
|
745
|
+
property :direct_vpc_egress, as: 'directVpcEgress'
|
|
746
|
+
collection :direct_vpc_network_interface, as: 'directVpcNetworkInterface', class: Google::Apis::CloudfunctionsV2::DirectVpcNetworkInterface, decorator: Google::Apis::CloudfunctionsV2::DirectVpcNetworkInterface::Representation
|
|
747
|
+
|
|
730
748
|
hash :environment_variables, as: 'environmentVariables'
|
|
731
749
|
property :ingress_settings, as: 'ingressSettings'
|
|
732
750
|
property :max_instance_count, as: 'maxInstanceCount'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.60.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudfunctions_v2/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v2/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v2/v0.60.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudfunctions_v2
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|