google-apis-networkmanagement_v1beta1 0.77.0 → 0.79.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_v1beta1/classes.rb +41 -0
- data/lib/google/apis/networkmanagement_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/networkmanagement_v1beta1/representations.rb +18 -0
- data/lib/google/apis/networkmanagement_v1beta1/service.rb +4 -4
- 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: 772ee4b6513cd62e9c07776a41a002dab0b7b3d6de9c730a04e21124b110f250
|
|
4
|
+
data.tar.gz: d0dce601b77d5c56cd1122b6566abc1f87415634fda9edac735929b1f3aa9dda
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5745e3bd78e98c1701a2f14130b403c4a999514f61ff45b99e86aeafc5b0328398b05069095401214726895d01e91bb71ead85b40253babd55361ef4789879b3
|
|
7
|
+
data.tar.gz: 7688cf31ae7c595992b9d81842c9091590f777836284bf7f8e0dd114000fa9103eae174490a475d93b7e5d6e05e8bee8efcc5264e9e1b0268c88fa78d47c8387
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-networkmanagement_v1beta1
|
|
2
2
|
|
|
3
|
+
### v0.79.0 (2026-05-17)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260506
|
|
6
|
+
|
|
7
|
+
### v0.78.0 (2026-05-03)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260424
|
|
10
|
+
|
|
3
11
|
### v0.77.0 (2026-04-19)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260414
|
|
@@ -892,6 +892,14 @@ module Google
|
|
|
892
892
|
# @return [Google::Apis::NetworkmanagementV1beta1::CloudFunctionEndpoint]
|
|
893
893
|
attr_accessor :cloud_function
|
|
894
894
|
|
|
895
|
+
# A [Cloud Run](https://cloud.google.com/run) [job](https://docs.cloud.google.
|
|
896
|
+
# com/run/docs/reference/rest/v2/projects.locations.jobs#Job) URI. Applicable
|
|
897
|
+
# only to source endpoint. The format is: projects/`project`/locations/`location`
|
|
898
|
+
# /jobs/`job`
|
|
899
|
+
# Corresponds to the JSON property `cloudRunJob`
|
|
900
|
+
# @return [String]
|
|
901
|
+
attr_accessor :cloud_run_job
|
|
902
|
+
|
|
895
903
|
# Wrapper for Cloud Run revision attributes.
|
|
896
904
|
# Corresponds to the JSON property `cloudRunRevision`
|
|
897
905
|
# @return [Google::Apis::NetworkmanagementV1beta1::CloudRunRevisionEndpoint]
|
|
@@ -1016,6 +1024,7 @@ module Google
|
|
|
1016
1024
|
def update!(**args)
|
|
1017
1025
|
@app_engine_version = args[:app_engine_version] if args.key?(:app_engine_version)
|
|
1018
1026
|
@cloud_function = args[:cloud_function] if args.key?(:cloud_function)
|
|
1027
|
+
@cloud_run_job = args[:cloud_run_job] if args.key?(:cloud_run_job)
|
|
1019
1028
|
@cloud_run_revision = args[:cloud_run_revision] if args.key?(:cloud_run_revision)
|
|
1020
1029
|
@cloud_sql_instance = args[:cloud_sql_instance] if args.key?(:cloud_sql_instance)
|
|
1021
1030
|
@datastream_private_connection = args[:datastream_private_connection] if args.key?(:datastream_private_connection)
|
|
@@ -2487,6 +2496,26 @@ module Google
|
|
|
2487
2496
|
end
|
|
2488
2497
|
end
|
|
2489
2498
|
|
|
2499
|
+
# For display only. Metadata associated with a Private Connection.
|
|
2500
|
+
class PrivateConnectionInfo
|
|
2501
|
+
include Google::Apis::Core::Hashable
|
|
2502
|
+
|
|
2503
|
+
# URI of the Private Connection in format "projects/`project_id`/locations/`
|
|
2504
|
+
# location`/privateConnections/`private_connection_id`"
|
|
2505
|
+
# Corresponds to the JSON property `uri`
|
|
2506
|
+
# @return [String]
|
|
2507
|
+
attr_accessor :uri
|
|
2508
|
+
|
|
2509
|
+
def initialize(**args)
|
|
2510
|
+
update!(**args)
|
|
2511
|
+
end
|
|
2512
|
+
|
|
2513
|
+
# Update properties of this object
|
|
2514
|
+
def update!(**args)
|
|
2515
|
+
@uri = args[:uri] if args.key?(:uri)
|
|
2516
|
+
end
|
|
2517
|
+
end
|
|
2518
|
+
|
|
2490
2519
|
# Results of active probing from the last run of the test.
|
|
2491
2520
|
class ProbingDetails
|
|
2492
2521
|
include Google::Apis::Core::Hashable
|
|
@@ -3267,6 +3296,11 @@ module Google
|
|
|
3267
3296
|
# @return [Google::Apis::NetworkmanagementV1beta1::CloudSqlInstanceInfo]
|
|
3268
3297
|
attr_accessor :cloud_sql_instance
|
|
3269
3298
|
|
|
3299
|
+
# For display only. Metadata associated with a Private Connection.
|
|
3300
|
+
# Corresponds to the JSON property `datastreamPrivateConnection`
|
|
3301
|
+
# @return [Google::Apis::NetworkmanagementV1beta1::PrivateConnectionInfo]
|
|
3302
|
+
attr_accessor :datastream_private_connection
|
|
3303
|
+
|
|
3270
3304
|
# Details of the final state "deliver" and associated resource.
|
|
3271
3305
|
# Corresponds to the JSON property `deliver`
|
|
3272
3306
|
# @return [Google::Apis::NetworkmanagementV1beta1::DeliverInfo]
|
|
@@ -3283,6 +3317,11 @@ module Google
|
|
|
3283
3317
|
# @return [Google::Apis::NetworkmanagementV1beta1::DirectVpcEgressConnectionInfo]
|
|
3284
3318
|
attr_accessor :direct_vpc_egress_connection
|
|
3285
3319
|
|
|
3320
|
+
# For display only. Metadata associated with a Private Connection.
|
|
3321
|
+
# Corresponds to the JSON property `dmsPrivateConnection`
|
|
3322
|
+
# @return [Google::Apis::NetworkmanagementV1beta1::PrivateConnectionInfo]
|
|
3323
|
+
attr_accessor :dms_private_connection
|
|
3324
|
+
|
|
3286
3325
|
# Details of the final state "drop" and associated resource.
|
|
3287
3326
|
# Corresponds to the JSON property `drop`
|
|
3288
3327
|
# @return [Google::Apis::NetworkmanagementV1beta1::DropInfo]
|
|
@@ -3463,9 +3502,11 @@ module Google
|
|
|
3463
3502
|
@cloud_function = args[:cloud_function] if args.key?(:cloud_function)
|
|
3464
3503
|
@cloud_run_revision = args[:cloud_run_revision] if args.key?(:cloud_run_revision)
|
|
3465
3504
|
@cloud_sql_instance = args[:cloud_sql_instance] if args.key?(:cloud_sql_instance)
|
|
3505
|
+
@datastream_private_connection = args[:datastream_private_connection] if args.key?(:datastream_private_connection)
|
|
3466
3506
|
@deliver = args[:deliver] if args.key?(:deliver)
|
|
3467
3507
|
@description = args[:description] if args.key?(:description)
|
|
3468
3508
|
@direct_vpc_egress_connection = args[:direct_vpc_egress_connection] if args.key?(:direct_vpc_egress_connection)
|
|
3509
|
+
@dms_private_connection = args[:dms_private_connection] if args.key?(:dms_private_connection)
|
|
3469
3510
|
@drop = args[:drop] if args.key?(:drop)
|
|
3470
3511
|
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
|
3471
3512
|
@firewall = args[:firewall] if args.key?(:firewall)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module NetworkmanagementV1beta1
|
|
18
18
|
# Version of the google-apis-networkmanagement_v1beta1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.79.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 = "20260506"
|
|
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
|
|
|
@@ -668,6 +674,7 @@ module Google
|
|
|
668
674
|
|
|
669
675
|
property :cloud_function, as: 'cloudFunction', class: Google::Apis::NetworkmanagementV1beta1::CloudFunctionEndpoint, decorator: Google::Apis::NetworkmanagementV1beta1::CloudFunctionEndpoint::Representation
|
|
670
676
|
|
|
677
|
+
property :cloud_run_job, as: 'cloudRunJob'
|
|
671
678
|
property :cloud_run_revision, as: 'cloudRunRevision', class: Google::Apis::NetworkmanagementV1beta1::CloudRunRevisionEndpoint, decorator: Google::Apis::NetworkmanagementV1beta1::CloudRunRevisionEndpoint::Representation
|
|
672
679
|
|
|
673
680
|
property :cloud_sql_instance, as: 'cloudSqlInstance'
|
|
@@ -1032,6 +1039,13 @@ module Google
|
|
|
1032
1039
|
end
|
|
1033
1040
|
end
|
|
1034
1041
|
|
|
1042
|
+
class PrivateConnectionInfo
|
|
1043
|
+
# @private
|
|
1044
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1045
|
+
property :uri, as: 'uri'
|
|
1046
|
+
end
|
|
1047
|
+
end
|
|
1048
|
+
|
|
1035
1049
|
class ProbingDetails
|
|
1036
1050
|
# @private
|
|
1037
1051
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1223,11 +1237,15 @@ module Google
|
|
|
1223
1237
|
|
|
1224
1238
|
property :cloud_sql_instance, as: 'cloudSqlInstance', class: Google::Apis::NetworkmanagementV1beta1::CloudSqlInstanceInfo, decorator: Google::Apis::NetworkmanagementV1beta1::CloudSqlInstanceInfo::Representation
|
|
1225
1239
|
|
|
1240
|
+
property :datastream_private_connection, as: 'datastreamPrivateConnection', class: Google::Apis::NetworkmanagementV1beta1::PrivateConnectionInfo, decorator: Google::Apis::NetworkmanagementV1beta1::PrivateConnectionInfo::Representation
|
|
1241
|
+
|
|
1226
1242
|
property :deliver, as: 'deliver', class: Google::Apis::NetworkmanagementV1beta1::DeliverInfo, decorator: Google::Apis::NetworkmanagementV1beta1::DeliverInfo::Representation
|
|
1227
1243
|
|
|
1228
1244
|
property :description, as: 'description'
|
|
1229
1245
|
property :direct_vpc_egress_connection, as: 'directVpcEgressConnection', class: Google::Apis::NetworkmanagementV1beta1::DirectVpcEgressConnectionInfo, decorator: Google::Apis::NetworkmanagementV1beta1::DirectVpcEgressConnectionInfo::Representation
|
|
1230
1246
|
|
|
1247
|
+
property :dms_private_connection, as: 'dmsPrivateConnection', class: Google::Apis::NetworkmanagementV1beta1::PrivateConnectionInfo, decorator: Google::Apis::NetworkmanagementV1beta1::PrivateConnectionInfo::Representation
|
|
1248
|
+
|
|
1231
1249
|
property :drop, as: 'drop', class: Google::Apis::NetworkmanagementV1beta1::DropInfo, decorator: Google::Apis::NetworkmanagementV1beta1::DropInfo::Representation
|
|
1232
1250
|
|
|
1233
1251
|
property :endpoint, as: 'endpoint', class: Google::Apis::NetworkmanagementV1beta1::EndpointInfo, decorator: Google::Apis::NetworkmanagementV1beta1::EndpointInfo::Representation
|
|
@@ -95,8 +95,8 @@ module Google
|
|
|
95
95
|
# @param [String] name
|
|
96
96
|
# The resource that owns the locations collection, if applicable.
|
|
97
97
|
# @param [Array<String>, String] extra_location_types
|
|
98
|
-
# Optional. Do not use this field
|
|
99
|
-
#
|
|
98
|
+
# Optional. Do not use this field unless explicitly documented otherwise. This
|
|
99
|
+
# is primarily for internal usage.
|
|
100
100
|
# @param [String] filter
|
|
101
101
|
# A filter to narrow down results to a preferred subset. The filtering language
|
|
102
102
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
|
@@ -544,8 +544,8 @@ module Google
|
|
|
544
544
|
# @param [String] name
|
|
545
545
|
# The resource that owns the locations collection, if applicable.
|
|
546
546
|
# @param [Array<String>, String] extra_location_types
|
|
547
|
-
# Optional. Do not use this field
|
|
548
|
-
#
|
|
547
|
+
# Optional. Do not use this field unless explicitly documented otherwise. This
|
|
548
|
+
# is primarily for internal usage.
|
|
549
549
|
# @param [String] filter
|
|
550
550
|
# A filter to narrow down results to a preferred subset. The filtering language
|
|
551
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_v1beta1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.79.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_v1beta1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.79.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1beta1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|