google-apis-networkmanagement_v1beta1 0.60.0 → 0.61.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/networkmanagement_v1beta1/classes.rb +15 -1
- data/lib/google/apis/networkmanagement_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/networkmanagement_v1beta1/representations.rb +2 -0
- data/lib/google/apis/networkmanagement_v1beta1/service.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a15a8c5c290e92004b9ab620464fc02febe8e960eeead95e50d22cd77e5c4377
|
4
|
+
data.tar.gz: 6982f6ccf1e7419cdd3af70463cf7364a498553b2660c0658accb7b4d81a5c13
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7127e52cadc494d5b2b83240083caba7876671457d60f8c53cf094fa29fbb236a9369ffdd9ec45fde6852b80218aa153c4801be82052cf6cda75f9aa5e62704b
|
7
|
+
data.tar.gz: 3a46ce89fd5f8b0cf10a50d783d02e11b3dadaf923b97ebea3ec7446c5a14c7a46c7c9f7d2d9bad864498112abf4564ae36bf0f7e33cc3a611c6b88bc792aefe
|
data/CHANGELOG.md
CHANGED
@@ -363,6 +363,12 @@ module Google
|
|
363
363
|
class CloudRunRevisionEndpoint
|
364
364
|
include Google::Apis::Core::Hashable
|
365
365
|
|
366
|
+
# Output only. The URI of the Cloud Run service that the revision belongs to.
|
367
|
+
# The format is: projects/`project`/locations/`location`/services/`service`
|
368
|
+
# Corresponds to the JSON property `serviceUri`
|
369
|
+
# @return [String]
|
370
|
+
attr_accessor :service_uri
|
371
|
+
|
366
372
|
# A [Cloud Run](https://cloud.google.com/run) [revision](https://cloud.google.
|
367
373
|
# com/run/docs/reference/rest/v1/namespaces.revisions/get) URI. The format is:
|
368
374
|
# projects/`project`/locations/`location`/revisions/`revision`
|
@@ -376,6 +382,7 @@ module Google
|
|
376
382
|
|
377
383
|
# Update properties of this object
|
378
384
|
def update!(**args)
|
385
|
+
@service_uri = args[:service_uri] if args.key?(:service_uri)
|
379
386
|
@uri = args[:uri] if args.key?(:uri)
|
380
387
|
end
|
381
388
|
end
|
@@ -1328,7 +1335,8 @@ module Google
|
|
1328
1335
|
# @return [String]
|
1329
1336
|
attr_accessor :psc_network_attachment_uri
|
1330
1337
|
|
1331
|
-
# Indicates whether the Compute Engine instance is running.
|
1338
|
+
# Indicates whether the Compute Engine instance is running. Deprecated: use the `
|
1339
|
+
# status` field instead.
|
1332
1340
|
# Corresponds to the JSON property `running`
|
1333
1341
|
# @return [Boolean]
|
1334
1342
|
attr_accessor :running
|
@@ -1339,6 +1347,11 @@ module Google
|
|
1339
1347
|
# @return [String]
|
1340
1348
|
attr_accessor :service_account
|
1341
1349
|
|
1350
|
+
# The status of the instance.
|
1351
|
+
# Corresponds to the JSON property `status`
|
1352
|
+
# @return [String]
|
1353
|
+
attr_accessor :status
|
1354
|
+
|
1342
1355
|
# URI of a Compute Engine instance.
|
1343
1356
|
# Corresponds to the JSON property `uri`
|
1344
1357
|
# @return [String]
|
@@ -1359,6 +1372,7 @@ module Google
|
|
1359
1372
|
@psc_network_attachment_uri = args[:psc_network_attachment_uri] if args.key?(:psc_network_attachment_uri)
|
1360
1373
|
@running = args[:running] if args.key?(:running)
|
1361
1374
|
@service_account = args[:service_account] if args.key?(:service_account)
|
1375
|
+
@status = args[:status] if args.key?(:status)
|
1362
1376
|
@uri = args[:uri] if args.key?(:uri)
|
1363
1377
|
end
|
1364
1378
|
end
|
@@ -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.61.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 = "20250604"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -486,6 +486,7 @@ module Google
|
|
486
486
|
class CloudRunRevisionEndpoint
|
487
487
|
# @private
|
488
488
|
class Representation < Google::Apis::Core::JsonRepresentation
|
489
|
+
property :service_uri, as: 'serviceUri'
|
489
490
|
property :uri, as: 'uri'
|
490
491
|
end
|
491
492
|
end
|
@@ -712,6 +713,7 @@ module Google
|
|
712
713
|
property :psc_network_attachment_uri, as: 'pscNetworkAttachmentUri'
|
713
714
|
property :running, as: 'running'
|
714
715
|
property :service_account, as: 'serviceAccount'
|
716
|
+
property :status, as: 'status'
|
715
717
|
property :uri, as: 'uri'
|
716
718
|
end
|
717
719
|
end
|
@@ -1296,7 +1296,7 @@ module Google
|
|
1296
1296
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1297
1297
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1298
1298
|
def query_project_location_vpc_flow_logs_config_org_vpc_flow_logs_configs(parent, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1299
|
-
command = make_simple_command(:get, 'v1beta1/{+parent}:queryOrgVpcFlowLogsConfigs', options)
|
1299
|
+
command = make_simple_command(:get, 'v1beta1/{+parent}/vpcFlowLogsConfigs:queryOrgVpcFlowLogsConfigs', options)
|
1300
1300
|
command.response_representation = Google::Apis::NetworkmanagementV1beta1::QueryOrgVpcFlowLogsConfigsResponse::Representation
|
1301
1301
|
command.response_class = Google::Apis::NetworkmanagementV1beta1::QueryOrgVpcFlowLogsConfigsResponse
|
1302
1302
|
command.params['parent'] = parent unless parent.nil?
|
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.61.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.61.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:
|