google-apis-networkmanagement_v1beta1 0.78.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ab3991c181505a46ec423af4b7bbde0d3fd12705151e704fc05742e92e83b3c6
|
|
4
|
+
data.tar.gz: 02e9290572758f77694dda083aec41740cdf6773258995d2787e932668c3e832
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d50b90951e636bb8412a6f7ed64428432c97a908e0bc44ffba88b4d1674bec1262d257ca811f5db2261e63b1eaca4dd7e925ebb094785db873e97521cf7d045c
|
|
7
|
+
data.tar.gz: f10e4641be00cdba327c2ad8eb2fb422558af4284566d625d0f1d58cfd62217b61e9bbafedd0049347a7b6c7fd321ee1503347ae555e949d1daff34307a2f924
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
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
|
+
|
|
7
|
+
### v0.79.0 (2026-05-17)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260506
|
|
10
|
+
|
|
3
11
|
### v0.78.0 (2026-05-03)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260424
|
|
@@ -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
|
|
@@ -892,6 +923,14 @@ module Google
|
|
|
892
923
|
# @return [Google::Apis::NetworkmanagementV1beta1::CloudFunctionEndpoint]
|
|
893
924
|
attr_accessor :cloud_function
|
|
894
925
|
|
|
926
|
+
# A [Cloud Run](https://cloud.google.com/run) [job](https://docs.cloud.google.
|
|
927
|
+
# com/run/docs/reference/rest/v2/projects.locations.jobs#Job) URI. Applicable
|
|
928
|
+
# only to source endpoint. The format is: projects/`project`/locations/`location`
|
|
929
|
+
# /jobs/`job`
|
|
930
|
+
# Corresponds to the JSON property `cloudRunJob`
|
|
931
|
+
# @return [String]
|
|
932
|
+
attr_accessor :cloud_run_job
|
|
933
|
+
|
|
895
934
|
# Wrapper for Cloud Run revision attributes.
|
|
896
935
|
# Corresponds to the JSON property `cloudRunRevision`
|
|
897
936
|
# @return [Google::Apis::NetworkmanagementV1beta1::CloudRunRevisionEndpoint]
|
|
@@ -1016,6 +1055,7 @@ module Google
|
|
|
1016
1055
|
def update!(**args)
|
|
1017
1056
|
@app_engine_version = args[:app_engine_version] if args.key?(:app_engine_version)
|
|
1018
1057
|
@cloud_function = args[:cloud_function] if args.key?(:cloud_function)
|
|
1058
|
+
@cloud_run_job = args[:cloud_run_job] if args.key?(:cloud_run_job)
|
|
1019
1059
|
@cloud_run_revision = args[:cloud_run_revision] if args.key?(:cloud_run_revision)
|
|
1020
1060
|
@cloud_sql_instance = args[:cloud_sql_instance] if args.key?(:cloud_sql_instance)
|
|
1021
1061
|
@datastream_private_connection = args[:datastream_private_connection] if args.key?(:datastream_private_connection)
|
|
@@ -3277,6 +3317,11 @@ module Google
|
|
|
3277
3317
|
# @return [Google::Apis::NetworkmanagementV1beta1::CloudFunctionInfo]
|
|
3278
3318
|
attr_accessor :cloud_function
|
|
3279
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
|
+
|
|
3280
3325
|
# For display only. Metadata associated with a Cloud Run revision.
|
|
3281
3326
|
# Corresponds to the JSON property `cloudRunRevision`
|
|
3282
3327
|
# @return [Google::Apis::NetworkmanagementV1beta1::CloudRunRevisionInfo]
|
|
@@ -3491,6 +3536,7 @@ module Google
|
|
|
3491
3536
|
@app_engine_version = args[:app_engine_version] if args.key?(:app_engine_version)
|
|
3492
3537
|
@causes_drop = args[:causes_drop] if args.key?(:causes_drop)
|
|
3493
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)
|
|
3494
3540
|
@cloud_run_revision = args[:cloud_run_revision] if args.key?(:cloud_run_revision)
|
|
3495
3541
|
@cloud_sql_instance = args[:cloud_sql_instance] if args.key?(:cloud_sql_instance)
|
|
3496
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.
|
|
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 = "
|
|
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
|
|
@@ -674,6 +689,7 @@ module Google
|
|
|
674
689
|
|
|
675
690
|
property :cloud_function, as: 'cloudFunction', class: Google::Apis::NetworkmanagementV1beta1::CloudFunctionEndpoint, decorator: Google::Apis::NetworkmanagementV1beta1::CloudFunctionEndpoint::Representation
|
|
676
691
|
|
|
692
|
+
property :cloud_run_job, as: 'cloudRunJob'
|
|
677
693
|
property :cloud_run_revision, as: 'cloudRunRevision', class: Google::Apis::NetworkmanagementV1beta1::CloudRunRevisionEndpoint, decorator: Google::Apis::NetworkmanagementV1beta1::CloudRunRevisionEndpoint::Representation
|
|
678
694
|
|
|
679
695
|
property :cloud_sql_instance, as: 'cloudSqlInstance'
|
|
@@ -1232,6 +1248,8 @@ module Google
|
|
|
1232
1248
|
property :causes_drop, as: 'causesDrop'
|
|
1233
1249
|
property :cloud_function, as: 'cloudFunction', class: Google::Apis::NetworkmanagementV1beta1::CloudFunctionInfo, decorator: Google::Apis::NetworkmanagementV1beta1::CloudFunctionInfo::Representation
|
|
1234
1250
|
|
|
1251
|
+
property :cloud_run_job, as: 'cloudRunJob', class: Google::Apis::NetworkmanagementV1beta1::CloudRunJobInfo, decorator: Google::Apis::NetworkmanagementV1beta1::CloudRunJobInfo::Representation
|
|
1252
|
+
|
|
1235
1253
|
property :cloud_run_revision, as: 'cloudRunRevision', class: Google::Apis::NetworkmanagementV1beta1::CloudRunRevisionInfo, decorator: Google::Apis::NetworkmanagementV1beta1::CloudRunRevisionInfo::Representation
|
|
1236
1254
|
|
|
1237
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.
|
|
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.
|
|
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:
|