google-apis-cloudfunctions_v2 0.59.0 → 0.61.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: 14c4cf178e337125bf394fba3c2e127f861d5baff68642788ff563cff4737ae5
|
|
4
|
+
data.tar.gz: 2f17cd2e99a458433daa1120c2429fb23c7a929b6e4836610ce685b9d9c23fc2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: de837ce360840d3c5f1ba0714c7eaa08f1acdda0b6ec1505773d34729b709574e96caac545ba226f40a5b719e8043c827e98ee8f05f34c4f2204c48669c5b5f4
|
|
7
|
+
data.tar.gz: 254c15b0bdbe81e1f002653b94b85d88458438bd136a75882787a7cde9b6421f8b6db7214c9ebe6ccc57f209d5374fa9aa9a18b72fdc0dd172689a659618e203
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-cloudfunctions_v2
|
|
2
2
|
|
|
3
|
+
### v0.61.0 (2026-04-19)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260324
|
|
6
|
+
|
|
7
|
+
### v0.60.0 (2026-02-15)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260205
|
|
10
|
+
|
|
3
11
|
### v0.59.0 (2026-02-08)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260129
|
|
@@ -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.61.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 = "20260324"
|
|
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'
|
|
@@ -52,10 +52,15 @@ module Google
|
|
|
52
52
|
end
|
|
53
53
|
|
|
54
54
|
# Lists information about the supported locations for this service. This method
|
|
55
|
-
#
|
|
56
|
-
#
|
|
57
|
-
#
|
|
58
|
-
#
|
|
55
|
+
# lists locations based on the resource scope provided in the [
|
|
56
|
+
# ListLocationsRequest.name] field: * **Global locations**: If `name` is empty,
|
|
57
|
+
# the method lists the public locations available to all projects. * **Project-
|
|
58
|
+
# specific locations**: If `name` follows the format `projects/`project``, the
|
|
59
|
+
# method lists locations visible to that specific project. This includes public,
|
|
60
|
+
# private, or other project-specific locations enabled for the project. For gRPC
|
|
61
|
+
# and client library implementations, the resource name is passed as the `name`
|
|
62
|
+
# field. For direct service calls, the resource name is incorporated into the
|
|
63
|
+
# request path based on the specific service implementation and version.
|
|
59
64
|
# @param [String] name
|
|
60
65
|
# The resource that owns the locations collection, if applicable.
|
|
61
66
|
# @param [Array<String>, String] extra_location_types
|
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.61.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.61.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:
|