google-apis-networkmanagement_v1 0.87.0 → 0.89.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: 9d18156e5e3ed7c3e7edcc81f28b7c77a2394d2a889113feba6d6023071299c1
4
- data.tar.gz: 7c96db358a2ae68b69e6944645c72f622801e3eb4d93fa76eb6c323315dfd16f
3
+ metadata.gz: 8a8199231eac6d5bd8a1fff493fbac883fab36c9d2bbfacaffad7507dc59b07c
4
+ data.tar.gz: 989198407c10f5a9e890ff4b390de5955d4fd6610b317f73af092c7283cdc509
5
5
  SHA512:
6
- metadata.gz: 690c6cd098f1135de91a2671e9cbafeb05a9a129d9546540af6ab1562fd1795639f955ac3c36b5600b53e9cb95012559cad166ffa7afaf74818eb067d098ecaf
7
- data.tar.gz: ffa5ed6b94d7e8f14040469065b997a2fd9eef9eb598b5147a209cc2c4394ccabd676c74f1044e9fe2111cbd27c2d8395da4accc8b04323045d8165a72caaaad
6
+ metadata.gz: 5b5a0418ca868c1af88af0af085ff68e532afb309cbb1dbbf1638d499e82e9016ad8a5bdbee5621308a32e305f534bdedc9b5705256da9fdcbf709f48aa0a0f9
7
+ data.tar.gz: 5c8c8b11ac90619fece7c8d2817a17bef273a61910a96e6bd0497d661e09a5b5177d174cc8b8b6b4279b1b91d01057081e78304f243cbf403a59521cd8e3f59e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-networkmanagement_v1
2
2
 
3
+ ### v0.89.0 (2026-08-30)
4
+
5
+ * Regenerated from discovery document revision 20260819
6
+
7
+ ### v0.88.0 (2026-08-23)
8
+
9
+ * Regenerated from discovery document revision 20260812
10
+
3
11
  ### v0.87.0 (2026-08-02)
4
12
 
5
13
  * Regenerated from discovery document revision 20260724
@@ -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
 
@@ -4262,6 +4280,12 @@ module Google
4262
4280
  # @return [Google::Apis::NetworkmanagementV1::StorageBucketInfo]
4263
4281
  attr_accessor :storage_bucket
4264
4282
 
4283
+ # For display only. Metadata associated with a step that was redacted due to
4284
+ # missing permissions.
4285
+ # Corresponds to the JSON property `viewerPermissionMissingInfo`
4286
+ # @return [Google::Apis::NetworkmanagementV1::ViewerPermissionMissingInfo]
4287
+ attr_accessor :viewer_permission_missing_info
4288
+
4265
4289
  # For display only. Metadata associated with a VPC connector.
4266
4290
  # Corresponds to the JSON property `vpcConnector`
4267
4291
  # @return [Google::Apis::NetworkmanagementV1::VpcConnectorInfo]
@@ -4323,6 +4347,7 @@ module Google
4323
4347
  @serverless_neg = args[:serverless_neg] if args.key?(:serverless_neg)
4324
4348
  @state = args[:state] if args.key?(:state)
4325
4349
  @storage_bucket = args[:storage_bucket] if args.key?(:storage_bucket)
4350
+ @viewer_permission_missing_info = args[:viewer_permission_missing_info] if args.key?(:viewer_permission_missing_info)
4326
4351
  @vpc_connector = args[:vpc_connector] if args.key?(:vpc_connector)
4327
4352
  @vpn_gateway = args[:vpn_gateway] if args.key?(:vpn_gateway)
4328
4353
  @vpn_tunnel = args[:vpn_tunnel] if args.key?(:vpn_tunnel)
@@ -4432,6 +4457,26 @@ module Google
4432
4457
  end
4433
4458
  end
4434
4459
 
