google-apis-networkmanagement_v1 0.62.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b7477c7fc325833a1912d423452651125c7191442052c2586070704105aa024c
|
4
|
+
data.tar.gz: 7cbdfbb3babf20e6879d71ef1390a0bdcd88ff259fac7130acd85e608ffb60e6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6da212cf03be5379734dd49400eaae6a637f24af0aa0f340c6779b8b259bb1f87063a031560aee80890eed32cde56610af90fe6104e4889fae9b0e047b64ef03
|
7
|
+
data.tar.gz: e9d02ba72d4ca8ad577196940fef975ee7f12043bde2064850b4229971799f1af7c1c59c919643045b0c723d0dd1fee9a86327094056fea315f3faf0b78b142e
|
data/CHANGELOG.md
CHANGED
@@ -3187,10 +3187,11 @@ module Google
|
|
3187
3187
|
# @return [Array<String>]
|
3188
3188
|
attr_accessor :metadata_fields
|
3189
3189
|
|
3190
|
-
# Identifier. Unique name of the configuration
|
3191
|
-
# `project_id`/
|
3192
|
-
#
|
3193
|
-
#
|
3190
|
+
# Identifier. Unique name of the configuration. The name can have one of the
|
3191
|
+
# following forms: - For project-level configurations: `projects/`project_id`/
|
3192
|
+
# locations/global/vpcFlowLogsConfigs/`vpc_flow_logs_config_id`` - For
|
3193
|
+
# organization-level configurations: `organizations/`organization_id`/locations/
|
3194
|
+
# global/vpcFlowLogsConfigs/`vpc_flow_logs_config_id``
|
3194
3195
|
# Corresponds to the JSON property `name`
|
3195
3196
|
# @return [String]
|
3196
3197
|
attr_accessor :name
|
@@ -3202,8 +3203,8 @@ module Google
|
|
3202
3203
|
# @return [String]
|
3203
3204
|
attr_accessor :state
|
3204
3205
|
|
3205
|
-
# Output only.
|
3206
|
-
#
|
3206
|
+
# Output only. Describes the state of the configured target resource for
|
3207
|
+
# diagnostic purposes.
|
3207
3208
|
# Corresponds to the JSON property `targetResourceState`
|
3208
3209
|
# @return [String]
|
3209
3210
|
attr_accessor :target_resource_state
|
@@ -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.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 = "20250625"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -866,15 +866,16 @@ module Google
|
|
866
866
|
|
867
867
|
# Creates a new `VpcFlowLogsConfig`. If a configuration with the exact same
|
868
868
|
# settings already exists (even if the ID is different), the creation fails.
|
869
|
-
# Notes: 1. Creating a configuration with state=DISABLED will fail 2. The
|
870
|
-
# following fields are not considered as
|
869
|
+
# Notes: 1. Creating a configuration with `state=DISABLED` will fail 2. The
|
870
|
+
# following fields are not considered as settings for the purpose of the check
|
871
871
|
# mentioned above, therefore - creating another configuration with the same
|
872
872
|
# fields but different values for the following fields will fail as well: * name
|
873
873
|
# * create_time * update_time * labels * description
|
874
874
|
# @param [String] parent
|
875
|
-
# Required. The parent resource of the
|
876
|
-
# projects/`project_id`/
|
877
|
-
# locations/global`
|
875
|
+
# Required. The parent resource of the VpcFlowLogsConfig to create, in one of
|
876
|
+
# the following formats: - For project-level resources: `projects/`project_id`/
|
877
|
+
# locations/global` - For organization-level resources: `organizations/`
|
878
|
+
# organization_id`/locations/global`
|
878
879
|
# @param [Google::Apis::NetworkmanagementV1::VpcFlowLogsConfig] vpc_flow_logs_config_object
|
879
880
|
# @param [String] vpc_flow_logs_config_id
|
880
881
|
# Required. ID of the `VpcFlowLogsConfig`.
|
@@ -910,10 +911,11 @@ module Google
|
|
910
911
|
|
911
912
|
# Deletes a specific `VpcFlowLogsConfig`.
|
912
913
|
# @param [String] name
|
913
|
-
# Required.
|
914
|
-
# project_id`/locations/
|
915
|
-
#
|
916
|
-
#
|
914
|
+
# Required. The resource name of the VpcFlowLogsConfig, in one of the following
|
915
|
+
# formats: - For a project-level resource: `projects/`project_id`/locations/
|
916
|
+
# global/vpcFlowLogsConfigs/`vpc_flow_logs_config_id`` - For an organization-
|
917
|
+
# level resource: `organizations/`organization_id`/locations/global/
|
918
|
+
# vpcFlowLogsConfigs/`vpc_flow_logs_config_id``
|
917
919
|
# @param [String] fields
|
918
920
|
# Selector specifying which fields to include in a partial response.
|
919
921
|
# @param [String] quota_user
|
@@ -943,10 +945,11 @@ module Google
|
|
943
945
|
|
944
946
|
# Gets the details of a specific `VpcFlowLogsConfig`.
|
945
947
|
# @param [String] name
|
946
|
-
# Required.
|
947
|
-
# project_id`/locations/
|
948
|
-
#
|
949
|
-
#
|
948
|
+
# Required. The resource name of the VpcFlowLogsConfig, in one of the following
|
949
|
+
# formats: - For project-level resources: `projects/`project_id`/locations/
|
950
|
+
# global/vpcFlowLogsConfigs/`vpc_flow_logs_config_id`` - For organization-level
|
951
|
+
# resources: `organizations/`organization_id`/locations/global/
|
952
|
+
# vpcFlowLogsConfigs/`vpc_flow_logs_config_id``
|
950
953
|
# @param [String] fields
|
951
954
|
# Selector specifying which fields to include in a partial response.
|
952
955
|
# @param [String] quota_user
|
@@ -976,8 +979,10 @@ module Google
|
|
976
979
|
|
977
980
|
# Lists all `VpcFlowLogsConfigs` in a given project.
|
978
981
|
# @param [String] parent
|
979
|
-
# Required. The parent resource of the VpcFlowLogsConfig
|
980
|
-
#
|
982
|
+
# Required. The parent resource of the VpcFlowLogsConfig, in one of the
|
983
|
+
# following formats: - For project-level resourcs: `projects/`project_id`/
|
984
|
+
# locations/global` - For organization-level resources: `organizations/`
|
985
|
+
# organization_id`/locations/global`
|
981
986
|
# @param [String] filter
|
982
987
|
# Optional. Lists the `VpcFlowLogsConfigs` that match the filter expression. A
|
983
988
|
# filter expression must use the supported [CEL logic operators] (https://cloud.
|
@@ -1021,20 +1026,24 @@ module Google
|
|
1021
1026
|
|
1022
1027
|
# Updates an existing `VpcFlowLogsConfig`. If a configuration with the exact
|
1023
1028
|
# same settings already exists (even if the ID is different), the creation fails.
|
1024
|
-
# Notes: 1. Updating a configuration with state=DISABLED will fail. 2. The
|
1025
|
-
# following fields are not considered as
|
1029
|
+
# Notes: 1. Updating a configuration with `state=DISABLED` will fail. 2. The
|
1030
|
+
# following fields are not considered as settings for the purpose of the check
|
1026
1031
|
# mentioned above, therefore - updating another configuration with the same
|
1027
1032
|
# fields but different values for the following fields will fail as well: * name
|
1028
1033
|
# * create_time * update_time * labels * description
|
1029
1034
|
# @param [String] name
|
1030
|
-
# Identifier. Unique name of the configuration
|
1031
|
-
# `project_id`/
|
1032
|
-
#
|
1033
|
-
#
|
1035
|
+
# Identifier. Unique name of the configuration. The name can have one of the
|
1036
|
+
# following forms: - For project-level configurations: `projects/`project_id`/
|
1037
|
+
# locations/global/vpcFlowLogsConfigs/`vpc_flow_logs_config_id`` - For
|
1038
|
+
# organization-level configurations: `organizations/`organization_id`/locations/
|
1039
|
+
# global/vpcFlowLogsConfigs/`vpc_flow_logs_config_id``
|
1034
1040
|
# @param [Google::Apis::NetworkmanagementV1::VpcFlowLogsConfig] vpc_flow_logs_config_object
|
1035
1041
|
# @param [String] update_mask
|
1036
1042
|
# Required. Mask of fields to update. At least one path must be supplied in this
|
1037
|
-
# field.
|
1043
|
+
# field. For example, to change the state of the configuration to ENABLED,
|
1044
|
+
# specify `update_mask` = `"state"`, and the `vpc_flow_logs_config` would be: `
|
1045
|
+
# vpc_flow_logs_config = ` name = "projects/my-project/locations/global/
|
1046
|
+
# vpcFlowLogsConfigs/my-config" state = "ENABLED" ``
|
1038
1047
|
# @param [String] fields
|
1039
1048
|
# Selector specifying which fields to include in a partial response.
|
1040
1049
|
# @param [String] quota_user
|
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.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_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.63.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:
|