google-apis-networkmanagement_v1beta1 0.84.0 → 0.86.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: 549cb6c0372d891ec1c8d7f3012ed880670002a6725e425d63f560cb418d0ffe
|
|
4
|
+
data.tar.gz: 661e845de9563b5481d65a3f8d014bcdd75e7ee6a538b920055662587d1be569
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6e242214baa43a96a255bbc2c9c69ce2e4186aceb482252e5a7f6e85960a98ed5233d7193fe43555c2199f6c19abc70049a4b56d234d5d43da5b6e9da37e17cc
|
|
7
|
+
data.tar.gz: 14daf8e3c8fc4f84e88bd3c2165f86bd8549973de8d6fd2da54f7f8c6dce4220fea868c15ec5a1045e21b8fccb0e9cf3f521e1b6edd617a0e50eaabac1e84e11
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-networkmanagement_v1beta1
|
|
2
2
|
|
|
3
|
+
### v0.86.0 (2026-09-20)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260909
|
|
6
|
+
|
|
7
|
+
### v0.85.0 (2026-08-30)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260819
|
|
10
|
+
|
|
3
11
|
### v0.84.0 (2026-08-23)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260812
|
|
@@ -400,7 +400,8 @@ module Google
|
|
|
400
400
|
include Google::Apis::Core::Hashable
|
|
401
401
|
|
|
402
402
|
# Output only. The URI of the Cloud Run service that the revision belongs to.
|
|
403
|
-
# The format is: projects/`project`/locations/`location`/services/`service
|
|
403
|
+
# The format is: projects/`project`/locations/`location`/services/`service`.
|
|
404
|
+
# Mutually exclusive with worker_pool_uri.
|
|
404
405
|
# Corresponds to the JSON property `serviceUri`
|
|
405
406
|
# @return [String]
|
|
406
407
|
attr_accessor :service_uri
|
|
@@ -412,6 +413,13 @@ module Google
|
|
|
412
413
|
# @return [String]
|
|
413
414
|
attr_accessor :uri
|
|
414
415
|
|
|
416
|
+
# Output only. The URI of the worker pool that the revision belongs to. The
|
|
417
|
+
# format is: projects/`project`/locations/`location`/workerPools/`workerPool`.
|
|
418
|
+
# Mutually exclusive with service_uri.
|
|
419
|
+
# Corresponds to the JSON property `workerPoolUri`
|
|
420
|
+
# @return [String]
|
|
421
|
+
attr_accessor :worker_pool_uri
|
|
422
|
+
|
|
415
423
|
def initialize(**args)
|
|
416
424
|
update!(**args)
|
|
417
425
|
end
|
|
@@ -420,6 +428,7 @@ module Google
|
|
|
420
428
|
def update!(**args)
|
|
421
429
|
@service_uri = args[:service_uri] if args.key?(:service_uri)
|
|
422
430
|
@uri = args[:uri] if args.key?(:uri)
|
|
431
|
+
@worker_pool_uri = args[:worker_pool_uri] if args.key?(:worker_pool_uri)
|
|
423
432
|
end
|
|
424
433
|
end
|
|
425
434
|
|
|
@@ -438,7 +447,8 @@ module Google
|
|
|
438
447
|
attr_accessor :location
|
|
439
448
|
|
|
440
449
|
# URI of Cloud Run service this revision belongs to. Format: `projects/`
|
|
441
|
-
# project_id`/locations/`location`/services/`service_id``
|
|
450
|
+
# project_id`/locations/`location`/services/`service_id`` Mutually exclusive
|
|
451
|
+
# with `worker_pool_uri`.
|
|
442
452
|
# Corresponds to the JSON property `serviceUri`
|
|
443
453
|
# @return [String]
|
|
444
454
|
attr_accessor :service_uri
|
|
@@ -449,6 +459,13 @@ module Google
|
|
|
449
459
|
# @return [String]
|
|
450
460
|
attr_accessor :uri
|
|
451
461
|
|
|
462
|
+
# URI of Cloud Run worker pool this revision belongs to. Format: `projects/`
|
|
463
|
+
# project_id`/locations/`location`/workerPools/`worker_pool_id``. Mutually
|
|
464
|
+
# exclusive with `service_uri`.
|
|
465
|
+
# Corresponds to the JSON property `workerPoolUri`
|
|
466
|
+
# @return [String]
|
|
467
|
+
attr_accessor :worker_pool_uri
|
|
468
|
+
|
|
452
469
|
def initialize(**args)
|
|
453
470
|
update!(**args)
|
|
454
471
|
end
|
|
@@ -459,6 +476,7 @@ module Google
|
|
|
459
476
|
@location = args[:location] if args.key?(:location)
|
|
460
477
|
@service_uri = args[:service_uri] if args.key?(:service_uri)
|
|
461
478
|
@uri = args[:uri] if args.key?(:uri)
|
|
479
|
+
@worker_pool_uri = args[:worker_pool_uri] if args.key?(:worker_pool_uri)
|
|
462
480
|
end
|
|
463
481
|
end
|
|
464
482
|
|
|
@@ -718,6 +736,52 @@ module Google
|
|
|
718
736
|
end
|
|
719
737
|
end
|
|
720
738
|
|
|
739
|
+
# For display only. Metadata associated with a serverless direct VPC ingress
|
|
740
|
+
# connection.
|
|
741
|
+
class DirectVpcIngressConnectionInfo
|
|
742
|
+
include Google::Apis::Core::Hashable
|
|
743
|
+
|
|
744
|
+
# URI of the VPC network for direct ingress. Format: `projects/`project_id`/
|
|
745
|
+
# global/networks/`network_id``
|
|
746
|
+
# Corresponds to the JSON property `networkUri`
|
|
747
|
+
# @return [String]
|
|
748
|
+
attr_accessor :network_uri
|
|
749
|
+
|
|
750
|
+
# Region in which the Direct VPC ingress is deployed.
|
|
751
|
+
# Corresponds to the JSON property `region`
|
|
752
|
+
# @return [String]
|
|
753
|
+
attr_accessor :region
|
|
754
|
+
|
|
755
|
+
# Selected destination IP address, from the selected IP range.
|
|
756
|
+
# Corresponds to the JSON property `selectedIpAddress`
|
|
757
|
+
# @return [String]
|
|
758
|
+
attr_accessor :selected_ip_address
|
|
759
|
+
|
|
760
|
+
# Selected IP range.
|
|
761
|
+
# Corresponds to the JSON property `selectedIpRange`
|
|
762
|
+
# @return [String]
|
|
763
|
+
attr_accessor :selected_ip_range
|
|
764
|
+
|
|
765
|
+
# URI of the subnetwork for direct ingress. Format: `projects/`project_id`/
|
|
766
|
+
# regions/`region`/subnetworks/`subnetwork_id``
|
|
767
|
+
# Corresponds to the JSON property `subnetworkUri`
|
|
768
|
+
# @return [String]
|
|
769
|
+
attr_accessor :subnetwork_uri
|
|
770
|
+
|
|
771
|
+
def initialize(**args)
|
|
772
|
+
update!(**args)
|
|
773
|
+
end
|
|
774
|
+
|
|
775
|
+
# Update properties of this object
|
|
776
|
+
def update!(**args)
|
|
777
|
+
@network_uri = args[:network_uri] if args.key?(:network_uri)
|
|
778
|
+
@region = args[:region] if args.key?(:region)
|
|
779
|
+
@selected_ip_address = args[:selected_ip_address] if args.key?(:selected_ip_address)
|
|
780
|
+
@selected_ip_range = args[:selected_ip_range] if args.key?(:selected_ip_range)
|
|
781
|
+
@subnetwork_uri = args[:subnetwork_uri] if args.key?(:subnetwork_uri)
|
|
782
|
+
end
|
|
783
|
+
end
|
|
784
|
+
|
|
721
785
|
# Details of the final state "drop" and associated resource.
|
|
722
786
|
class DropInfo
|
|
723
787
|
include Google::Apis::Core::Hashable
|
|
@@ -3450,6 +3514,12 @@ module Google
|
|
|
3450
3514
|
# @return [Google::Apis::NetworkmanagementV1beta1::DirectVpcEgressConnectionInfo]
|
|
3451
3515
|
attr_accessor :direct_vpc_egress_connection
|
|
3452
3516
|
|
|
3517
|
+
# For display only. Metadata associated with a serverless direct VPC ingress
|
|
3518
|
+
# connection.
|
|
3519
|
+
# Corresponds to the JSON property `directVpcIngressConnection`
|
|
3520
|
+
# @return [Google::Apis::NetworkmanagementV1beta1::DirectVpcIngressConnectionInfo]
|
|
3521
|
+
attr_accessor :direct_vpc_ingress_connection
|
|
3522
|
+
|
|
3453
3523
|
# For display only. Metadata associated with a Private Connection.
|
|
3454
3524
|
# Corresponds to the JSON property `dmsPrivateConnection`
|
|
3455
3525
|
# @return [Google::Apis::NetworkmanagementV1beta1::PrivateConnectionInfo]
|
|
@@ -3646,6 +3716,7 @@ module Google
|
|
|
3646
3716
|
@deliver = args[:deliver] if args.key?(:deliver)
|
|
3647
3717
|
@description = args[:description] if args.key?(:description)
|
|
3648
3718
|
@direct_vpc_egress_connection = args[:direct_vpc_egress_connection] if args.key?(:direct_vpc_egress_connection)
|
|
3719
|
+
@direct_vpc_ingress_connection = args[:direct_vpc_ingress_connection] if args.key?(:direct_vpc_ingress_connection)
|
|
3649
3720
|
@dms_private_connection = args[:dms_private_connection] if args.key?(:dms_private_connection)
|
|
3650
3721
|
@drop = args[:drop] if args.key?(:drop)
|
|
3651
3722
|
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
|
@@ -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.86.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260909"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -118,6 +118,12 @@ module Google
|
|
|
118
118
|
include Google::Apis::Core::JsonObjectSupport
|
|
119
119
|
end
|
|
120
120
|
|
|
121
|
+
class DirectVpcIngressConnectionInfo
|
|
122
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
123
|
+
|
|
124
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
125
|
+
end
|
|
126
|
+
|
|
121
127
|
class DropInfo
|
|
122
128
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
123
129
|
|
|
@@ -569,6 +575,7 @@ module Google
|
|
|
569
575
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
570
576
|
property :service_uri, as: 'serviceUri'
|
|
571
577
|
property :uri, as: 'uri'
|
|
578
|
+
property :worker_pool_uri, as: 'workerPoolUri'
|
|
572
579
|
end
|
|
573
580
|
end
|
|
574
581
|
|
|
@@ -579,6 +586,7 @@ module Google
|
|
|
579
586
|
property :location, as: 'location'
|
|
580
587
|
property :service_uri, as: 'serviceUri'
|
|
581
588
|
property :uri, as: 'uri'
|
|
589
|
+
property :worker_pool_uri, as: 'workerPoolUri'
|
|
582
590
|
end
|
|
583
591
|
end
|
|
584
592
|
|
|
@@ -643,6 +651,17 @@ module Google
|
|
|
643
651
|
end
|
|
644
652
|
end
|
|
645
653
|
|
|
654
|
+
class DirectVpcIngressConnectionInfo
|
|
655
|
+
# @private
|
|
656
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
657
|
+
property :network_uri, as: 'networkUri'
|
|
658
|
+
property :region, as: 'region'
|
|
659
|
+
property :selected_ip_address, as: 'selectedIpAddress'
|
|
660
|
+
property :selected_ip_range, as: 'selectedIpRange'
|
|
661
|
+
property :subnetwork_uri, as: 'subnetworkUri'
|
|
662
|
+
end
|
|
663
|
+
end
|
|
664
|
+
|
|
646
665
|
class DropInfo
|
|
647
666
|
# @private
|
|
648
667
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1269,6 +1288,8 @@ module Google
|
|
|
1269
1288
|
property :description, as: 'description'
|
|
1270
1289
|
property :direct_vpc_egress_connection, as: 'directVpcEgressConnection', class: Google::Apis::NetworkmanagementV1beta1::DirectVpcEgressConnectionInfo, decorator: Google::Apis::NetworkmanagementV1beta1::DirectVpcEgressConnectionInfo::Representation
|
|
1271
1290
|
|
|
1291
|
+
property :direct_vpc_ingress_connection, as: 'directVpcIngressConnection', class: Google::Apis::NetworkmanagementV1beta1::DirectVpcIngressConnectionInfo, decorator: Google::Apis::NetworkmanagementV1beta1::DirectVpcIngressConnectionInfo::Representation
|
|
1292
|
+
|
|
1272
1293
|
property :dms_private_connection, as: 'dmsPrivateConnection', class: Google::Apis::NetworkmanagementV1beta1::PrivateConnectionInfo, decorator: Google::Apis::NetworkmanagementV1beta1::PrivateConnectionInfo::Representation
|
|
1273
1294
|
|
|
1274
1295
|
property :drop, as: 'drop', class: Google::Apis::NetworkmanagementV1beta1::DropInfo, decorator: Google::Apis::NetworkmanagementV1beta1::DropInfo::Representation
|
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.86.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.86.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:
|