4460
+ # For display only. Metadata associated with a step that was redacted due to
4461
+ # missing permissions.
4462
+ class ViewerPermissionMissingInfo
4463
+ include Google::Apis::Core::Hashable
4464
+
4465
+ # Types of the resources that the user does not have permission to view.
4466
+ # Corresponds to the JSON property `resourceTypes`
4467
+ # @return [Array<String>]
4468
+ attr_accessor :resource_types
4469
+
4470
+ def initialize(**args)
4471
+ update!(**args)
4472
+ end
4473
+
4474
+ # Update properties of this object
4475
+ def update!(**args)
4476
+ @resource_types = args[:resource_types] if args.key?(:resource_types)
4477
+ end
4478
+ end
4479
+
4435
4480
  # For display only. Metadata associated with a VPC connector.
4436
4481
  class VpcConnectorInfo
4437
4482
  include Google::Apis::Core::Hashable
@@ -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.87.0"
19
+ GEM_VERSION = "0.89.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 = "20260724"
25
+ REVISION = "20260819"
26
26
  end
27
27
  end
28
28
  end
@@ -532,6 +532,12 @@ module Google
532
532
  include Google::Apis::Core::JsonObjectSupport
533
533
  end
534
534
 
535
+ class ViewerPermissionMissingInfo
536
+ class Representation < Google::Apis::Core::JsonRepresentation; end
537
+
538
+ include Google::Apis::Core::JsonObjectSupport
539
+ end
540
+
535
541
  class VpcConnectorInfo
536
542
  class Representation < Google::Apis::Core::JsonRepresentation; end
537
543
 
@@ -653,6 +659,7 @@ module Google
653
659
  class Representation < Google::Apis::Core::JsonRepresentation
654
660
  property :service_uri, as: 'serviceUri'
655
661
  property :uri, as: 'uri'
662
+ property :worker_pool_uri, as: 'workerPoolUri'
656
663
  end
657
664
  end
658
665
 
@@ -663,6 +670,7 @@ module Google
663
670
  property :location, as: 'location'
664
671
  property :service_uri, as: 'serviceUri'
665
672
  property :uri, as: 'uri'
673
+ property :worker_pool_uri, as: 'workerPoolUri'
666
674
  end
667
675
  end
668
676
 
@@ -1576,6 +1584,8 @@ module Google
1576
1584
  property :state, as: 'state'
1577
1585
  property :storage_bucket, as: 'storageBucket', class: Google::Apis::NetworkmanagementV1::StorageBucketInfo, decorator: Google::Apis::NetworkmanagementV1::StorageBucketInfo::Representation
1578
1586
 
1587
+ property :viewer_permission_missing_info, as: 'viewerPermissionMissingInfo', class: Google::Apis::NetworkmanagementV1::ViewerPermissionMissingInfo, decorator: Google::Apis::NetworkmanagementV1::ViewerPermissionMissingInfo::Representation
1588
+
1579
1589
  property :vpc_connector, as: 'vpcConnector', class: Google::Apis::NetworkmanagementV1::VpcConnectorInfo, decorator: Google::Apis::NetworkmanagementV1::VpcConnectorInfo::Representation
1580
1590
 
1581
1591
  property :vpn_gateway, as: 'vpnGateway', class: Google::Apis::NetworkmanagementV1::VpnGatewayInfo, decorator: Google::Apis::NetworkmanagementV1::VpnGatewayInfo::Representation
@@ -1617,6 +1627,13 @@ module Google
1617
1627
  end
1618
1628
  end
1619
1629
 
1630
+ class ViewerPermissionMissingInfo
1631
+ # @private
1632
+ class Representation < Google::Apis::Core::JsonRepresentation
1633
+ collection :resource_types, as: 'resourceTypes'
1634
+ end
1635
+ end
1636
+
1620
1637
  class VpcConnectorInfo
1621
1638
  # @private
1622
1639
  class Representation < Google::Apis::Core::JsonRepresentation
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.87.0
4
+ version: 0.89.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.87.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.89.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: