google-apis-networkmanagement_v1beta1 0.83.0 → 0.85.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: d056e5cb4b2d2fbce4aee0e48934a1aecfa8487c7474aba83eef7573df4604fe
4
- data.tar.gz: 180320799e914e8c3abbc410b9b8315d6af6ab0a87a89a52ec5d26a8e57a6e04
3
+ metadata.gz: 8d84e3064619b3ee2417d499400e2d5c3622d0e90b662d5d5e78ad62c32156b3
4
+ data.tar.gz: aadd85324c7ba7d7c79a0370029b0f89e3cea6fe325aee372f0b6117cbe03457
5
5
  SHA512:
6
- metadata.gz: 487e7a86303eff8bff4e5d022b047689d4ad77201e2ae709d2a43ba043b8debbfff8d2e2c7c376a7f497012ff5596d9e5129413569c4f022be1da75e9d7eb9c5
7
- data.tar.gz: 03cf6a2ec19ed60ccec980aeb9179e331ac9beb5e55a06af1cb6f29c49afd561bba31edcded182482f6e8d3efc4146b3baa48e7aab06fec793f8122dd9960230
6
+ metadata.gz: 3cd80eaa96d3d5edaf032a31c5c19ec0177e5548baca1d5f4c0136c585de83ba640628fb03c86f47705d2294d8267b760b73721ddef13cb9454b9d49da6844cc
7
+ data.tar.gz: 8f1bc5544a03e07bb6480eea99fe3d62e9f394fa172e97e976489b4b2fcd24637826f358408a95b103f6e165e63f2007a42030a791774822e2d234eb8cd67a93
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-networkmanagement_v1beta1
2
2
 
3
+ ### v0.85.0 (2026-08-30)
4
+
5
+ * Regenerated from discovery document revision 20260819
6
+
7
+ ### v0.84.0 (2026-08-23)
8
+
9
+ * Regenerated from discovery document revision 20260812
10
+
3
11
  ### v0.83.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
 
@@ -3608,6 +3626,12 @@ module Google
3608
3626
  # @return [Google::Apis::NetworkmanagementV1beta1::StorageBucketInfo]
3609
3627
  attr_accessor :storage_bucket
3610
3628
 
3629
+ # For display only. Metadata associated with a step that was redacted due to
3630
+ # missing permissions.
3631
+ # Corresponds to the JSON property `viewerPermissionMissingInfo`
3632
+ # @return [Google::Apis::NetworkmanagementV1beta1::ViewerPermissionMissingInfo]
3633
+ attr_accessor :viewer_permission_missing_info
3634
+
3611
3635
  # For display only. Metadata associated with a VPC connector.
3612
3636
  # Corresponds to the JSON property `vpcConnector`
3613
3637
  # @return [Google::Apis::NetworkmanagementV1beta1::VpcConnectorInfo]
@@ -3669,6 +3693,7 @@ module Google
3669
3693
  @serverless_neg = args[:serverless_neg] if args.key?(:serverless_neg)
3670
3694
  @state = args[:state] if args.key?(:state)
3671
3695
  @storage_bucket = args[:storage_bucket] if args.key?(:storage_bucket)
3696
+ @viewer_permission_missing_info = args[:viewer_permission_missing_info] if args.key?(:viewer_permission_missing_info)
3672
3697
  @vpc_connector = args[:vpc_connector] if args.key?(:vpc_connector)
3673
3698
  @vpn_gateway = args[:vpn_gateway] if args.key?(:vpn_gateway)
3674
3699
  @vpn_tunnel = args[:vpn_tunnel] if args.key?(:vpn_tunnel)
@@ -3778,6 +3803,26 @@ module Google
3778
3803
  end
3779
3804
  end
3780
3805
 
3806
+ # For display only. Metadata associated with a step that was redacted due to
3807
+ # missing permissions.
3808
+ class ViewerPermissionMissingInfo
3809
+ include Google::Apis::Core::Hashable
3810
+
3811
+ # Types of the resources that the user does not have permission to view.
3812
+ # Corresponds to the JSON property `resourceTypes`
3813
+ # @return [Array<String>]
3814
+ attr_accessor :resource_types
3815
+
3816
+ def initialize(**args)
3817
+ update!(**args)
3818
+ end
3819
+
3820
+ # Update properties of this object
3821
+ def update!(**args)
3822
+ @resource_types = args[:resource_types] if args.key?(:resource_types)
3823
+ end
3824
+ end
3825
+
3781
3826
  # For display only. Metadata associated with a VPC connector.
3782
3827
  class VpcConnectorInfo
3783
3828
  include Google::Apis::Core::Hashable
@@ -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.83.0"
19
+ GEM_VERSION = "0.85.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
@@ -448,6 +448,12 @@ module Google
448
448
  include Google::Apis::Core::JsonObjectSupport
449
449
  end
450
450
 
451
+ class ViewerPermissionMissingInfo
452
+ class Representation < Google::Apis::Core::JsonRepresentation; end
453
+
454
+ include Google::Apis::Core::JsonObjectSupport
455
+ end
456
+
451
457
  class VpcConnectorInfo
452
458
  class Representation < Google::Apis::Core::JsonRepresentation; end
453
459
 
@@ -563,6 +569,7 @@ module Google
563
569
  class Representation < Google::Apis::Core::JsonRepresentation
564
570
  property :service_uri, as: 'serviceUri'
565
571
  property :uri, as: 'uri'
572
+ property :worker_pool_uri, as: 'workerPoolUri'
566
573
  end
567
574
  end
568
575
 
@@ -573,6 +580,7 @@ module Google
573
580
  property :location, as: 'location'
574
581
  property :service_uri, as: 'serviceUri'
575
582
  property :uri, as: 'uri'
583
+ property :worker_pool_uri, as: 'workerPoolUri'
576
584
  end
577
585
  end
578
586
 
@@ -1319,6 +1327,8 @@ module Google
1319
1327
  property :state, as: 'state'
1320
1328
  property :storage_bucket, as: 'storageBucket', class: Google::Apis::NetworkmanagementV1beta1::StorageBucketInfo, decorator: Google::Apis::NetworkmanagementV1beta1::StorageBucketInfo::Representation
1321
1329
 
1330
+ property :viewer_permission_missing_info, as: 'viewerPermissionMissingInfo', class: Google::Apis::NetworkmanagementV1beta1::ViewerPermissionMissingInfo, decorator: Google::Apis::NetworkmanagementV1beta1::ViewerPermissionMissingInfo::Representation
1331
+
1322
1332
  property :vpc_connector, as: 'vpcConnector', class: Google::Apis::NetworkmanagementV1beta1::VpcConnectorInfo, decorator: Google::Apis::NetworkmanagementV1beta1::VpcConnectorInfo::Representation
1323
1333
 
1324
1334
  property :vpn_gateway, as: 'vpnGateway', class: Google::Apis::NetworkmanagementV1beta1::VpnGatewayInfo, decorator: Google::Apis::NetworkmanagementV1beta1::VpnGatewayInfo::Representation
@@ -1360,6 +1370,13 @@ module Google
1360
1370
  end
1361
1371
  end
1362
1372
 
1373
+ class ViewerPermissionMissingInfo
1374
+ # @private
1375
+ class Representation < Google::Apis::Core::JsonRepresentation
1376
+ collection :resource_types, as: 'resourceTypes'
1377
+ end
1378
+ end
1379
+
1363
1380
  class VpcConnectorInfo
1364
1381
  # @private
1365
1382
  class Representation < Google::Apis::Core::JsonRepresentation
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.83.0
4
+ version: 0.85.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.83.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.85.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: