google-apis-networkmanagement_v1 0.83.0 → 0.84.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_v1/classes.rb +37 -0
- data/lib/google/apis/networkmanagement_v1/gem_version.rb +2 -2
- data/lib/google/apis/networkmanagement_v1/representations.rb +17 -0
- data/lib/google/apis/networkmanagement_v1/service.rb +12 -2
- 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: cc4b007491e507295f82250cbb1b4c69c1fd0311320701f7f466139309e71d7f
|
|
4
|
+
data.tar.gz: c44fa5f4351b7d3be09f9a17fc824b8f68c065fe3e9f2cce5c011945bb1f589f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b2e8f60ceea832ee4e12d7d5de8e2a954ea0ec5f72ca6fefbbfbee05afe50955cd4ac6bcd82e6149c145f0fb5a719e76106a6fb676066905bb3dfac7a4dfb8da
|
|
7
|
+
data.tar.gz: 1e9ec100dab3fe12a5012142240b1d5afd04e81c7264fadf344a50d60fc1143693abed9b190f871c7b38dc72043ef490bd4868aa95e4636a11ffc43ac6bb3a1e
|
data/CHANGELOG.md
CHANGED
|
@@ -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
|
|
@@ -3923,6 +3954,11 @@ module Google
|
|
|
3923
3954
|
# @return [Google::Apis::NetworkmanagementV1::CloudFunctionInfo]
|
|
3924
3955
|
attr_accessor :cloud_function
|
|
3925
3956
|
|
|
3957
|
+
# For display only. Metadata associated with a Cloud Run job.
|
|
3958
|
+
# Corresponds to the JSON property `cloudRunJob`
|
|
3959
|
+
# @return [Google::Apis::NetworkmanagementV1::CloudRunJobInfo]
|
|
3960
|
+
attr_accessor :cloud_run_job
|
|
3961
|
+
|
|
3926
3962
|
# For display only. Metadata associated with a Cloud Run revision.
|
|
3927
3963
|
# Corresponds to the JSON property `cloudRunRevision`
|
|
3928
3964
|
# @return [Google::Apis::NetworkmanagementV1::CloudRunRevisionInfo]
|
|
@@ -4137,6 +4173,7 @@ module Google
|
|
|
4137
4173
|
@app_engine_version = args[:app_engine_version] if args.key?(:app_engine_version)
|
|
4138
4174
|
@causes_drop = args[:causes_drop] if args.key?(:causes_drop)
|
|
4139
4175
|
@cloud_function = args[:cloud_function] if args.key?(:cloud_function)
|
|
4176
|
+
@cloud_run_job = args[:cloud_run_job] if args.key?(:cloud_run_job)
|
|
4140
4177
|
@cloud_run_revision = args[:cloud_run_revision] if args.key?(:cloud_run_revision)
|
|
4141
4178
|
@cloud_sql_instance = args[:cloud_sql_instance] if args.key?(:cloud_sql_instance)
|
|
4142
4179
|
@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 NetworkmanagementV1
|
|
18
18
|
# Version of the google-apis-networkmanagement_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.84.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
|
|
|
@@ -633,6 +639,15 @@ module Google
|
|
|
633
639
|
end
|
|
634
640
|
end
|
|
635
641
|
|
|
642
|
+
class CloudRunJobInfo
|
|
643
|
+
# @private
|
|
644
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
645
|
+
property :display_name, as: 'displayName'
|
|
646
|
+
property :location, as: 'location'
|
|
647
|
+
property :uri, as: 'uri'
|
|
648
|
+
end
|
|
649
|
+
end
|
|
650
|
+
|
|
636
651
|
class CloudRunRevisionEndpoint
|
|
637
652
|
# @private
|
|
638
653
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1488,6 +1503,8 @@ module Google
|
|
|
1488
1503
|
property :causes_drop, as: 'causesDrop'
|
|
1489
1504
|
property :cloud_function, as: 'cloudFunction', class: Google::Apis::NetworkmanagementV1::CloudFunctionInfo, decorator: Google::Apis::NetworkmanagementV1::CloudFunctionInfo::Representation
|
|
1490
1505
|
|
|
1506
|
+
property :cloud_run_job, as: 'cloudRunJob', class: Google::Apis::NetworkmanagementV1::CloudRunJobInfo, decorator: Google::Apis::NetworkmanagementV1::CloudRunJobInfo::Representation
|
|
1507
|
+
|
|
1491
1508
|
property :cloud_run_revision, as: 'cloudRunRevision', class: Google::Apis::NetworkmanagementV1::CloudRunRevisionInfo, decorator: Google::Apis::NetworkmanagementV1::CloudRunRevisionInfo::Representation
|
|
1492
1509
|
|
|
1493
1510
|
property :cloud_sql_instance, as: 'cloudSqlInstance', class: Google::Apis::NetworkmanagementV1::CloudSqlInstanceInfo, decorator: Google::Apis::NetworkmanagementV1::CloudSqlInstanceInfo::Representation
|
|
@@ -1189,6 +1189,10 @@ module Google
|
|
|
1189
1189
|
# @param [String] name
|
|
1190
1190
|
# Required. Name of the resource. Format: projects/`project`/locations/`location`
|
|
1191
1191
|
# /networkMonitoringProviders/`network_monitoring_provider`
|
|
1192
|
+
# @param [Boolean] private_connectivity_enabled
|
|
1193
|
+
# Optional. For Google Cloud MPs, this field indicates whether the Monitoring
|
|
1194
|
+
# Point is deployed in a Private Service Connect deployment. Not used for non-
|
|
1195
|
+
# Google Cloud MPs.
|
|
1192
1196
|
# @param [String] fields
|
|
1193
1197
|
# Selector specifying which fields to include in a partial response.
|
|
1194
1198
|
# @param [String] quota_user
|
|
@@ -1206,11 +1210,12 @@ module Google
|
|
|
1206
1210
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1207
1211
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1208
1212
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1209
|
-
def generate_project_location_network_monitoring_provider_monitoring_point_config(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
1213
|
+
def generate_project_location_network_monitoring_provider_monitoring_point_config(name, private_connectivity_enabled: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1210
1214
|
command = make_simple_command(:get, 'v1/{+name}:generateMonitoringPointConfig', options)
|
|
1211
1215
|
command.response_representation = Google::Apis::NetworkmanagementV1::GenerateMonitoringPointConfigResponse::Representation
|
|
1212
1216
|
command.response_class = Google::Apis::NetworkmanagementV1::GenerateMonitoringPointConfigResponse
|
|
1213
1217
|
command.params['name'] = name unless name.nil?
|
|
1218
|
+
command.query['privateConnectivityEnabled'] = private_connectivity_enabled unless private_connectivity_enabled.nil?
|
|
1214
1219
|
command.query['fields'] = fields unless fields.nil?
|
|
1215
1220
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
1216
1221
|
execute_or_queue_command(command, &block)
|
|
@@ -1345,6 +1350,10 @@ module Google
|
|
|
1345
1350
|
# can be an IP address or FQDN.
|
|
1346
1351
|
# @param [String] ntp_server_secondary_address
|
|
1347
1352
|
# Optional. Second NTP server.
|
|
1353
|
+
# @param [Boolean] private_connectivity_enabled
|
|
1354
|
+
# Optional. For Google Cloud MPs, this field indicates whether the Monitoring
|
|
1355
|
+
# Point is deployed in a Private Service Connect deployment. Not used for non-
|
|
1356
|
+
# Google Cloud MPs.
|
|
1348
1357
|
# @param [String] static_ip_address_dns_server_address
|
|
1349
1358
|
# Required. DNS server.
|
|
1350
1359
|
# @param [String] static_ip_address_dns_server_secondary_address
|
|
@@ -1382,7 +1391,7 @@ module Google
|
|
|
1382
1391
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1383
1392
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1384
1393
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1385
|
-
def download_project_location_network_monitoring_provider_monitoring_point_install_script(parent, _password: nil, hostname: nil, monitoring_point_type: nil, ntp_server_address: nil, ntp_server_secondary_address: nil, static_ip_address_dns_server_address: nil, static_ip_address_dns_server_secondary_address: nil, static_ip_address_domain: nil, static_ip_address_gateway_address: nil, static_ip_address_ip_address: nil, static_ip_address_netmask: nil, time_zone_id: nil, time_zone_version: nil, use_dhcp: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1394
|
+
def download_project_location_network_monitoring_provider_monitoring_point_install_script(parent, _password: nil, hostname: nil, monitoring_point_type: nil, ntp_server_address: nil, ntp_server_secondary_address: nil, private_connectivity_enabled: nil, static_ip_address_dns_server_address: nil, static_ip_address_dns_server_secondary_address: nil, static_ip_address_domain: nil, static_ip_address_gateway_address: nil, static_ip_address_ip_address: nil, static_ip_address_netmask: nil, time_zone_id: nil, time_zone_version: nil, use_dhcp: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1386
1395
|
command = make_simple_command(:get, 'v1/{+parent}/monitoringPoints:downloadInstallScript', options)
|
|
1387
1396
|
command.response_representation = Google::Apis::NetworkmanagementV1::HttpBody::Representation
|
|
1388
1397
|
command.response_class = Google::Apis::NetworkmanagementV1::HttpBody
|
|
@@ -1392,6 +1401,7 @@ module Google
|
|
|
1392
1401
|
command.query['monitoringPointType'] = monitoring_point_type unless monitoring_point_type.nil?
|
|
1393
1402
|
command.query['ntpServerAddress'] = ntp_server_address unless ntp_server_address.nil?
|
|
1394
1403
|
command.query['ntpServerSecondaryAddress'] = ntp_server_secondary_address unless ntp_server_secondary_address.nil?
|
|
1404
|
+
command.query['privateConnectivityEnabled'] = private_connectivity_enabled unless private_connectivity_enabled.nil?
|
|
1395
1405
|
command.query['staticIpAddress.dnsServerAddress'] = static_ip_address_dns_server_address unless static_ip_address_dns_server_address.nil?
|
|
1396
1406
|
command.query['staticIpAddress.dnsServerSecondaryAddress'] = static_ip_address_dns_server_secondary_address unless static_ip_address_dns_server_secondary_address.nil?
|
|
1397
1407
|
command.query['staticIpAddress.domain'] = static_ip_address_domain unless static_ip_address_domain.nil?
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-networkmanagement_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.84.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_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.84.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|