google-apis-networkmanagement_v1 0.80.0 → 0.82.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 +8 -0
- data/lib/google/apis/networkmanagement_v1/classes.rb +35 -1
- data/lib/google/apis/networkmanagement_v1/gem_version.rb +2 -2
- data/lib/google/apis/networkmanagement_v1/representations.rb +17 -0
- data/lib/google/apis/networkmanagement_v1/service.rb +22 -12
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f448114838e0eea92dba545fe8485e8fe221b831cf14a1660915cc8863485eed
|
|
4
|
+
data.tar.gz: 40332c9064d3fef5233e2a54e26bd4691caa2e22e775a1a3649bd70740a269a8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2801581271aa558fd1433aefc79c44d4d4c10643ec3833009af69528abe2b4d3fa2eb106fd40f2af9cd986d3b1cc177e27d40f5bcfded4a8edd04679b47e78cf
|
|
7
|
+
data.tar.gz: f013bbd5a4f2e841918159a9d2938a5bbfa1353fe4aba0ddcce35a8b3793431c05bdff856c4b5ba2f67dca9852d9e689947619fb8c85347b8af44fd04082999f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-networkmanagement_v1
|
|
2
2
|
|
|
3
|
+
### v0.82.0 (2026-05-03)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260424
|
|
6
|
+
|
|
7
|
+
### v0.81.0 (2026-04-19)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260414
|
|
10
|
+
|
|
3
11
|
### v0.80.0 (2026-03-08)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260225
|
|
@@ -2471,6 +2471,26 @@ module Google
|
|
|
2471
2471
|
end
|
|
2472
2472
|
end
|
|
2473
2473
|
|
|
2474
|
+
# For display only. Metadata associated with a Private Connection.
|
|
2475
|
+
class PrivateConnectionInfo
|
|
2476
|
+
include Google::Apis::Core::Hashable
|
|
2477
|
+
|
|
2478
|
+
# URI of the Private Connection in format "projects/`project_id`/locations/`
|
|
2479
|
+
# location`/privateConnections/`private_connection_id`"
|
|
2480
|
+
# Corresponds to the JSON property `uri`
|
|
2481
|
+
# @return [String]
|
|
2482
|
+
attr_accessor :uri
|
|
2483
|
+
|
|
2484
|
+
def initialize(**args)
|
|
2485
|
+
update!(**args)
|
|
2486
|
+
end
|
|
2487
|
+
|
|
2488
|
+
# Update properties of this object
|
|
2489
|
+
def update!(**args)
|
|
2490
|
+
@uri = args[:uri] if args.key?(:uri)
|
|
2491
|
+
end
|
|
2492
|
+
end
|
|
2493
|
+
|
|
2474
2494
|
# Results of active probing from the last run of the test.
|
|
2475
2495
|
class ProbingDetails
|
|
2476
2496
|
include Google::Apis::Core::Hashable
|
|
@@ -2935,7 +2955,9 @@ module Google
|
|
|
2935
2955
|
|
|
2936
2956
|
# Region of the route. DYNAMIC, PEERING_DYNAMIC, POLICY_BASED and ADVERTISED
|
|
2937
2957
|
# routes only. If set for POLICY_BASED route, this is a region of VLAN
|
|
2938
|
-
# attachments for Cloud Interconnect the route applies to.
|
|
2958
|
+
# attachments for Cloud Interconnect the route applies to. If set to "all" for
|
|
2959
|
+
# POLICY_BASED route, the route applies to VLAN attachments of Cloud
|
|
2960
|
+
# Interconnect in all regions.
|
|
2939
2961
|
# Corresponds to the JSON property `region`
|
|
2940
2962
|
# @return [String]
|
|
2941
2963
|
attr_accessor :region
|
|
@@ -3249,6 +3271,11 @@ module Google
|
|
|
3249
3271
|
# @return [Google::Apis::NetworkmanagementV1::CloudSqlInstanceInfo]
|
|
3250
3272
|
attr_accessor :cloud_sql_instance
|
|
3251
3273
|
|
|
3274
|
+
# For display only. Metadata associated with a Private Connection.
|
|
3275
|
+
# Corresponds to the JSON property `datastreamPrivateConnection`
|
|
3276
|
+
# @return [Google::Apis::NetworkmanagementV1::PrivateConnectionInfo]
|
|
3277
|
+
attr_accessor :datastream_private_connection
|
|
3278
|
+
|
|
3252
3279
|
# Details of the final state "deliver" and associated resource.
|
|
3253
3280
|
# Corresponds to the JSON property `deliver`
|
|
3254
3281
|
# @return [Google::Apis::NetworkmanagementV1::DeliverInfo]
|
|
@@ -3265,6 +3292,11 @@ module Google
|
|
|
3265
3292
|
# @return [Google::Apis::NetworkmanagementV1::DirectVpcEgressConnectionInfo]
|
|
3266
3293
|
attr_accessor :direct_vpc_egress_connection
|
|
3267
3294
|
|
|
3295
|
+
# For display only. Metadata associated with a Private Connection.
|
|
3296
|
+
# Corresponds to the JSON property `dmsPrivateConnection`
|
|
3297
|
+
# @return [Google::Apis::NetworkmanagementV1::PrivateConnectionInfo]
|
|
3298
|
+
attr_accessor :dms_private_connection
|
|
3299
|
+
|
|
3268
3300
|
# Details of the final state "drop" and associated resource.
|
|
3269
3301
|
# Corresponds to the JSON property `drop`
|
|
3270
3302
|
# @return [Google::Apis::NetworkmanagementV1::DropInfo]
|
|
@@ -3445,9 +3477,11 @@ module Google
|
|
|
3445
3477
|
@cloud_function = args[:cloud_function] if args.key?(:cloud_function)
|
|
3446
3478
|
@cloud_run_revision = args[:cloud_run_revision] if args.key?(:cloud_run_revision)
|
|
3447
3479
|
@cloud_sql_instance = args[:cloud_sql_instance] if args.key?(:cloud_sql_instance)
|
|
3480
|
+
@datastream_private_connection = args[:datastream_private_connection] if args.key?(:datastream_private_connection)
|
|
3448
3481
|
@deliver = args[:deliver] if args.key?(:deliver)
|
|
3449
3482
|
@description = args[:description] if args.key?(:description)
|
|
3450
3483
|
@direct_vpc_egress_connection = args[:direct_vpc_egress_connection] if args.key?(:direct_vpc_egress_connection)
|
|
3484
|
+
@dms_private_connection = args[:dms_private_connection] if args.key?(:dms_private_connection)
|
|
3451
3485
|
@drop = args[:drop] if args.key?(:drop)
|
|
3452
3486
|
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
|
3453
3487
|
@firewall = args[:firewall] if args.key?(:firewall)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module NetworkmanagementV1
|
|
18
18
|
# Version of the google-apis-networkmanagement_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.82.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 = "20260424"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -322,6 +322,12 @@ module Google
|
|
|
322
322
|
include Google::Apis::Core::JsonObjectSupport
|
|
323
323
|
end
|
|
324
324
|
|
|
325
|
+
class PrivateConnectionInfo
|
|
326
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
327
|
+
|
|
328
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
329
|
+
end
|
|
330
|
+
|
|
325
331
|
class ProbingDetails
|
|
326
332
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
327
333
|
|
|
@@ -1030,6 +1036,13 @@ module Google
|
|
|
1030
1036
|
end
|
|
1031
1037
|
end
|
|
1032
1038
|
|
|
1039
|
+
class PrivateConnectionInfo
|
|
1040
|
+
# @private
|
|
1041
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1042
|
+
property :uri, as: 'uri'
|
|
1043
|
+
end
|
|
1044
|
+
end
|
|
1045
|
+
|
|
1033
1046
|
class ProbingDetails
|
|
1034
1047
|
# @private
|
|
1035
1048
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1221,11 +1234,15 @@ module Google
|
|
|
1221
1234
|
|
|
1222
1235
|
property :cloud_sql_instance, as: 'cloudSqlInstance', class: Google::Apis::NetworkmanagementV1::CloudSqlInstanceInfo, decorator: Google::Apis::NetworkmanagementV1::CloudSqlInstanceInfo::Representation
|
|
1223
1236
|
|
|
1237
|
+
property :datastream_private_connection, as: 'datastreamPrivateConnection', class: Google::Apis::NetworkmanagementV1::PrivateConnectionInfo, decorator: Google::Apis::NetworkmanagementV1::PrivateConnectionInfo::Representation
|
|
1238
|
+
|
|
1224
1239
|
property :deliver, as: 'deliver', class: Google::Apis::NetworkmanagementV1::DeliverInfo, decorator: Google::Apis::NetworkmanagementV1::DeliverInfo::Representation
|
|
1225
1240
|
|
|
1226
1241
|
property :description, as: 'description'
|
|
1227
1242
|
property :direct_vpc_egress_connection, as: 'directVpcEgressConnection', class: Google::Apis::NetworkmanagementV1::DirectVpcEgressConnectionInfo, decorator: Google::Apis::NetworkmanagementV1::DirectVpcEgressConnectionInfo::Representation
|
|
1228
1243
|
|
|
1244
|
+
property :dms_private_connection, as: 'dmsPrivateConnection', class: Google::Apis::NetworkmanagementV1::PrivateConnectionInfo, decorator: Google::Apis::NetworkmanagementV1::PrivateConnectionInfo::Representation
|
|
1245
|
+
|
|
1229
1246
|
property :drop, as: 'drop', class: Google::Apis::NetworkmanagementV1::DropInfo, decorator: Google::Apis::NetworkmanagementV1::DropInfo::Representation
|
|
1230
1247
|
|
|
1231
1248
|
property :endpoint, as: 'endpoint', class: Google::Apis::NetworkmanagementV1::EndpointInfo, decorator: Google::Apis::NetworkmanagementV1::EndpointInfo::Representation
|
|
@@ -83,15 +83,20 @@ module Google
|
|
|
83
83
|
end
|
|
84
84
|
|
|
85
85
|
# Lists information about the supported locations for this service. This method
|
|
86
|
-
#
|
|
87
|
-
#
|
|
88
|
-
#
|
|
89
|
-
#
|
|
86
|
+
# lists locations based on the resource scope provided in the
|
|
87
|
+
# ListLocationsRequest.name field: * **Global locations**: If `name` is empty,
|
|
88
|
+
# the method lists the public locations available to all projects. * **Project-
|
|
89
|
+
# specific locations**: If `name` follows the format `projects/`project``, the
|
|
90
|
+
# method lists locations visible to that specific project. This includes public,
|
|
91
|
+
# private, or other project-specific locations enabled for the project. For gRPC
|
|
92
|
+
# and client library implementations, the resource name is passed as the `name`
|
|
93
|
+
# field. For direct service calls, the resource name is incorporated into the
|
|
94
|
+
# request path based on the specific service implementation and version.
|
|
90
95
|
# @param [String] name
|
|
91
96
|
# The resource that owns the locations collection, if applicable.
|
|
92
97
|
# @param [Array<String>, String] extra_location_types
|
|
93
|
-
# Optional. Do not use this field
|
|
94
|
-
#
|
|
98
|
+
# Optional. Do not use this field unless explicitly documented otherwise. This
|
|
99
|
+
# is primarily for internal usage.
|
|
95
100
|
# @param [String] filter
|
|
96
101
|
# A filter to narrow down results to a preferred subset. The filtering language
|
|
97
102
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
|
@@ -527,15 +532,20 @@ module Google
|
|
|
527
532
|
end
|
|
528
533
|
|
|
529
534
|
# Lists information about the supported locations for this service. This method
|
|
530
|
-
#
|
|
531
|
-
#
|
|
532
|
-
#
|
|
533
|
-
#
|
|
535
|
+
# lists locations based on the resource scope provided in the
|
|
536
|
+
# ListLocationsRequest.name field: * **Global locations**: If `name` is empty,
|
|
537
|
+
# the method lists the public locations available to all projects. * **Project-
|
|
538
|
+
# specific locations**: If `name` follows the format `projects/`project``, the
|
|
539
|
+
# method lists locations visible to that specific project. This includes public,
|
|
540
|
+
# private, or other project-specific locations enabled for the project. For gRPC
|
|
541
|
+
# and client library implementations, the resource name is passed as the `name`
|
|
542
|
+
# field. For direct service calls, the resource name is incorporated into the
|
|
543
|
+
# request path based on the specific service implementation and version.
|
|
534
544
|
# @param [String] name
|
|
535
545
|
# The resource that owns the locations collection, if applicable.
|
|
536
546
|
# @param [Array<String>, String] extra_location_types
|
|
537
|
-
# Optional. Do not use this field
|
|
538
|
-
#
|
|
547
|
+
# Optional. Do not use this field unless explicitly documented otherwise. This
|
|
548
|
+
# is primarily for internal usage.
|
|
539
549
|
# @param [String] filter
|
|
540
550
|
# A filter to narrow down results to a preferred subset. The filtering language
|
|
541
551
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-networkmanagement_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.82.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-networkmanagement_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.82.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|