google-apis-networkmanagement_v1beta1 0.84.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8d84e3064619b3ee2417d499400e2d5c3622d0e90b662d5d5e78ad62c32156b3
|
|
4
|
+
data.tar.gz: aadd85324c7ba7d7c79a0370029b0f89e3cea6fe325aee372f0b6117cbe03457
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3cd80eaa96d3d5edaf032a31c5c19ec0177e5548baca1d5f4c0136c585de83ba640628fb03c86f47705d2294d8267b760b73721ddef13cb9454b9d49da6844cc
|
|
7
|
+
data.tar.gz: 8f1bc5544a03e07bb6480eea99fe3d62e9f394fa172e97e976489b4b2fcd24637826f358408a95b103f6e165e63f2007a42030a791774822e2d234eb8cd67a93
|
data/CHANGELOG.md
CHANGED
|
@@ -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
|
|
|
@@ -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.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 = "
|
|
25
|
+
REVISION = "20260819"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -569,6 +569,7 @@ module Google
|
|
|
569
569
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
570
570
|
property :service_uri, as: 'serviceUri'
|
|
571
571
|
property :uri, as: 'uri'
|
|
572
|
+
property :worker_pool_uri, as: 'workerPoolUri'
|
|
572
573
|
end
|
|
573
574
|
end
|
|
574
575
|
|
|
@@ -579,6 +580,7 @@ module Google
|
|
|
579
580
|
property :location, as: 'location'
|
|
580
581
|
property :service_uri, as: 'serviceUri'
|
|
581
582
|
property :uri, as: 'uri'
|
|
583
|
+
property :worker_pool_uri, as: 'workerPoolUri'
|
|
582
584
|
end
|
|
583
585
|
end
|
|
584
586
|
|
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.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.
|
|
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:
|