google-apis-networkconnectivity_v1 0.43.0 → 0.44.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: c154badf5e4a12a9b9a1d9c4ed0fdfd996113204a4e4e86816247d96b76fb6a5
|
|
4
|
+
data.tar.gz: 2751dfbea906bb01e2fdbe014f1a5b238e1dcdfc2b9ae937dd94ec7b19119efa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 52976c45af7d6d1f08cdf0c46e4066308de746160d90c023ab1a9593cc9e41f95ec3f7033d6cbd82a9fd6c6c97df3ee3c0b013274ebc8554aa93d799548c448a
|
|
7
|
+
data.tar.gz: eb2dc834dab1c1850ee1073a408992a7dc0693aa1c9605bc8d6698f4b647e120dbb5d2a2ed1775fee03136a10f6791d8f2cb2c7ee950ba8a2da49f8231398873
|
data/CHANGELOG.md
CHANGED
|
@@ -282,6 +282,15 @@ module Google
|
|
|
282
282
|
class ConsumerPscConfig
|
|
283
283
|
include Google::Apis::Core::Hashable
|
|
284
284
|
|
|
285
|
+
# Required. The project ID or project number of the consumer project. This
|
|
286
|
+
# project is the one that the consumer uses to interact with the producer
|
|
287
|
+
# instance. From the perspective of a consumer who's created a producer instance,
|
|
288
|
+
# this is the project of the producer instance. Format: 'projects/' Eg. '
|
|
289
|
+
# projects/consumer-project' or 'projects/1234'
|
|
290
|
+
# Corresponds to the JSON property `consumerInstanceProject`
|
|
291
|
+
# @return [String]
|
|
292
|
+
attr_accessor :consumer_instance_project
|
|
293
|
+
|
|
285
294
|
# This is used in PSC consumer ForwardingRule to control whether the PSC
|
|
286
295
|
# endpoint can be accessed from another region.
|
|
287
296
|
# Corresponds to the JSON property `disableGlobalAccess`
|
|
@@ -326,6 +335,7 @@ module Google
|
|
|
326
335
|
|
|
327
336
|
# Update properties of this object
|
|
328
337
|
def update!(**args)
|
|
338
|
+
@consumer_instance_project = args[:consumer_instance_project] if args.key?(:consumer_instance_project)
|
|
329
339
|
@disable_global_access = args[:disable_global_access] if args.key?(:disable_global_access)
|
|
330
340
|
@network = args[:network] if args.key?(:network)
|
|
331
341
|
@producer_instance_id = args[:producer_instance_id] if args.key?(:producer_instance_id)
|
|
@@ -1086,6 +1096,13 @@ module Google
|
|
|
1086
1096
|
class LinkedInterconnectAttachments
|
|
1087
1097
|
include Google::Apis::Core::Hashable
|
|
1088
1098
|
|
|
1099
|
+
# Optional. IP ranges allowed to be included during import from hub.(does not
|
|
1100
|
+
# control transit connectivity) The only allowed value for now is "
|
|
1101
|
+
# ALL_IPV4_RANGES".
|
|
1102
|
+
# Corresponds to the JSON property `includeImportRanges`
|
|
1103
|
+
# @return [Array<String>]
|
|
1104
|
+
attr_accessor :include_import_ranges
|
|
1105
|
+
|
|
1089
1106
|
# A value that controls whether site-to-site data transfer is enabled for these
|
|
1090
1107
|
# resources. Data transfer is available only in [supported locations](https://
|
|
1091
1108
|
# cloud.google.com/network-connectivity/docs/network-connectivity-center/
|
|
@@ -1111,6 +1128,7 @@ module Google
|
|
|
1111
1128
|
|
|
1112
1129
|
# Update properties of this object
|
|
1113
1130
|
def update!(**args)
|
|
1131
|
+
@include_import_ranges = args[:include_import_ranges] if args.key?(:include_import_ranges)
|
|
1114
1132
|
@site_to_site_data_transfer = args[:site_to_site_data_transfer] if args.key?(:site_to_site_data_transfer)
|
|
1115
1133
|
@uris = args[:uris] if args.key?(:uris)
|
|
1116
1134
|
@vpc_network = args[:vpc_network] if args.key?(:vpc_network)
|
|
@@ -1124,6 +1142,13 @@ module Google
|
|
|
1124
1142
|
class LinkedRouterApplianceInstances
|
|
1125
1143
|
include Google::Apis::Core::Hashable
|
|
1126
1144
|
|
|
1145
|
+
# Optional. IP ranges allowed to be included during import from hub.(does not
|
|
1146
|
+
# control transit connectivity) The only allowed value for now is "
|
|
1147
|
+
# ALL_IPV4_RANGES".
|
|
1148
|
+
# Corresponds to the JSON property `includeImportRanges`
|
|
1149
|
+
# @return [Array<String>]
|
|
1150
|
+
attr_accessor :include_import_ranges
|
|
1151
|
+
|
|
1127
1152
|
# The list of router appliance instances.
|
|
1128
1153
|
# Corresponds to the JSON property `instances`
|
|
1129
1154
|
# @return [Array<Google::Apis::NetworkconnectivityV1::RouterApplianceInstance>]
|
|
@@ -1150,6 +1175,7 @@ module Google
|
|
|
1150
1175
|
|
|
1151
1176
|
# Update properties of this object
|
|
1152
1177
|
def update!(**args)
|
|
1178
|
+
@include_import_ranges = args[:include_import_ranges] if args.key?(:include_import_ranges)
|
|
1153
1179
|
@instances = args[:instances] if args.key?(:instances)
|
|
1154
1180
|
@site_to_site_data_transfer = args[:site_to_site_data_transfer] if args.key?(:site_to_site_data_transfer)
|
|
1155
1181
|
@vpc_network = args[:vpc_network] if args.key?(:vpc_network)
|
|
@@ -1194,6 +1220,13 @@ module Google
|
|
|
1194
1220
|
class LinkedVpnTunnels
|
|
1195
1221
|
include Google::Apis::Core::Hashable
|
|
1196
1222
|
|
|
1223
|
+
# Optional. IP ranges allowed to be included during import from hub.(does not
|
|
1224
|
+
# control transit connectivity) The only allowed value for now is "
|
|
1225
|
+
# ALL_IPV4_RANGES".
|
|
1226
|
+
# Corresponds to the JSON property `includeImportRanges`
|
|
1227
|
+
# @return [Array<String>]
|
|
1228
|
+
attr_accessor :include_import_ranges
|
|
1229
|
+
|
|
1197
1230
|
# A value that controls whether site-to-site data transfer is enabled for these
|
|
1198
1231
|
# resources. Data transfer is available only in [supported locations](https://
|
|
1199
1232
|
# cloud.google.com/network-connectivity/docs/network-connectivity-center/
|
|
@@ -1219,6 +1252,7 @@ module Google
|
|
|
1219
1252
|
|
|
1220
1253
|
# Update properties of this object
|
|
1221
1254
|
def update!(**args)
|
|
1255
|
+
@include_import_ranges = args[:include_import_ranges] if args.key?(:include_import_ranges)
|
|
1222
1256
|
@site_to_site_data_transfer = args[:site_to_site_data_transfer] if args.key?(:site_to_site_data_transfer)
|
|
1223
1257
|
@uris = args[:uris] if args.key?(:uris)
|
|
1224
1258
|
@vpc_network = args[:vpc_network] if args.key?(:vpc_network)
|
|
@@ -2159,11 +2193,35 @@ module Google
|
|
|
2159
2193
|
class PscConfig
|
|
2160
2194
|
include Google::Apis::Core::Hashable
|
|
2161
2195
|
|
|
2196
|
+
# Optional. List of Projects, Folders, or Organizations from where the Producer
|
|
2197
|
+
# instance can be within. For example, a network administrator can provide both '
|
|
2198
|
+
# organizations/foo' and 'projects/bar' as
|
|
2199
|
+
# allowed_google_producers_resource_hierarchy_levels. This allowlists this
|
|
2200
|
+
# network to connect with any Producer instance within the 'foo' organization or
|
|
2201
|
+
# the 'bar' project. By default,
|
|
2202
|
+
# allowed_google_producers_resource_hierarchy_level is empty. The format for
|
|
2203
|
+
# each allowed_google_producers_resource_hierarchy_level is / where is one of '
|
|
2204
|
+
# projects', 'folders', or 'organizations' and is either the ID or the number of
|
|
2205
|
+
# the resource type. Format for each
|
|
2206
|
+
# allowed_google_producers_resource_hierarchy_level value: 'projects/' or '
|
|
2207
|
+
# folders/' or 'organizations/' Eg. [projects/my-project-id, projects/567,
|
|
2208
|
+
# folders/891, organizations/123]
|
|
2209
|
+
# Corresponds to the JSON property `allowedGoogleProducersResourceHierarchyLevel`
|
|
2210
|
+
# @return [Array<String>]
|
|
2211
|
+
attr_accessor :allowed_google_producers_resource_hierarchy_level
|
|
2212
|
+
|
|
2162
2213
|
# Optional. Max number of PSC connections for this policy.
|
|
2163
2214
|
# Corresponds to the JSON property `limit`
|
|
2164
2215
|
# @return [Fixnum]
|
|
2165
2216
|
attr_accessor :limit
|
|
2166
2217
|
|
|
2218
|
+
# Required. ProducerInstanceLocation is used to specify which authorization
|
|
2219
|
+
# mechanism to use to determine which projects the Producer instance can be
|
|
2220
|
+
# within.
|
|
2221
|
+
# Corresponds to the JSON property `producerInstanceLocation`
|
|
2222
|
+
# @return [String]
|
|
2223
|
+
attr_accessor :producer_instance_location
|
|
2224
|
+
|
|
2167
2225
|
# The resource paths of subnetworks to use for IP address management. Example:
|
|
2168
2226
|
# projects/`projectNumOrId`/regions/`region`/subnetworks/`resourceId`.
|
|
2169
2227
|
# Corresponds to the JSON property `subnetworks`
|
|
@@ -2176,7 +2234,9 @@ module Google
|
|
|
2176
2234
|
|
|
2177
2235
|
# Update properties of this object
|
|
2178
2236
|
def update!(**args)
|
|
2237
|
+
@allowed_google_producers_resource_hierarchy_level = args[:allowed_google_producers_resource_hierarchy_level] if args.key?(:allowed_google_producers_resource_hierarchy_level)
|
|
2179
2238
|
@limit = args[:limit] if args.key?(:limit)
|
|
2239
|
+
@producer_instance_location = args[:producer_instance_location] if args.key?(:producer_instance_location)
|
|
2180
2240
|
@subnetworks = args[:subnetworks] if args.key?(:subnetworks)
|
|
2181
2241
|
end
|
|
2182
2242
|
end
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module NetworkconnectivityV1
|
|
18
18
|
# Version of the google-apis-networkconnectivity_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.44.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.15.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20240618"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -507,6 +507,7 @@ module Google
|
|
|
507
507
|
class ConsumerPscConfig
|
|
508
508
|
# @private
|
|
509
509
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
510
|
+
property :consumer_instance_project, as: 'consumerInstanceProject'
|
|
510
511
|
property :disable_global_access, as: 'disableGlobalAccess'
|
|
511
512
|
property :network, as: 'network'
|
|
512
513
|
property :producer_instance_id, as: 'producerInstanceId'
|
|
@@ -674,6 +675,7 @@ module Google
|
|
|
674
675
|
class LinkedInterconnectAttachments
|
|
675
676
|
# @private
|
|
676
677
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
678
|
+
collection :include_import_ranges, as: 'includeImportRanges'
|
|
677
679
|
property :site_to_site_data_transfer, as: 'siteToSiteDataTransfer'
|
|
678
680
|
collection :uris, as: 'uris'
|
|
679
681
|
property :vpc_network, as: 'vpcNetwork'
|
|
@@ -683,6 +685,7 @@ module Google
|
|
|
683
685
|
class LinkedRouterApplianceInstances
|
|
684
686
|
# @private
|
|
685
687
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
688
|
+
collection :include_import_ranges, as: 'includeImportRanges'
|
|
686
689
|
collection :instances, as: 'instances', class: Google::Apis::NetworkconnectivityV1::RouterApplianceInstance, decorator: Google::Apis::NetworkconnectivityV1::RouterApplianceInstance::Representation
|
|
687
690
|
|
|
688
691
|
property :site_to_site_data_transfer, as: 'siteToSiteDataTransfer'
|
|
@@ -702,6 +705,7 @@ module Google
|
|
|
702
705
|
class LinkedVpnTunnels
|
|
703
706
|
# @private
|
|
704
707
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
708
|
+
collection :include_import_ranges, as: 'includeImportRanges'
|
|
705
709
|
property :site_to_site_data_transfer, as: 'siteToSiteDataTransfer'
|
|
706
710
|
collection :uris, as: 'uris'
|
|
707
711
|
property :vpc_network, as: 'vpcNetwork'
|
|
@@ -959,7 +963,9 @@ module Google
|
|
|
959
963
|
class PscConfig
|
|
960
964
|
# @private
|
|
961
965
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
966
|
+
collection :allowed_google_producers_resource_hierarchy_level, as: 'allowedGoogleProducersResourceHierarchyLevel'
|
|
962
967
|
property :limit, :numeric_string => true, as: 'limit'
|
|
968
|
+
property :producer_instance_location, as: 'producerInstanceLocation'
|
|
963
969
|
collection :subnetworks, as: 'subnetworks'
|
|
964
970
|
end
|
|
965
971
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-networkconnectivity_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.44.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: 2024-06-
|
|
11
|
+
date: 2024-06-23 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-networkconnectivity_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkconnectivity_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkconnectivity_v1/v0.44.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkconnectivity_v1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|