google-apis-networkmanagement_v1beta1 0.61.0 → 0.63.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 +8 -0
- data/lib/google/apis/networkmanagement_v1beta1/classes.rb +74 -6
- data/lib/google/apis/networkmanagement_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/networkmanagement_v1beta1/representations.rb +22 -0
- data/lib/google/apis/networkmanagement_v1beta1/service.rb +66 -47
- 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: 8a8c15ea678e8c69916488a9507fa083af64e86839b491237a92e8c32020aae0
|
4
|
+
data.tar.gz: 743f2c56a85b7cc78ced6b7cc9ac75cd81ee34f85198de4c379352eaddc6c568
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c5010a6ada47d54c67cf1aa946e2ff738ba96b6b4fbfcf1d0378bc4eae2bbfaf628894b871b40114efc82c2ba5c6bd24bef1098eb8d0c78963231d8617e3160a
|
7
|
+
data.tar.gz: 3084e76ca8f831da5f096e740a8bedf35e24fc4260f83b6fae72e13ace574612ef2f3da55fd27158ea35590b3f89b4e0a384b0bc8a21a1915de1aebeeae271ba
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-networkmanagement_v1beta1
|
2
2
|
|
3
|
+
### v0.63.0 (2025-08-17)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250806
|
6
|
+
|
7
|
+
### v0.62.0 (2025-07-06)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250625
|
10
|
+
|
3
11
|
### v0.61.0 (2025-06-15)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250604
|
@@ -685,6 +685,11 @@ module Google
|
|
685
685
|
# @return [String]
|
686
686
|
attr_accessor :cause
|
687
687
|
|
688
|
+
# Geolocation (region code) of the destination IP address (if relevant).
|
689
|
+
# Corresponds to the JSON property `destinationGeolocationCode`
|
690
|
+
# @return [String]
|
691
|
+
attr_accessor :destination_geolocation_code
|
692
|
+
|
688
693
|
# Destination IP address of the dropped packet (if relevant).
|
689
694
|
# Corresponds to the JSON property `destinationIp`
|
690
695
|
# @return [String]
|
@@ -700,6 +705,11 @@ module Google
|
|
700
705
|
# @return [String]
|
701
706
|
attr_accessor :resource_uri
|
702
707
|
|
708
|
+
# Geolocation (region code) of the source IP address (if relevant).
|
709
|
+
# Corresponds to the JSON property `sourceGeolocationCode`
|
710
|
+
# @return [String]
|
711
|
+
attr_accessor :source_geolocation_code
|
712
|
+
|
703
713
|
# Source IP address of the dropped packet (if relevant).
|
704
714
|
# Corresponds to the JSON property `sourceIp`
|
705
715
|
# @return [String]
|
@@ -712,9 +722,11 @@ module Google
|
|
712
722
|
# Update properties of this object
|
713
723
|
def update!(**args)
|
714
724
|
@cause = args[:cause] if args.key?(:cause)
|
725
|
+
@destination_geolocation_code = args[:destination_geolocation_code] if args.key?(:destination_geolocation_code)
|
715
726
|
@destination_ip = args[:destination_ip] if args.key?(:destination_ip)
|
716
727
|
@region = args[:region] if args.key?(:region)
|
717
728
|
@resource_uri = args[:resource_uri] if args.key?(:resource_uri)
|
729
|
+
@source_geolocation_code = args[:source_geolocation_code] if args.key?(:source_geolocation_code)
|
718
730
|
@source_ip = args[:source_ip] if args.key?(:source_ip)
|
719
731
|
end
|
720
732
|
end
|
@@ -1085,6 +1097,11 @@ module Google
|
|
1085
1097
|
# @return [Array<String>]
|
1086
1098
|
attr_accessor :target_tags
|
1087
1099
|
|
1100
|
+
# Target type of the firewall rule.
|
1101
|
+
# Corresponds to the JSON property `targetType`
|
1102
|
+
# @return [String]
|
1103
|
+
attr_accessor :target_type
|
1104
|
+
|
1088
1105
|
# The URI of the firewall rule. This field is not applicable to implied VPC
|
1089
1106
|
# firewall rules.
|
1090
1107
|
# Corresponds to the JSON property `uri`
|
@@ -1108,6 +1125,7 @@ module Google
|
|
1108
1125
|
@priority = args[:priority] if args.key?(:priority)
|
1109
1126
|
@target_service_accounts = args[:target_service_accounts] if args.key?(:target_service_accounts)
|
1110
1127
|
@target_tags = args[:target_tags] if args.key?(:target_tags)
|
1128
|
+
@target_type = args[:target_type] if args.key?(:target_type)
|
1111
1129
|
@uri = args[:uri] if args.key?(:uri)
|
1112
1130
|
end
|
1113
1131
|
end
|
@@ -1377,6 +1395,49 @@ module Google
|
|
1377
1395
|
end
|
1378
1396
|
end
|
1379
1397
|
|
1398
|
+
# For display only. Metadata associated with an Interconnect attachment.
|
1399
|
+
class InterconnectAttachmentInfo
|
1400
|
+
include Google::Apis::Core::Hashable
|
1401
|
+
|
1402
|
+
# URI of the Cloud Router to be used for dynamic routing.
|
1403
|
+
# Corresponds to the JSON property `cloudRouterUri`
|
1404
|
+
# @return [String]
|
1405
|
+
attr_accessor :cloud_router_uri
|
1406
|
+
|
1407
|
+
# Name of an Interconnect attachment.
|
1408
|
+
# Corresponds to the JSON property `displayName`
|
1409
|
+
# @return [String]
|
1410
|
+
attr_accessor :display_name
|
1411
|
+
|
1412
|
+
# URI of the Interconnect where the Interconnect attachment is configured.
|
1413
|
+
# Corresponds to the JSON property `interconnectUri`
|
1414
|
+
# @return [String]
|
1415
|
+
attr_accessor :interconnect_uri
|
1416
|
+
|
1417
|
+
# Name of a Google Cloud region where the Interconnect attachment is configured.
|
1418
|
+
# Corresponds to the JSON property `region`
|
1419
|
+
# @return [String]
|
1420
|
+
attr_accessor :region
|
1421
|
+
|
1422
|
+
# URI of an Interconnect attachment.
|
1423
|
+
# Corresponds to the JSON property `uri`
|
1424
|
+
# @return [String]
|
1425
|
+
attr_accessor :uri
|
1426
|
+
|
1427
|
+
def initialize(**args)
|
1428
|
+
update!(**args)
|
1429
|
+
end
|
1430
|
+
|
1431
|
+
# Update properties of this object
|
1432
|
+
def update!(**args)
|
1433
|
+
@cloud_router_uri = args[:cloud_router_uri] if args.key?(:cloud_router_uri)
|
1434
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
1435
|
+
@interconnect_uri = args[:interconnect_uri] if args.key?(:interconnect_uri)
|
1436
|
+
@region = args[:region] if args.key?(:region)
|
1437
|
+
@uri = args[:uri] if args.key?(:uri)
|
1438
|
+
end
|
1439
|
+
end
|
1440
|
+
|
1380
1441
|
# Describes measured latency distribution.
|
1381
1442
|
class LatencyDistribution
|
1382
1443
|
include Google::Apis::Core::Hashable
|
@@ -2910,6 +2971,11 @@ module Google
|
|
2910
2971
|
# @return [Google::Apis::NetworkmanagementV1beta1::InstanceInfo]
|
2911
2972
|
attr_accessor :instance
|
2912
2973
|
|
2974
|
+
# For display only. Metadata associated with an Interconnect attachment.
|
2975
|
+
# Corresponds to the JSON property `interconnectAttachment`
|
2976
|
+
# @return [Google::Apis::NetworkmanagementV1beta1::InterconnectAttachmentInfo]
|
2977
|
+
attr_accessor :interconnect_attachment
|
2978
|
+
|
2913
2979
|
# For display only. Metadata associated with a load balancer.
|
2914
2980
|
# Corresponds to the JSON property `loadBalancer`
|
2915
2981
|
# @return [Google::Apis::NetworkmanagementV1beta1::LoadBalancerInfo]
|
@@ -3014,6 +3080,7 @@ module Google
|
|
3014
3080
|
@gke_master = args[:gke_master] if args.key?(:gke_master)
|
3015
3081
|
@google_service = args[:google_service] if args.key?(:google_service)
|
3016
3082
|
@instance = args[:instance] if args.key?(:instance)
|
3083
|
+
@interconnect_attachment = args[:interconnect_attachment] if args.key?(:interconnect_attachment)
|
3017
3084
|
@load_balancer = args[:load_balancer] if args.key?(:load_balancer)
|
3018
3085
|
@load_balancer_backend_info = args[:load_balancer_backend_info] if args.key?(:load_balancer_backend_info)
|
3019
3086
|
@nat = args[:nat] if args.key?(:nat)
|
@@ -3231,10 +3298,11 @@ module Google
|
|
3231
3298
|
# @return [Array<String>]
|
3232
3299
|
attr_accessor :metadata_fields
|
3233
3300
|
|
3234
|
-
# Identifier. Unique name of the configuration
|
3235
|
-
# `project_id`/
|
3236
|
-
#
|
3237
|
-
#
|
3301
|
+
# Identifier. Unique name of the configuration. The name can have one of the
|
3302
|
+
# following forms: - For project-level configurations: `projects/`project_id`/
|
3303
|
+
# locations/global/vpcFlowLogsConfigs/`vpc_flow_logs_config_id`` - For
|
3304
|
+
# organization-level configurations: `organizations/`organization_id`/locations/
|
3305
|
+
# global/vpcFlowLogsConfigs/`vpc_flow_logs_config_id``
|
3238
3306
|
# Corresponds to the JSON property `name`
|
3239
3307
|
# @return [String]
|
3240
3308
|
attr_accessor :name
|
@@ -3258,8 +3326,8 @@ module Google
|
|
3258
3326
|
# @return [String]
|
3259
3327
|
attr_accessor :subnet
|
3260
3328
|
|
3261
|
-
# Output only.
|
3262
|
-
#
|
3329
|
+
# Output only. Describes the state of the configured target resource for
|
3330
|
+
# diagnostic purposes.
|
3263
3331
|
# Corresponds to the JSON property `targetResourceState`
|
3264
3332
|
# @return [String]
|
3265
3333
|
attr_accessor :target_resource_state
|
@@ -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.63.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 = "20250806"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -184,6 +184,12 @@ module Google
|
|
184
184
|
include Google::Apis::Core::JsonObjectSupport
|
185
185
|
end
|
186
186
|
|
187
|
+
class InterconnectAttachmentInfo
|
188
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
|
+
|
190
|
+
include Google::Apis::Core::JsonObjectSupport
|
191
|
+
end
|
192
|
+
|
187
193
|
class LatencyDistribution
|
188
194
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
195
|
|
@@ -566,9 +572,11 @@ module Google
|
|
566
572
|
# @private
|
567
573
|
class Representation < Google::Apis::Core::JsonRepresentation
|
568
574
|
property :cause, as: 'cause'
|
575
|
+
property :destination_geolocation_code, as: 'destinationGeolocationCode'
|
569
576
|
property :destination_ip, as: 'destinationIp'
|
570
577
|
property :region, as: 'region'
|
571
578
|
property :resource_uri, as: 'resourceUri'
|
579
|
+
property :source_geolocation_code, as: 'sourceGeolocationCode'
|
572
580
|
property :source_ip, as: 'sourceIp'
|
573
581
|
end
|
574
582
|
end
|
@@ -652,6 +660,7 @@ module Google
|
|
652
660
|
property :priority, as: 'priority'
|
653
661
|
collection :target_service_accounts, as: 'targetServiceAccounts'
|
654
662
|
collection :target_tags, as: 'targetTags'
|
663
|
+
property :target_type, as: 'targetType'
|
655
664
|
property :uri, as: 'uri'
|
656
665
|
end
|
657
666
|
end
|
@@ -718,6 +727,17 @@ module Google
|
|
718
727
|
end
|
719
728
|
end
|
720
729
|
|
730
|
+
class InterconnectAttachmentInfo
|
731
|
+
# @private
|
732
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
733
|
+
property :cloud_router_uri, as: 'cloudRouterUri'
|
734
|
+
property :display_name, as: 'displayName'
|
735
|
+
property :interconnect_uri, as: 'interconnectUri'
|
736
|
+
property :region, as: 'region'
|
737
|
+
property :uri, as: 'uri'
|
738
|
+
end
|
739
|
+
end
|
740
|
+
|
721
741
|
class LatencyDistribution
|
722
742
|
# @private
|
723
743
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1091,6 +1111,8 @@ module Google
|
|
1091
1111
|
|
1092
1112
|
property :instance, as: 'instance', class: Google::Apis::NetworkmanagementV1beta1::InstanceInfo, decorator: Google::Apis::NetworkmanagementV1beta1::InstanceInfo::Representation
|
1093
1113
|
|
1114
|
+
property :interconnect_attachment, as: 'interconnectAttachment', class: Google::Apis::NetworkmanagementV1beta1::InterconnectAttachmentInfo, decorator: Google::Apis::NetworkmanagementV1beta1::InterconnectAttachmentInfo::Representation
|
1115
|
+
|
1094
1116
|
property :load_balancer, as: 'loadBalancer', class: Google::Apis::NetworkmanagementV1beta1::LoadBalancerInfo, decorator: Google::Apis::NetworkmanagementV1beta1::LoadBalancerInfo::Representation
|
1095
1117
|
|
1096
1118
|
property :load_balancer_backend_info, as: 'loadBalancerBackendInfo', class: Google::Apis::NetworkmanagementV1beta1::LoadBalancerBackendInfo, decorator: Google::Apis::NetworkmanagementV1beta1::LoadBalancerBackendInfo::Representation
|
@@ -275,15 +275,16 @@ module Google
|
|
275
275
|
|
276
276
|
# Creates a new `VpcFlowLogsConfig`. If a configuration with the exact same
|
277
277
|
# settings already exists (even if the ID is different), the creation fails.
|
278
|
-
# Notes: 1. Creating a configuration with state=DISABLED will fail 2. The
|
279
|
-
# following fields are not considered as
|
278
|
+
# Notes: 1. Creating a configuration with `state=DISABLED` will fail 2. The
|
279
|
+
# following fields are not considered as settings for the purpose of the check
|
280
280
|
# mentioned above, therefore - creating another configuration with the same
|
281
281
|
# fields but different values for the following fields will fail as well: * name
|
282
282
|
# * create_time * update_time * labels * description
|
283
283
|
# @param [String] parent
|
284
|
-
# Required. The parent resource of the
|
285
|
-
# projects/`project_id`/
|
286
|
-
# locations/global`
|
284
|
+
# Required. The parent resource of the VpcFlowLogsConfig to create, in one of
|
285
|
+
# the following formats: - For project-level resources: `projects/`project_id`/
|
286
|
+
# locations/global` - For organization-level resources: `organizations/`
|
287
|
+
# organization_id`/locations/global`
|
287
288
|
# @param [Google::Apis::NetworkmanagementV1beta1::VpcFlowLogsConfig] vpc_flow_logs_config_object
|
288
289
|
# @param [String] vpc_flow_logs_config_id
|
289
290
|
# Required. ID of the `VpcFlowLogsConfig`.
|
@@ -319,10 +320,11 @@ module Google
|
|
319
320
|
|
320
321
|
# Deletes a specific `VpcFlowLogsConfig`.
|
321
322
|
# @param [String] name
|
322
|
-
# Required.
|
323
|
-
# project_id`/locations/
|
324
|
-
#
|
325
|
-
#
|
323
|
+
# Required. The resource name of the VpcFlowLogsConfig, in one of the following
|
324
|
+
# formats: - For a project-level resource: `projects/`project_id`/locations/
|
325
|
+
# global/vpcFlowLogsConfigs/`vpc_flow_logs_config_id`` - For an organization-
|
326
|
+
# level resource: `organizations/`organization_id`/locations/global/
|
327
|
+
# vpcFlowLogsConfigs/`vpc_flow_logs_config_id``
|
326
328
|
# @param [String] fields
|
327
329
|
# Selector specifying which fields to include in a partial response.
|
328
330
|
# @param [String] quota_user
|
@@ -352,10 +354,11 @@ module Google
|
|
352
354
|
|
353
355
|
# Gets the details of a specific `VpcFlowLogsConfig`.
|
354
356
|
# @param [String] name
|
355
|
-
# Required.
|
356
|
-
# project_id`/locations/
|
357
|
-
#
|
358
|
-
#
|
357
|
+
# Required. The resource name of the VpcFlowLogsConfig, in one of the following
|
358
|
+
# formats: - For project-level resources: `projects/`project_id`/locations/
|
359
|
+
# global/vpcFlowLogsConfigs/`vpc_flow_logs_config_id`` - For organization-level
|
360
|
+
# resources: `organizations/`organization_id`/locations/global/
|
361
|
+
# vpcFlowLogsConfigs/`vpc_flow_logs_config_id``
|
359
362
|
# @param [String] fields
|
360
363
|
# Selector specifying which fields to include in a partial response.
|
361
364
|
# @param [String] quota_user
|
@@ -385,8 +388,10 @@ module Google
|
|
385
388
|
|
386
389
|
# Lists all `VpcFlowLogsConfigs` in a given organization.
|
387
390
|
# @param [String] parent
|
388
|
-
# Required. The parent resource of the VpcFlowLogsConfig
|
389
|
-
#
|
391
|
+
# Required. The parent resource of the VpcFlowLogsConfig, in one of the
|
392
|
+
# following formats: - For project-level resourcs: `projects/`project_id`/
|
393
|
+
# locations/global` - For organization-level resources: `organizations/`
|
394
|
+
# organization_id`/locations/global`
|
390
395
|
# @param [String] filter
|
391
396
|
# Optional. Lists the `VpcFlowLogsConfigs` that match the filter expression. A
|
392
397
|
# filter expression must use the supported [CEL logic operators] (https://cloud.
|
@@ -430,20 +435,24 @@ module Google
|
|
430
435
|
|
431
436
|
# Updates an existing `VpcFlowLogsConfig`. If a configuration with the exact
|
432
437
|
# same settings already exists (even if the ID is different), the creation fails.
|
433
|
-
# Notes: 1. Updating a configuration with state=DISABLED will fail 2. The
|
434
|
-
# following fields are not considered as
|
438
|
+
# Notes: 1. Updating a configuration with `state=DISABLED` will fail 2. The
|
439
|
+
# following fields are not considered as settings for the purpose of the check
|
435
440
|
# mentioned above, therefore - updating another configuration with the same
|
436
441
|
# fields but different values for the following fields will fail as well: * name
|
437
442
|
# * create_time * update_time * labels * description
|
438
443
|
# @param [String] name
|
439
|
-
# Identifier. Unique name of the configuration
|
440
|
-
# `project_id`/
|
441
|
-
#
|
442
|
-
#
|
444
|
+
# Identifier. Unique name of the configuration. The name can have one of the
|
445
|
+
# following forms: - For project-level configurations: `projects/`project_id`/
|
446
|
+
# locations/global/vpcFlowLogsConfigs/`vpc_flow_logs_config_id`` - For
|
447
|
+
# organization-level configurations: `organizations/`organization_id`/locations/
|
448
|
+
# global/vpcFlowLogsConfigs/`vpc_flow_logs_config_id``
|
443
449
|
# @param [Google::Apis::NetworkmanagementV1beta1::VpcFlowLogsConfig] vpc_flow_logs_config_object
|
444
450
|
# @param [String] update_mask
|
445
451
|
# Required. Mask of fields to update. At least one path must be supplied in this
|
446
|
-
# field.
|
452
|
+
# field. For example, to change the state of the configuration to ENABLED,
|
453
|
+
# specify `update_mask` = `"state"`, and the `vpc_flow_logs_config` would be: `
|
454
|
+
# vpc_flow_logs_config = ` name = "projects/my-project/locations/global/
|
455
|
+
# vpcFlowLogsConfigs/my-config" state = "ENABLED" ``
|
447
456
|
# @param [String] fields
|
448
457
|
# Selector specifying which fields to include in a partial response.
|
449
458
|
# @param [String] quota_user
|
@@ -1067,15 +1076,16 @@ module Google
|
|
1067
1076
|
|
1068
1077
|
# Creates a new `VpcFlowLogsConfig`. If a configuration with the exact same
|
1069
1078
|
# settings already exists (even if the ID is different), the creation fails.
|
1070
|
-
# Notes: 1. Creating a configuration with state=DISABLED will fail 2. The
|
1071
|
-
# following fields are not considered as
|
1079
|
+
# Notes: 1. Creating a configuration with `state=DISABLED` will fail 2. The
|
1080
|
+
# following fields are not considered as settings for the purpose of the check
|
1072
1081
|
# mentioned above, therefore - creating another configuration with the same
|
1073
1082
|
# fields but different values for the following fields will fail as well: * name
|
1074
1083
|
# * create_time * update_time * labels * description
|
1075
1084
|
# @param [String] parent
|
1076
|
-
# Required. The parent resource of the
|
1077
|
-
# projects/`project_id`/
|
1078
|
-
# locations/global`
|
1085
|
+
# Required. The parent resource of the VpcFlowLogsConfig to create, in one of
|
1086
|
+
# the following formats: - For project-level resources: `projects/`project_id`/
|
1087
|
+
# locations/global` - For organization-level resources: `organizations/`
|
1088
|
+
# organization_id`/locations/global`
|
1079
1089
|
# @param [Google::Apis::NetworkmanagementV1beta1::VpcFlowLogsConfig] vpc_flow_logs_config_object
|
1080
1090
|
# @param [String] vpc_flow_logs_config_id
|
1081
1091
|
# Required. ID of the `VpcFlowLogsConfig`.
|
@@ -1111,10 +1121,11 @@ module Google
|
|
1111
1121
|
|
1112
1122
|
# Deletes a specific `VpcFlowLogsConfig`.
|
1113
1123
|
# @param [String] name
|
1114
|
-
# Required.
|
1115
|
-
# project_id`/locations/
|
1116
|
-
#
|
1117
|
-
#
|
1124
|
+
# Required. The resource name of the VpcFlowLogsConfig, in one of the following
|
1125
|
+
# formats: - For a project-level resource: `projects/`project_id`/locations/
|
1126
|
+
# global/vpcFlowLogsConfigs/`vpc_flow_logs_config_id`` - For an organization-
|
1127
|
+
# level resource: `organizations/`organization_id`/locations/global/
|
1128
|
+
# vpcFlowLogsConfigs/`vpc_flow_logs_config_id``
|
1118
1129
|
# @param [String] fields
|
1119
1130
|
# Selector specifying which fields to include in a partial response.
|
1120
1131
|
# @param [String] quota_user
|
@@ -1144,10 +1155,11 @@ module Google
|
|
1144
1155
|
|
1145
1156
|
# Gets the details of a specific `VpcFlowLogsConfig`.
|
1146
1157
|
# @param [String] name
|
1147
|
-
# Required.
|
1148
|
-
# project_id`/locations/
|
1149
|
-
#
|
1150
|
-
#
|
1158
|
+
# Required. The resource name of the VpcFlowLogsConfig, in one of the following
|
1159
|
+
# formats: - For project-level resources: `projects/`project_id`/locations/
|
1160
|
+
# global/vpcFlowLogsConfigs/`vpc_flow_logs_config_id`` - For organization-level
|
1161
|
+
# resources: `organizations/`organization_id`/locations/global/
|
1162
|
+
# vpcFlowLogsConfigs/`vpc_flow_logs_config_id``
|
1151
1163
|
# @param [String] fields
|
1152
1164
|
# Selector specifying which fields to include in a partial response.
|
1153
1165
|
# @param [String] quota_user
|
@@ -1177,8 +1189,10 @@ module Google
|
|
1177
1189
|
|
1178
1190
|
# Lists all `VpcFlowLogsConfigs` in a given project.
|
1179
1191
|
# @param [String] parent
|
1180
|
-
# Required. The parent resource of the VpcFlowLogsConfig
|
1181
|
-
#
|
1192
|
+
# Required. The parent resource of the VpcFlowLogsConfig, in one of the
|
1193
|
+
# following formats: - For project-level resourcs: `projects/`project_id`/
|
1194
|
+
# locations/global` - For organization-level resources: `organizations/`
|
1195
|
+
# organization_id`/locations/global`
|
1182
1196
|
# @param [String] filter
|
1183
1197
|
# Optional. Lists the `VpcFlowLogsConfigs` that match the filter expression. A
|
1184
1198
|
# filter expression must use the supported [CEL logic operators] (https://cloud.
|
@@ -1222,20 +1236,24 @@ module Google
|
|
1222
1236
|
|
1223
1237
|
# Updates an existing `VpcFlowLogsConfig`. If a configuration with the exact
|
1224
1238
|
# same settings already exists (even if the ID is different), the creation fails.
|
1225
|
-
# Notes: 1. Updating a configuration with state=DISABLED will fail 2. The
|
1226
|
-
# following fields are not considered as
|
1239
|
+
# Notes: 1. Updating a configuration with `state=DISABLED` will fail 2. The
|
1240
|
+
# following fields are not considered as settings for the purpose of the check
|
1227
1241
|
# mentioned above, therefore - updating another configuration with the same
|
1228
1242
|
# fields but different values for the following fields will fail as well: * name
|
1229
1243
|
# * create_time * update_time * labels * description
|
1230
1244
|
# @param [String] name
|
1231
|
-
# Identifier. Unique name of the configuration
|
1232
|
-
# `project_id`/
|
1233
|
-
#
|
1234
|
-
#
|
1245
|
+
# Identifier. Unique name of the configuration. The name can have one of the
|
1246
|
+
# following forms: - For project-level configurations: `projects/`project_id`/
|
1247
|
+
# locations/global/vpcFlowLogsConfigs/`vpc_flow_logs_config_id`` - For
|
1248
|
+
# organization-level configurations: `organizations/`organization_id`/locations/
|
1249
|
+
# global/vpcFlowLogsConfigs/`vpc_flow_logs_config_id``
|
1235
1250
|
# @param [Google::Apis::NetworkmanagementV1beta1::VpcFlowLogsConfig] vpc_flow_logs_config_object
|
1236
1251
|
# @param [String] update_mask
|
1237
1252
|
# Required. Mask of fields to update. At least one path must be supplied in this
|
1238
|
-
# field.
|
1253
|
+
# field. For example, to change the state of the configuration to ENABLED,
|
1254
|
+
# specify `update_mask` = `"state"`, and the `vpc_flow_logs_config` would be: `
|
1255
|
+
# vpc_flow_logs_config = ` name = "projects/my-project/locations/global/
|
1256
|
+
# vpcFlowLogsConfigs/my-config" state = "ENABLED" ``
|
1239
1257
|
# @param [String] fields
|
1240
1258
|
# Selector specifying which fields to include in a partial response.
|
1241
1259
|
# @param [String] quota_user
|
@@ -1266,10 +1284,11 @@ module Google
|
|
1266
1284
|
execute_or_queue_command(command, &block)
|
1267
1285
|
end
|
1268
1286
|
|
1269
|
-
# QueryOrgVpcFlowLogsConfigs
|
1287
|
+
# QueryOrgVpcFlowLogsConfigs returns a list of all organization-level VPC Flow
|
1288
|
+
# Logs configurations applicable to the specified project.
|
1270
1289
|
# @param [String] parent
|
1271
|
-
# Required. The parent resource of the VpcFlowLogsConfig
|
1272
|
-
# locations/global`
|
1290
|
+
# Required. The parent resource of the VpcFlowLogsConfig, specified in the
|
1291
|
+
# following format: `projects/`project_id`/locations/global`
|
1273
1292
|
# @param [String] filter
|
1274
1293
|
# Optional. Lists the `VpcFlowLogsConfigs` that match the filter expression. A
|
1275
1294
|
# filter expression must use the supported [CEL logic operators] (https://cloud.
|
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.63.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.63.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:
|