google-apis-networkmanagement_v1 0.88.0 → 0.90.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: 358b49748d0964bd82660dd5a0e6052429f16abb8c96f4aaa7fa938c2137d8cd
4
- data.tar.gz: 89c9e8cd171bfd0760e3c621c2d08e0b7ffde9fd573c4c62011203252ce123df
3
+ metadata.gz: 30768ad91017a893b6789909da2f56ccc5259c5a39bc2c156cab0ee092b83bcb
4
+ data.tar.gz: 5b457fe64b4bca574851afea75571e97ebe679206464a6efbdcd9fd75855cdde
5
5
  SHA512:
6
- metadata.gz: 57c5c7ced2cfe0ac14bb9777d6027ae8c3f87e653ffe41445947fb41b379f0df1e8294f3b10127cc5855138b48ff6049f7283a6ddb20e7161e0c42b8c0a6ec9e
7
- data.tar.gz: 6fbecab108a31a7dc79cd5a62c24e66d16da0cd08b6abf98e8c82ca5bb1dd01f53b97694d7b7111ec5130f95b51f7222c31563ca9907a5a91e8daf9f0905843e
6
+ metadata.gz: 5f8fb984c43420be90c2fd2d3dbe0f910057aa5cdfccdc2d0efa97051b3fdabbaea0bf86ce71b8a4f6b5978bd33c9cd8277f8ad54d05e49b794d543cbc972551
7
+ data.tar.gz: ad983ef493f4168675a24ca8e3e12ef2868719f0d7180ca6143c7ee415864651be559bfcfcd0052e184bc0db10571f844ac593bc41e889a62ed59155e2299e80
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-networkmanagement_v1
2
2
 
3
+ ### v0.90.0 (2026-09-20)
4
+
5
+ * Regenerated from discovery document revision 20260909
6
+
7
+ ### v0.89.0 (2026-08-30)
8
+
9
+ * Regenerated from discovery document revision 20260819
10
+
3
11
  ### v0.88.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
@@ -4104,6 +4168,12 @@ module Google
4104
4168
  # @return [Google::Apis::NetworkmanagementV1::DirectVpcEgressConnectionInfo]
4105
4169
  attr_accessor :direct_vpc_egress_connection
4106
4170
 
4171
+ # For display only. Metadata associated with a serverless direct VPC ingress
4172
+ # connection.
4173
+ # Corresponds to the JSON property `directVpcIngressConnection`
4174
+ # @return [Google::Apis::NetworkmanagementV1::DirectVpcIngressConnectionInfo]
4175
+ attr_accessor :direct_vpc_ingress_connection
4176
+
4107
4177
  # For display only. Metadata associated with a Private Connection.
4108
4178
  # Corresponds to the JSON property `dmsPrivateConnection`
4109
4179
  # @return [Google::Apis::NetworkmanagementV1::PrivateConnectionInfo]
@@ -4300,6 +4370,7 @@ module Google
4300
4370
  @deliver = args[:deliver] if args.key?(:deliver)
4301
4371
  @description = args[:description] if args.key?(:description)
4302
4372
  @direct_vpc_egress_connection = args[:direct_vpc_egress_connection] if args.key?(:direct_vpc_egress_connection)
4373
+ @direct_vpc_ingress_connection = args[:direct_vpc_ingress_connection] if args.key?(:direct_vpc_ingress_connection)
4303
4374
  @dms_private_connection = args[:dms_private_connection] if args.key?(:dms_private_connection)
4304
4375
  @drop = args[:drop] if args.key?(:drop)
4305
4376
  @endpoint = args[:endpoint] if args.key?(:endpoint)
@@ -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.88.0"
19
+ GEM_VERSION = "0.90.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 = "20260812"
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
 
@@ -659,6 +665,7 @@ module Google
659
665
  class Representation < Google::Apis::Core::JsonRepresentation
660
666
  property :service_uri, as: 'serviceUri'
661
667
  property :uri, as: 'uri'
668
+ property :worker_pool_uri, as: 'workerPoolUri'
662
669
  end
663
670
  end
664
671
 
@@ -669,6 +676,7 @@ module Google
669
676
  property :location, as: 'location'
670
677
  property :service_uri, as: 'serviceUri'
671
678
  property :uri, as: 'uri'
679
+ property :worker_pool_uri, as: 'workerPoolUri'
672
680
  end
673
681
  end
674
682
 
@@ -733,6 +741,17 @@ module Google
733
741
  end
734
742
  end
735
743
 
744
+ class DirectVpcIngressConnectionInfo
745
+ # @private
746
+ class Representation < Google::Apis::Core::JsonRepresentation
747
+ property :network_uri, as: 'networkUri'
748
+ property :region, as: 'region'
749
+ property :selected_ip_address, as: 'selectedIpAddress'
750
+ property :selected_ip_range, as: 'selectedIpRange'
751
+ property :subnetwork_uri, as: 'subnetworkUri'
752
+ end
753
+ end
754
+
736
755
  class DropInfo
737
756
  # @private
738
757
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1526,6 +1545,8 @@ module Google
1526
1545
  property :description, as: 'description'
1527
1546
  property :direct_vpc_egress_connection, as: 'directVpcEgressConnection', class: Google::Apis::NetworkmanagementV1::DirectVpcEgressConnectionInfo, decorator: Google::Apis::NetworkmanagementV1::DirectVpcEgressConnectionInfo::Representation
1528
1547
 
1548
+ property :direct_vpc_ingress_connection, as: 'directVpcIngressConnection', class: Google::Apis::NetworkmanagementV1::DirectVpcIngressConnectionInfo, decorator: Google::Apis::NetworkmanagementV1::DirectVpcIngressConnectionInfo::Representation
1549
+
1529
1550
  property :dms_private_connection, as: 'dmsPrivateConnection', class: Google::Apis::NetworkmanagementV1::PrivateConnectionInfo, decorator: Google::Apis::NetworkmanagementV1::PrivateConnectionInfo::Representation
1530
1551
 
1531
1552
  property :drop, as: 'drop', class: Google::Apis::NetworkmanagementV1::DropInfo, decorator: Google::Apis::NetworkmanagementV1::DropInfo::Representation
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.88.0
4
+ version: 0.90.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.88.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.90.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: