google-apis-networkmanagement_v1beta1 0.79.0 → 0.80.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: 772ee4b6513cd62e9c07776a41a002dab0b7b3d6de9c730a04e21124b110f250
4
- data.tar.gz: d0dce601b77d5c56cd1122b6566abc1f87415634fda9edac735929b1f3aa9dda
3
+ metadata.gz: ab3991c181505a46ec423af4b7bbde0d3fd12705151e704fc05742e92e83b3c6
4
+ data.tar.gz: 02e9290572758f77694dda083aec41740cdf6773258995d2787e932668c3e832
5
5
  SHA512:
6
- metadata.gz: 5745e3bd78e98c1701a2f14130b403c4a999514f61ff45b99e86aeafc5b0328398b05069095401214726895d01e91bb71ead85b40253babd55361ef4789879b3
7
- data.tar.gz: 7688cf31ae7c595992b9d81842c9091590f777836284bf7f8e0dd114000fa9103eae174490a475d93b7e5d6e05e8bee8efcc5264e9e1b0268c88fa78d47c8387
6
+ metadata.gz: d50b90951e636bb8412a6f7ed64428432c97a908e0bc44ffba88b4d1674bec1262d257ca811f5db2261e63b1eaca4dd7e925ebb094785db873e97521cf7d045c
7
+ data.tar.gz: f10e4641be00cdba327c2ad8eb2fb422558af4284566d625d0f1d58cfd62217b61e9bbafedd0049347a7b6c7fd321ee1503347ae555e949d1daff34307a2f924
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-networkmanagement_v1beta1
2
2
 
3
+ ### v0.80.0 (2026-05-31)
4
+
5
+ * Regenerated from discovery document revision 20260520
6
+
3
7
  ### v0.79.0 (2026-05-17)
4
8
 
5
9
  * Regenerated from discovery document revision 20260506
@@ -359,6 +359,37 @@ module Google
359
359
  end
360
360
  end
361
361
 
362
+ # For display only. Metadata associated with a Cloud Run job.
363
+ class CloudRunJobInfo
364
+ include Google::Apis::Core::Hashable
365
+
366
+ # Name of a Cloud Run job.
367
+ # Corresponds to the JSON property `displayName`
368
+ # @return [String]
369
+ attr_accessor :display_name
370
+
371
+ # Location in which this job is deployed.
372
+ # Corresponds to the JSON property `location`
373
+ # @return [String]
374
+ attr_accessor :location
375
+
376
+ # URI of a Cloud Run job.
377
+ # Corresponds to the JSON property `uri`
378
+ # @return [String]
379
+ attr_accessor :uri
380
+
381
+ def initialize(**args)
382
+ update!(**args)
383
+ end
384
+
385
+ # Update properties of this object
386
+ def update!(**args)
387
+ @display_name = args[:display_name] if args.key?(:display_name)
388
+ @location = args[:location] if args.key?(:location)
389
+ @uri = args[:uri] if args.key?(:uri)
390
+ end
391
+ end
392
+
362
393
  # Wrapper for Cloud Run revision attributes.
363
394
  class CloudRunRevisionEndpoint
364
395
  include Google::Apis::Core::Hashable
@@ -3286,6 +3317,11 @@ module Google
3286
3317
  # @return [Google::Apis::NetworkmanagementV1beta1::CloudFunctionInfo]
3287
3318
  attr_accessor :cloud_function
3288
3319
 
3320
+ # For display only. Metadata associated with a Cloud Run job.
3321
+ # Corresponds to the JSON property `cloudRunJob`
3322
+ # @return [Google::Apis::NetworkmanagementV1beta1::CloudRunJobInfo]
3323
+ attr_accessor :cloud_run_job
3324
+
3289
3325
  # For display only. Metadata associated with a Cloud Run revision.
3290
3326
  # Corresponds to the JSON property `cloudRunRevision`
3291
3327
  # @return [Google::Apis::NetworkmanagementV1beta1::CloudRunRevisionInfo]
@@ -3500,6 +3536,7 @@ module Google
3500
3536
  @app_engine_version = args[:app_engine_version] if args.key?(:app_engine_version)
3501
3537
  @causes_drop = args[:causes_drop] if args.key?(:causes_drop)
3502
3538
  @cloud_function = args[:cloud_function] if args.key?(:cloud_function)
3539
+ @cloud_run_job = args[:cloud_run_job] if args.key?(:cloud_run_job)
3503
3540
  @cloud_run_revision = args[:cloud_run_revision] if args.key?(:cloud_run_revision)
3504
3541
  @cloud_sql_instance = args[:cloud_sql_instance] if args.key?(:cloud_sql_instance)
3505
3542
  @datastream_private_connection = args[:datastream_private_connection] if args.key?(:datastream_private_connection)
@@ -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.79.0"
19
+ GEM_VERSION = "0.80.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 = "20260506"
25
+ REVISION = "20260520"
26
26
  end
27
27
  end
28
28
  end
@@ -76,6 +76,12 @@ module Google
76
76
  include Google::Apis::Core::JsonObjectSupport
77
77
  end
78
78
 
79
+ class CloudRunJobInfo
80
+ class Representation < Google::Apis::Core::JsonRepresentation; end
81
+
82
+ include Google::Apis::Core::JsonObjectSupport
83
+ end
84
+
79
85
  class CloudRunRevisionEndpoint
80
86
  class Representation < Google::Apis::Core::JsonRepresentation; end
81
87
 
@@ -543,6 +549,15 @@ module Google
543
549
  end
544
550
  end
545
551
 
552
+ class CloudRunJobInfo
553
+ # @private
554
+ class Representation < Google::Apis::Core::JsonRepresentation
555
+ property :display_name, as: 'displayName'
556
+ property :location, as: 'location'
557
+ property :uri, as: 'uri'
558
+ end
559
+ end
560
+
546
561
  class CloudRunRevisionEndpoint
547
562
  # @private
548
563
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1233,6 +1248,8 @@ module Google
1233
1248
  property :causes_drop, as: 'causesDrop'
1234
1249
  property :cloud_function, as: 'cloudFunction', class: Google::Apis::NetworkmanagementV1beta1::CloudFunctionInfo, decorator: Google::Apis::NetworkmanagementV1beta1::CloudFunctionInfo::Representation
1235
1250
 
1251
+ property :cloud_run_job, as: 'cloudRunJob', class: Google::Apis::NetworkmanagementV1beta1::CloudRunJobInfo, decorator: Google::Apis::NetworkmanagementV1beta1::CloudRunJobInfo::Representation
1252
+
1236
1253
  property :cloud_run_revision, as: 'cloudRunRevision', class: Google::Apis::NetworkmanagementV1beta1::CloudRunRevisionInfo, decorator: Google::Apis::NetworkmanagementV1beta1::CloudRunRevisionInfo::Representation
1237
1254
 
1238
1255
  property :cloud_sql_instance, as: 'cloudSqlInstance', class: Google::Apis::NetworkmanagementV1beta1::CloudSqlInstanceInfo, decorator: Google::Apis::NetworkmanagementV1beta1::CloudSqlInstanceInfo::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.79.0
4
+ version: 0.80.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.79.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.80.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: