google-apis-run_v2 0.46.0 → 0.47.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/run_v2/classes.rb +38 -1
- data/lib/google/apis/run_v2/gem_version.rb +2 -2
- data/lib/google/apis/run_v2/representations.rb +17 -0
- 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: db658075ffd12c8b3c060fa6bbcefe914f28cbccbeac0755408ca1c36ddfe513
|
4
|
+
data.tar.gz: fe1ba994015c1587fa3894a4eac6a707b2b0dce7fab8ff2ecdff52a87cb6210f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e5c3b42a471636ff16d947974b4c2a242addccbd063044bee0018215269e85ffd3a3040fc3357f31cb5cb552b4ee9e1405d5ae651771dd0aa1798f8e53110a39
|
7
|
+
data.tar.gz: a091629fbdde5caf67208c18b5f8213e3ea6473f36dd1e0c8f3ac96da865e22df07b98a9212435b79785b30afeda9c95987c0b14278dcbb1fcfcd037874fcd4b
|
data/CHANGELOG.md
CHANGED
@@ -707,7 +707,7 @@ module Google
|
|
707
707
|
attr_accessor :port
|
708
708
|
|
709
709
|
# Service is the name of the service to place in the gRPC HealthCheckRequest (
|
710
|
-
# see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). If this
|
710
|
+
# see https://github.com/grpc/grpc/blob/master/doc/health-checking.md ). If this
|
711
711
|
# is not specified, the default behavior is defined by gRPC.
|
712
712
|
# Corresponds to the JSON property `service`
|
713
713
|
# @return [String]
|
@@ -1119,6 +1119,37 @@ module Google
|
|
1119
1119
|
end
|
1120
1120
|
end
|
1121
1121
|
|
1122
|
+
# VPC network settings.
|
1123
|
+
class GoogleCloudRunV2NetworkInterface
|
1124
|
+
include Google::Apis::Core::Hashable
|
1125
|
+
|
1126
|
+
# The VPC network name to access to. Defaults to "default" network.
|
1127
|
+
# Corresponds to the JSON property `network`
|
1128
|
+
# @return [String]
|
1129
|
+
attr_accessor :network
|
1130
|
+
|
1131
|
+
# The VPC subnetwork name to access to. Defaults to the same vaule of network.
|
1132
|
+
# Corresponds to the JSON property `subnetwork`
|
1133
|
+
# @return [String]
|
1134
|
+
attr_accessor :subnetwork
|
1135
|
+
|
1136
|
+
# Network tags applied to this VPC network.
|
1137
|
+
# Corresponds to the JSON property `tags`
|
1138
|
+
# @return [Array<String>]
|
1139
|
+
attr_accessor :tags
|
1140
|
+
|
1141
|
+
def initialize(**args)
|
1142
|
+
update!(**args)
|
1143
|
+
end
|
1144
|
+
|
1145
|
+
# Update properties of this object
|
1146
|
+
def update!(**args)
|
1147
|
+
@network = args[:network] if args.key?(:network)
|
1148
|
+
@subnetwork = args[:subnetwork] if args.key?(:subnetwork)
|
1149
|
+
@tags = args[:tags] if args.key?(:tags)
|
1150
|
+
end
|
1151
|
+
end
|
1152
|
+
|
1122
1153
|
# Probe describes a health check to be performed against a container to
|
1123
1154
|
# determine whether it is alive or ready to receive traffic.
|
1124
1155
|
class GoogleCloudRunV2Probe
|
@@ -2534,6 +2565,11 @@ module Google
|
|
2534
2565
|
# @return [String]
|
2535
2566
|
attr_accessor :egress
|
2536
2567
|
|
2568
|
+
# VPC network to access to. Currently only single network interface is supported.
|
2569
|
+
# Corresponds to the JSON property `networkInterfaces`
|
2570
|
+
# @return [Array<Google::Apis::RunV2::GoogleCloudRunV2NetworkInterface>]
|
2571
|
+
attr_accessor :network_interfaces
|
2572
|
+
|
2537
2573
|
def initialize(**args)
|
2538
2574
|
update!(**args)
|
2539
2575
|
end
|
@@ -2542,6 +2578,7 @@ module Google
|
|
2542
2578
|
def update!(**args)
|
2543
2579
|
@connector = args[:connector] if args.key?(:connector)
|
2544
2580
|
@egress = args[:egress] if args.key?(:egress)
|
2581
|
+
@network_interfaces = args[:network_interfaces] if args.key?(:network_interfaces)
|
2545
2582
|
end
|
2546
2583
|
end
|
2547
2584
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module RunV2
|
18
18
|
# Version of the google-apis-run_v2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.47.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 = "20230910"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -148,6 +148,12 @@ module Google
|
|
148
148
|
include Google::Apis::Core::JsonObjectSupport
|
149
149
|
end
|
150
150
|
|
151
|
+
class GoogleCloudRunV2NetworkInterface
|
152
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
153
|
+
|
154
|
+
include Google::Apis::Core::JsonObjectSupport
|
155
|
+
end
|
156
|
+
|
151
157
|
class GoogleCloudRunV2Probe
|
152
158
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
153
159
|
|
@@ -597,6 +603,15 @@ module Google
|
|
597
603
|
end
|
598
604
|
end
|
599
605
|
|
606
|
+
class GoogleCloudRunV2NetworkInterface
|
607
|
+
# @private
|
608
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
609
|
+
property :network, as: 'network'
|
610
|
+
property :subnetwork, as: 'subnetwork'
|
611
|
+
collection :tags, as: 'tags'
|
612
|
+
end
|
613
|
+
end
|
614
|
+
|
600
615
|
class GoogleCloudRunV2Probe
|
601
616
|
# @private
|
602
617
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -892,6 +907,8 @@ module Google
|
|
892
907
|
class Representation < Google::Apis::Core::JsonRepresentation
|
893
908
|
property :connector, as: 'connector'
|
894
909
|
property :egress, as: 'egress'
|
910
|
+
collection :network_interfaces, as: 'networkInterfaces', class: Google::Apis::RunV2::GoogleCloudRunV2NetworkInterface, decorator: Google::Apis::RunV2::GoogleCloudRunV2NetworkInterface::Representation
|
911
|
+
|
895
912
|
end
|
896
913
|
end
|
897
914
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-run_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.47.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-09-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-run_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.47.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-run_v2
|
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.4.
|
78
|
+
rubygems_version: 3.4.19
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Run Admin API V2
|