Class: Google::Cloud::NetworkManagement::V1::VpcFlowLogsConfig

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/networkmanagement/v1/vpc_flow_logs_config.rb

Overview

A configuration to generate VPC Flow Logs.

Defined Under Namespace

Modules: AggregationInterval, Metadata, State, TargetResourceState Classes: LabelsEntry

Instance Attribute Summary collapse

Instance Attribute Details

#aggregation_interval::Google::Cloud::NetworkManagement::V1::VpcFlowLogsConfig::AggregationInterval

Returns Optional. The aggregation interval for the logs. Default value is INTERVAL_5_SEC.

Returns:



82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# File 'proto_docs/google/cloud/networkmanagement/v1/vpc_flow_logs_config.rb', line 82

class VpcFlowLogsConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class LabelsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Determines whether this configuration will be generating logs.
  # Setting state=DISABLED will pause the log generation for this config.
  module State
    # If not specified, will default to ENABLED.
    STATE_UNSPECIFIED = 0

    # When ENABLED, this configuration will generate logs.
    ENABLED = 1

    # When DISABLED, this configuration will not generate logs.
    DISABLED = 2
  end

  # Toggles the aggregation interval for collecting flow logs by 5-tuple.
  module AggregationInterval
    # If not specified, will default to INTERVAL_5_SEC.
    AGGREGATION_INTERVAL_UNSPECIFIED = 0

    # Aggregate logs in 5s intervals.
    INTERVAL_5_SEC = 1

    # Aggregate logs in 30s intervals.
    INTERVAL_30_SEC = 2

    # Aggregate logs in 1m intervals.
    INTERVAL_1_MIN = 3

    # Aggregate logs in 5m intervals.
    INTERVAL_5_MIN = 4

    # Aggregate logs in 10m intervals.
    INTERVAL_10_MIN = 5

    # Aggregate logs in 15m intervals.
    INTERVAL_15_MIN = 6
  end

  # Configures which log fields would be included.
  module Metadata
    # If not specified, will default to INCLUDE_ALL_METADATA.
    METADATA_UNSPECIFIED = 0

    # Include all metadata fields.
    INCLUDE_ALL_METADATA = 1

    # Exclude all metadata fields.
    EXCLUDE_ALL_METADATA = 2

    # Include only custom fields (specified in metadata_fields).
    CUSTOM_METADATA = 3
  end

  # Optional states of the target resource that are used as part of the
  # diagnostic bit.
  module TargetResourceState
    # Unspecified target resource state.
    TARGET_RESOURCE_STATE_UNSPECIFIED = 0

    # Indicates that the target resource exists.
    TARGET_RESOURCE_EXISTS = 1

    # Indicates that the target resource does not exist.
    TARGET_RESOURCE_DOES_NOT_EXIST = 2
  end
end

#create_time::Google::Protobuf::Timestamp (readonly)

Returns Output only. The time the config was created.

Returns:



82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# File 'proto_docs/google/cloud/networkmanagement/v1/vpc_flow_logs_config.rb', line 82

class VpcFlowLogsConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class LabelsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Determines whether this configuration will be generating logs.
  # Setting state=DISABLED will pause the log generation for this config.
  module State
    # If not specified, will default to ENABLED.
    STATE_UNSPECIFIED = 0

    # When ENABLED, this configuration will generate logs.
    ENABLED = 1

    # When DISABLED, this configuration will not generate logs.
    DISABLED = 2
  end

  # Toggles the aggregation interval for collecting flow logs by 5-tuple.
  module AggregationInterval
    # If not specified, will default to INTERVAL_5_SEC.
    AGGREGATION_INTERVAL_UNSPECIFIED = 0

    # Aggregate logs in 5s intervals.
    INTERVAL_5_SEC = 1

    # Aggregate logs in 30s intervals.
    INTERVAL_30_SEC = 2

    # Aggregate logs in 1m intervals.
    INTERVAL_1_MIN = 3

    # Aggregate logs in 5m intervals.
    INTERVAL_5_MIN = 4

    # Aggregate logs in 10m intervals.
    INTERVAL_10_MIN = 5

    # Aggregate logs in 15m intervals.
    INTERVAL_15_MIN = 6
  end

  # Configures which log fields would be included.
  module Metadata
    # If not specified, will default to INCLUDE_ALL_METADATA.
    METADATA_UNSPECIFIED = 0

    # Include all metadata fields.
    INCLUDE_ALL_METADATA = 1

    # Exclude all metadata fields.
    EXCLUDE_ALL_METADATA = 2

    # Include only custom fields (specified in metadata_fields).
    CUSTOM_METADATA = 3
  end

  # Optional states of the target resource that are used as part of the
  # diagnostic bit.
  module TargetResourceState
    # Unspecified target resource state.
    TARGET_RESOURCE_STATE_UNSPECIFIED = 0

    # Indicates that the target resource exists.
    TARGET_RESOURCE_EXISTS = 1

    # Indicates that the target resource does not exist.
    TARGET_RESOURCE_DOES_NOT_EXIST = 2
  end
end

#description::String

Returns Optional. The user-supplied description of the VPC Flow Logs configuration. Maximum of 512 characters.

Returns:

  • (::String)

    Optional. The user-supplied description of the VPC Flow Logs configuration. Maximum of 512 characters.



82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# File 'proto_docs/google/cloud/networkmanagement/v1/vpc_flow_logs_config.rb', line 82

class VpcFlowLogsConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class LabelsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Determines whether this configuration will be generating logs.
  # Setting state=DISABLED will pause the log generation for this config.
  module State
    # If not specified, will default to ENABLED.
    STATE_UNSPECIFIED = 0

    # When ENABLED, this configuration will generate logs.
    ENABLED = 1

    # When DISABLED, this configuration will not generate logs.
    DISABLED = 2
  end

  # Toggles the aggregation interval for collecting flow logs by 5-tuple.
  module AggregationInterval
    # If not specified, will default to INTERVAL_5_SEC.
    AGGREGATION_INTERVAL_UNSPECIFIED = 0

    # Aggregate logs in 5s intervals.
    INTERVAL_5_SEC = 1

    # Aggregate logs in 30s intervals.
    INTERVAL_30_SEC = 2

    # Aggregate logs in 1m intervals.
    INTERVAL_1_MIN = 3

    # Aggregate logs in 5m intervals.
    INTERVAL_5_MIN = 4

    # Aggregate logs in 10m intervals.
    INTERVAL_10_MIN = 5

    # Aggregate logs in 15m intervals.
    INTERVAL_15_MIN = 6
  end

  # Configures which log fields would be included.
  module Metadata
    # If not specified, will default to INCLUDE_ALL_METADATA.
    METADATA_UNSPECIFIED = 0

    # Include all metadata fields.
    INCLUDE_ALL_METADATA = 1

    # Exclude all metadata fields.
    EXCLUDE_ALL_METADATA = 2

    # Include only custom fields (specified in metadata_fields).
    CUSTOM_METADATA = 3
  end

  # Optional states of the target resource that are used as part of the
  # diagnostic bit.
  module TargetResourceState
    # Unspecified target resource state.
    TARGET_RESOURCE_STATE_UNSPECIFIED = 0

    # Indicates that the target resource exists.
    TARGET_RESOURCE_EXISTS = 1

    # Indicates that the target resource does not exist.
    TARGET_RESOURCE_DOES_NOT_EXIST = 2
  end
end

#filter_expr::String

Returns Optional. Export filter used to define which VPC Flow Logs should be logged.

Returns:

  • (::String)

    Optional. Export filter used to define which VPC Flow Logs should be logged.



82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# File 'proto_docs/google/cloud/networkmanagement/v1/vpc_flow_logs_config.rb', line 82

class VpcFlowLogsConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class LabelsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Determines whether this configuration will be generating logs.
  # Setting state=DISABLED will pause the log generation for this config.
  module State
    # If not specified, will default to ENABLED.
    STATE_UNSPECIFIED = 0

    # When ENABLED, this configuration will generate logs.
    ENABLED = 1

    # When DISABLED, this configuration will not generate logs.
    DISABLED = 2
  end

  # Toggles the aggregation interval for collecting flow logs by 5-tuple.
  module AggregationInterval
    # If not specified, will default to INTERVAL_5_SEC.
    AGGREGATION_INTERVAL_UNSPECIFIED = 0

    # Aggregate logs in 5s intervals.
    INTERVAL_5_SEC = 1

    # Aggregate logs in 30s intervals.
    INTERVAL_30_SEC = 2

    # Aggregate logs in 1m intervals.
    INTERVAL_1_MIN = 3

    # Aggregate logs in 5m intervals.
    INTERVAL_5_MIN = 4

    # Aggregate logs in 10m intervals.
    INTERVAL_10_MIN = 5

    # Aggregate logs in 15m intervals.
    INTERVAL_15_MIN = 6
  end

  # Configures which log fields would be included.
  module Metadata
    # If not specified, will default to INCLUDE_ALL_METADATA.
    METADATA_UNSPECIFIED = 0

    # Include all metadata fields.
    INCLUDE_ALL_METADATA = 1

    # Exclude all metadata fields.
    EXCLUDE_ALL_METADATA = 2

    # Include only custom fields (specified in metadata_fields).
    CUSTOM_METADATA = 3
  end

  # Optional states of the target resource that are used as part of the
  # diagnostic bit.
  module TargetResourceState
    # Unspecified target resource state.
    TARGET_RESOURCE_STATE_UNSPECIFIED = 0

    # Indicates that the target resource exists.
    TARGET_RESOURCE_EXISTS = 1

    # Indicates that the target resource does not exist.
    TARGET_RESOURCE_DOES_NOT_EXIST = 2
  end
end

#flow_sampling::Float

Returns Optional. The value of the field must be in (0, 1]. The sampling rate of VPC Flow Logs where 1.0 means all collected logs are reported. Setting the sampling rate to 0.0 is not allowed. If you want to disable VPC Flow Logs, use the state field instead. Default value is 1.0.

Returns:

  • (::Float)

    Optional. The value of the field must be in (0, 1]. The sampling rate of VPC Flow Logs where 1.0 means all collected logs are reported. Setting the sampling rate to 0.0 is not allowed. If you want to disable VPC Flow Logs, use the state field instead. Default value is 1.0.



82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# File 'proto_docs/google/cloud/networkmanagement/v1/vpc_flow_logs_config.rb', line 82

class VpcFlowLogsConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class LabelsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Determines whether this configuration will be generating logs.
  # Setting state=DISABLED will pause the log generation for this config.
  module State
    # If not specified, will default to ENABLED.
    STATE_UNSPECIFIED = 0

    # When ENABLED, this configuration will generate logs.
    ENABLED = 1

    # When DISABLED, this configuration will not generate logs.
    DISABLED = 2
  end

  # Toggles the aggregation interval for collecting flow logs by 5-tuple.
  module AggregationInterval
    # If not specified, will default to INTERVAL_5_SEC.
    AGGREGATION_INTERVAL_UNSPECIFIED = 0

    # Aggregate logs in 5s intervals.
    INTERVAL_5_SEC = 1

    # Aggregate logs in 30s intervals.
    INTERVAL_30_SEC = 2

    # Aggregate logs in 1m intervals.
    INTERVAL_1_MIN = 3

    # Aggregate logs in 5m intervals.
    INTERVAL_5_MIN = 4

    # Aggregate logs in 10m intervals.
    INTERVAL_10_MIN = 5

    # Aggregate logs in 15m intervals.
    INTERVAL_15_MIN = 6
  end

  # Configures which log fields would be included.
  module Metadata
    # If not specified, will default to INCLUDE_ALL_METADATA.
    METADATA_UNSPECIFIED = 0

    # Include all metadata fields.
    INCLUDE_ALL_METADATA = 1

    # Exclude all metadata fields.
    EXCLUDE_ALL_METADATA = 2

    # Include only custom fields (specified in metadata_fields).
    CUSTOM_METADATA = 3
  end

  # Optional states of the target resource that are used as part of the
  # diagnostic bit.
  module TargetResourceState
    # Unspecified target resource state.
    TARGET_RESOURCE_STATE_UNSPECIFIED = 0

    # Indicates that the target resource exists.
    TARGET_RESOURCE_EXISTS = 1

    # Indicates that the target resource does not exist.
    TARGET_RESOURCE_DOES_NOT_EXIST = 2
  end
end

#interconnect_attachment::String

Returns Traffic will be logged from the Interconnect Attachment. Format: projects/{project_id}/regions/{region}/interconnectAttachments/{name}.

Returns:

  • (::String)

    Traffic will be logged from the Interconnect Attachment. Format: projects/{project_id}/regions/{region}/interconnectAttachments/{name}



82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# File 'proto_docs/google/cloud/networkmanagement/v1/vpc_flow_logs_config.rb', line 82

class VpcFlowLogsConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class LabelsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Determines whether this configuration will be generating logs.
  # Setting state=DISABLED will pause the log generation for this config.
  module State
    # If not specified, will default to ENABLED.
    STATE_UNSPECIFIED = 0

    # When ENABLED, this configuration will generate logs.
    ENABLED = 1

    # When DISABLED, this configuration will not generate logs.
    DISABLED = 2
  end

  # Toggles the aggregation interval for collecting flow logs by 5-tuple.
  module AggregationInterval
    # If not specified, will default to INTERVAL_5_SEC.
    AGGREGATION_INTERVAL_UNSPECIFIED = 0

    # Aggregate logs in 5s intervals.
    INTERVAL_5_SEC = 1

    # Aggregate logs in 30s intervals.
    INTERVAL_30_SEC = 2

    # Aggregate logs in 1m intervals.
    INTERVAL_1_MIN = 3

    # Aggregate logs in 5m intervals.
    INTERVAL_5_MIN = 4

    # Aggregate logs in 10m intervals.
    INTERVAL_10_MIN = 5

    # Aggregate logs in 15m intervals.
    INTERVAL_15_MIN = 6
  end

  # Configures which log fields would be included.
  module Metadata
    # If not specified, will default to INCLUDE_ALL_METADATA.
    METADATA_UNSPECIFIED = 0

    # Include all metadata fields.
    INCLUDE_ALL_METADATA = 1

    # Exclude all metadata fields.
    EXCLUDE_ALL_METADATA = 2

    # Include only custom fields (specified in metadata_fields).
    CUSTOM_METADATA = 3
  end

  # Optional states of the target resource that are used as part of the
  # diagnostic bit.
  module TargetResourceState
    # Unspecified target resource state.
    TARGET_RESOURCE_STATE_UNSPECIFIED = 0

    # Indicates that the target resource exists.
    TARGET_RESOURCE_EXISTS = 1

    # Indicates that the target resource does not exist.
    TARGET_RESOURCE_DOES_NOT_EXIST = 2
  end
end

#labels::Google::Protobuf::Map{::String => ::String}

Returns Optional. Resource labels to represent user-provided metadata.

Returns:

  • (::Google::Protobuf::Map{::String => ::String})

    Optional. Resource labels to represent user-provided metadata.



82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# File 'proto_docs/google/cloud/networkmanagement/v1/vpc_flow_logs_config.rb', line 82

class VpcFlowLogsConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class LabelsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Determines whether this configuration will be generating logs.
  # Setting state=DISABLED will pause the log generation for this config.
  module State
    # If not specified, will default to ENABLED.
    STATE_UNSPECIFIED = 0

    # When ENABLED, this configuration will generate logs.
    ENABLED = 1

    # When DISABLED, this configuration will not generate logs.
    DISABLED = 2
  end

  # Toggles the aggregation interval for collecting flow logs by 5-tuple.
  module AggregationInterval
    # If not specified, will default to INTERVAL_5_SEC.
    AGGREGATION_INTERVAL_UNSPECIFIED = 0

    # Aggregate logs in 5s intervals.
    INTERVAL_5_SEC = 1

    # Aggregate logs in 30s intervals.
    INTERVAL_30_SEC = 2

    # Aggregate logs in 1m intervals.
    INTERVAL_1_MIN = 3

    # Aggregate logs in 5m intervals.
    INTERVAL_5_MIN = 4

    # Aggregate logs in 10m intervals.
    INTERVAL_10_MIN = 5

    # Aggregate logs in 15m intervals.
    INTERVAL_15_MIN = 6
  end

  # Configures which log fields would be included.
  module Metadata
    # If not specified, will default to INCLUDE_ALL_METADATA.
    METADATA_UNSPECIFIED = 0

    # Include all metadata fields.
    INCLUDE_ALL_METADATA = 1

    # Exclude all metadata fields.
    EXCLUDE_ALL_METADATA = 2

    # Include only custom fields (specified in metadata_fields).
    CUSTOM_METADATA = 3
  end

  # Optional states of the target resource that are used as part of the
  # diagnostic bit.
  module TargetResourceState
    # Unspecified target resource state.
    TARGET_RESOURCE_STATE_UNSPECIFIED = 0

    # Indicates that the target resource exists.
    TARGET_RESOURCE_EXISTS = 1

    # Indicates that the target resource does not exist.
    TARGET_RESOURCE_DOES_NOT_EXIST = 2
  end
end

#metadata::Google::Cloud::NetworkManagement::V1::VpcFlowLogsConfig::Metadata

Returns Optional. Configures whether all, none or a subset of metadata fields should be added to the reported VPC flow logs. Default value is INCLUDE_ALL_METADATA.

Returns:



82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# File 'proto_docs/google/cloud/networkmanagement/v1/vpc_flow_logs_config.rb', line 82

class VpcFlowLogsConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class LabelsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Determines whether this configuration will be generating logs.
  # Setting state=DISABLED will pause the log generation for this config.
  module State
    # If not specified, will default to ENABLED.
    STATE_UNSPECIFIED = 0

    # When ENABLED, this configuration will generate logs.
    ENABLED = 1

    # When DISABLED, this configuration will not generate logs.
    DISABLED = 2
  end

  # Toggles the aggregation interval for collecting flow logs by 5-tuple.
  module AggregationInterval
    # If not specified, will default to INTERVAL_5_SEC.
    AGGREGATION_INTERVAL_UNSPECIFIED = 0

    # Aggregate logs in 5s intervals.
    INTERVAL_5_SEC = 1

    # Aggregate logs in 30s intervals.
    INTERVAL_30_SEC = 2

    # Aggregate logs in 1m intervals.
    INTERVAL_1_MIN = 3

    # Aggregate logs in 5m intervals.
    INTERVAL_5_MIN = 4

    # Aggregate logs in 10m intervals.
    INTERVAL_10_MIN = 5

    # Aggregate logs in 15m intervals.
    INTERVAL_15_MIN = 6
  end

  # Configures which log fields would be included.
  module Metadata
    # If not specified, will default to INCLUDE_ALL_METADATA.
    METADATA_UNSPECIFIED = 0

    # Include all metadata fields.
    INCLUDE_ALL_METADATA = 1

    # Exclude all metadata fields.
    EXCLUDE_ALL_METADATA = 2

    # Include only custom fields (specified in metadata_fields).
    CUSTOM_METADATA = 3
  end

  # Optional states of the target resource that are used as part of the
  # diagnostic bit.
  module TargetResourceState
    # Unspecified target resource state.
    TARGET_RESOURCE_STATE_UNSPECIFIED = 0

    # Indicates that the target resource exists.
    TARGET_RESOURCE_EXISTS = 1

    # Indicates that the target resource does not exist.
    TARGET_RESOURCE_DOES_NOT_EXIST = 2
  end
end

#metadata_fields::Array<::String>

Returns Optional. Custom metadata fields to include in the reported VPC flow logs. Can only be specified if "metadata" was set to CUSTOM_METADATA.

Returns:

  • (::Array<::String>)

    Optional. Custom metadata fields to include in the reported VPC flow logs. Can only be specified if "metadata" was set to CUSTOM_METADATA.



82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# File 'proto_docs/google/cloud/networkmanagement/v1/vpc_flow_logs_config.rb', line 82

class VpcFlowLogsConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class LabelsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Determines whether this configuration will be generating logs.
  # Setting state=DISABLED will pause the log generation for this config.
  module State
    # If not specified, will default to ENABLED.
    STATE_UNSPECIFIED = 0

    # When ENABLED, this configuration will generate logs.
    ENABLED = 1

    # When DISABLED, this configuration will not generate logs.
    DISABLED = 2
  end

  # Toggles the aggregation interval for collecting flow logs by 5-tuple.
  module AggregationInterval
    # If not specified, will default to INTERVAL_5_SEC.
    AGGREGATION_INTERVAL_UNSPECIFIED = 0

    # Aggregate logs in 5s intervals.
    INTERVAL_5_SEC = 1

    # Aggregate logs in 30s intervals.
    INTERVAL_30_SEC = 2

    # Aggregate logs in 1m intervals.
    INTERVAL_1_MIN = 3

    # Aggregate logs in 5m intervals.
    INTERVAL_5_MIN = 4

    # Aggregate logs in 10m intervals.
    INTERVAL_10_MIN = 5

    # Aggregate logs in 15m intervals.
    INTERVAL_15_MIN = 6
  end

  # Configures which log fields would be included.
  module Metadata
    # If not specified, will default to INCLUDE_ALL_METADATA.
    METADATA_UNSPECIFIED = 0

    # Include all metadata fields.
    INCLUDE_ALL_METADATA = 1

    # Exclude all metadata fields.
    EXCLUDE_ALL_METADATA = 2

    # Include only custom fields (specified in metadata_fields).
    CUSTOM_METADATA = 3
  end

  # Optional states of the target resource that are used as part of the
  # diagnostic bit.
  module TargetResourceState
    # Unspecified target resource state.
    TARGET_RESOURCE_STATE_UNSPECIFIED = 0

    # Indicates that the target resource exists.
    TARGET_RESOURCE_EXISTS = 1

    # Indicates that the target resource does not exist.
    TARGET_RESOURCE_DOES_NOT_EXIST = 2
  end
end

#name::String

Returns Identifier. Unique name of the configuration using the form: projects/{project_id}/locations/global/vpcFlowLogsConfigs/{vpc_flow_logs_config_id}.

Returns:

  • (::String)

    Identifier. Unique name of the configuration using the form: projects/{project_id}/locations/global/vpcFlowLogsConfigs/{vpc_flow_logs_config_id}



82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# File 'proto_docs/google/cloud/networkmanagement/v1/vpc_flow_logs_config.rb', line 82

class VpcFlowLogsConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class LabelsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Determines whether this configuration will be generating logs.
  # Setting state=DISABLED will pause the log generation for this config.
  module State
    # If not specified, will default to ENABLED.
    STATE_UNSPECIFIED = 0

    # When ENABLED, this configuration will generate logs.
    ENABLED = 1

    # When DISABLED, this configuration will not generate logs.
    DISABLED = 2
  end

  # Toggles the aggregation interval for collecting flow logs by 5-tuple.
  module AggregationInterval
    # If not specified, will default to INTERVAL_5_SEC.
    AGGREGATION_INTERVAL_UNSPECIFIED = 0

    # Aggregate logs in 5s intervals.
    INTERVAL_5_SEC = 1

    # Aggregate logs in 30s intervals.
    INTERVAL_30_SEC = 2

    # Aggregate logs in 1m intervals.
    INTERVAL_1_MIN = 3

    # Aggregate logs in 5m intervals.
    INTERVAL_5_MIN = 4

    # Aggregate logs in 10m intervals.
    INTERVAL_10_MIN = 5

    # Aggregate logs in 15m intervals.
    INTERVAL_15_MIN = 6
  end

  # Configures which log fields would be included.
  module Metadata
    # If not specified, will default to INCLUDE_ALL_METADATA.
    METADATA_UNSPECIFIED = 0

    # Include all metadata fields.
    INCLUDE_ALL_METADATA = 1

    # Exclude all metadata fields.
    EXCLUDE_ALL_METADATA = 2

    # Include only custom fields (specified in metadata_fields).
    CUSTOM_METADATA = 3
  end

  # Optional states of the target resource that are used as part of the
  # diagnostic bit.
  module TargetResourceState
    # Unspecified target resource state.
    TARGET_RESOURCE_STATE_UNSPECIFIED = 0

    # Indicates that the target resource exists.
    TARGET_RESOURCE_EXISTS = 1

    # Indicates that the target resource does not exist.
    TARGET_RESOURCE_DOES_NOT_EXIST = 2
  end
end

#state::Google::Cloud::NetworkManagement::V1::VpcFlowLogsConfig::State

Returns Optional. The state of the VPC Flow Log configuration. Default value is ENABLED. When creating a new configuration, it must be enabled.

Returns:



82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# File 'proto_docs/google/cloud/networkmanagement/v1/vpc_flow_logs_config.rb', line 82

class VpcFlowLogsConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class LabelsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Determines whether this configuration will be generating logs.
  # Setting state=DISABLED will pause the log generation for this config.
  module State
    # If not specified, will default to ENABLED.
    STATE_UNSPECIFIED = 0

    # When ENABLED, this configuration will generate logs.
    ENABLED = 1

    # When DISABLED, this configuration will not generate logs.
    DISABLED = 2
  end

  # Toggles the aggregation interval for collecting flow logs by 5-tuple.
  module AggregationInterval
    # If not specified, will default to INTERVAL_5_SEC.
    AGGREGATION_INTERVAL_UNSPECIFIED = 0

    # Aggregate logs in 5s intervals.
    INTERVAL_5_SEC = 1

    # Aggregate logs in 30s intervals.
    INTERVAL_30_SEC = 2

    # Aggregate logs in 1m intervals.
    INTERVAL_1_MIN = 3

    # Aggregate logs in 5m intervals.
    INTERVAL_5_MIN = 4

    # Aggregate logs in 10m intervals.
    INTERVAL_10_MIN = 5

    # Aggregate logs in 15m intervals.
    INTERVAL_15_MIN = 6
  end

  # Configures which log fields would be included.
  module Metadata
    # If not specified, will default to INCLUDE_ALL_METADATA.
    METADATA_UNSPECIFIED = 0

    # Include all metadata fields.
    INCLUDE_ALL_METADATA = 1

    # Exclude all metadata fields.
    EXCLUDE_ALL_METADATA = 2

    # Include only custom fields (specified in metadata_fields).
    CUSTOM_METADATA = 3
  end

  # Optional states of the target resource that are used as part of the
  # diagnostic bit.
  module TargetResourceState
    # Unspecified target resource state.
    TARGET_RESOURCE_STATE_UNSPECIFIED = 0

    # Indicates that the target resource exists.
    TARGET_RESOURCE_EXISTS = 1

    # Indicates that the target resource does not exist.
    TARGET_RESOURCE_DOES_NOT_EXIST = 2
  end
end

#target_resource_state::Google::Cloud::NetworkManagement::V1::VpcFlowLogsConfig::TargetResourceState (readonly)

Returns Output only. A diagnostic bit - describes the state of the configured target resource for diagnostic purposes.

Returns:



82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# File 'proto_docs/google/cloud/networkmanagement/v1/vpc_flow_logs_config.rb', line 82

class VpcFlowLogsConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class LabelsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Determines whether this configuration will be generating logs.
  # Setting state=DISABLED will pause the log generation for this config.
  module State
    # If not specified, will default to ENABLED.
    STATE_UNSPECIFIED = 0

    # When ENABLED, this configuration will generate logs.
    ENABLED = 1

    # When DISABLED, this configuration will not generate logs.
    DISABLED = 2
  end

  # Toggles the aggregation interval for collecting flow logs by 5-tuple.
  module AggregationInterval
    # If not specified, will default to INTERVAL_5_SEC.
    AGGREGATION_INTERVAL_UNSPECIFIED = 0

    # Aggregate logs in 5s intervals.
    INTERVAL_5_SEC = 1

    # Aggregate logs in 30s intervals.
    INTERVAL_30_SEC = 2

    # Aggregate logs in 1m intervals.
    INTERVAL_1_MIN = 3

    # Aggregate logs in 5m intervals.
    INTERVAL_5_MIN = 4

    # Aggregate logs in 10m intervals.
    INTERVAL_10_MIN = 5

    # Aggregate logs in 15m intervals.
    INTERVAL_15_MIN = 6
  end

  # Configures which log fields would be included.
  module Metadata
    # If not specified, will default to INCLUDE_ALL_METADATA.
    METADATA_UNSPECIFIED = 0

    # Include all metadata fields.
    INCLUDE_ALL_METADATA = 1

    # Exclude all metadata fields.
    EXCLUDE_ALL_METADATA = 2

    # Include only custom fields (specified in metadata_fields).
    CUSTOM_METADATA = 3
  end

  # Optional states of the target resource that are used as part of the
  # diagnostic bit.
  module TargetResourceState
    # Unspecified target resource state.
    TARGET_RESOURCE_STATE_UNSPECIFIED = 0

    # Indicates that the target resource exists.
    TARGET_RESOURCE_EXISTS = 1

    # Indicates that the target resource does not exist.
    TARGET_RESOURCE_DOES_NOT_EXIST = 2
  end
end

#update_time::Google::Protobuf::Timestamp (readonly)

Returns Output only. The time the config was updated.

Returns:



82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# File 'proto_docs/google/cloud/networkmanagement/v1/vpc_flow_logs_config.rb', line 82

class VpcFlowLogsConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class LabelsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Determines whether this configuration will be generating logs.
  # Setting state=DISABLED will pause the log generation for this config.
  module State
    # If not specified, will default to ENABLED.
    STATE_UNSPECIFIED = 0

    # When ENABLED, this configuration will generate logs.
    ENABLED = 1

    # When DISABLED, this configuration will not generate logs.
    DISABLED = 2
  end

  # Toggles the aggregation interval for collecting flow logs by 5-tuple.
  module AggregationInterval
    # If not specified, will default to INTERVAL_5_SEC.
    AGGREGATION_INTERVAL_UNSPECIFIED = 0

    # Aggregate logs in 5s intervals.
    INTERVAL_5_SEC = 1

    # Aggregate logs in 30s intervals.
    INTERVAL_30_SEC = 2

    # Aggregate logs in 1m intervals.
    INTERVAL_1_MIN = 3

    # Aggregate logs in 5m intervals.
    INTERVAL_5_MIN = 4

    # Aggregate logs in 10m intervals.
    INTERVAL_10_MIN = 5

    # Aggregate logs in 15m intervals.
    INTERVAL_15_MIN = 6
  end

  # Configures which log fields would be included.
  module Metadata
    # If not specified, will default to INCLUDE_ALL_METADATA.
    METADATA_UNSPECIFIED = 0

    # Include all metadata fields.
    INCLUDE_ALL_METADATA = 1

    # Exclude all metadata fields.
    EXCLUDE_ALL_METADATA = 2

    # Include only custom fields (specified in metadata_fields).
    CUSTOM_METADATA = 3
  end

  # Optional states of the target resource that are used as part of the
  # diagnostic bit.
  module TargetResourceState
    # Unspecified target resource state.
    TARGET_RESOURCE_STATE_UNSPECIFIED = 0

    # Indicates that the target resource exists.
    TARGET_RESOURCE_EXISTS = 1

    # Indicates that the target resource does not exist.
    TARGET_RESOURCE_DOES_NOT_EXIST = 2
  end
end

#vpn_tunnel::String

Returns Traffic will be logged from the VPN Tunnel. Format: projects/{project_id}/regions/{region}/vpnTunnels/{name}.

Returns:

  • (::String)

    Traffic will be logged from the VPN Tunnel. Format: projects/{project_id}/regions/{region}/vpnTunnels/{name}



82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# File 'proto_docs/google/cloud/networkmanagement/v1/vpc_flow_logs_config.rb', line 82

class VpcFlowLogsConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class LabelsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Determines whether this configuration will be generating logs.
  # Setting state=DISABLED will pause the log generation for this config.
  module State
    # If not specified, will default to ENABLED.
    STATE_UNSPECIFIED = 0

    # When ENABLED, this configuration will generate logs.
    ENABLED = 1

    # When DISABLED, this configuration will not generate logs.
    DISABLED = 2
  end

  # Toggles the aggregation interval for collecting flow logs by 5-tuple.
  module AggregationInterval
    # If not specified, will default to INTERVAL_5_SEC.
    AGGREGATION_INTERVAL_UNSPECIFIED = 0

    # Aggregate logs in 5s intervals.
    INTERVAL_5_SEC = 1

    # Aggregate logs in 30s intervals.
    INTERVAL_30_SEC = 2

    # Aggregate logs in 1m intervals.
    INTERVAL_1_MIN = 3

    # Aggregate logs in 5m intervals.
    INTERVAL_5_MIN = 4

    # Aggregate logs in 10m intervals.
    INTERVAL_10_MIN = 5

    # Aggregate logs in 15m intervals.
    INTERVAL_15_MIN = 6
  end

  # Configures which log fields would be included.
  module Metadata
    # If not specified, will default to INCLUDE_ALL_METADATA.
    METADATA_UNSPECIFIED = 0

    # Include all metadata fields.
    INCLUDE_ALL_METADATA = 1

    # Exclude all metadata fields.
    EXCLUDE_ALL_METADATA = 2

    # Include only custom fields (specified in metadata_fields).
    CUSTOM_METADATA = 3
  end

  # Optional states of the target resource that are used as part of the
  # diagnostic bit.
  module TargetResourceState
    # Unspecified target resource state.
    TARGET_RESOURCE_STATE_UNSPECIFIED = 0

    # Indicates that the target resource exists.
    TARGET_RESOURCE_EXISTS = 1

    # Indicates that the target resource does not exist.
    TARGET_RESOURCE_DOES_NOT_EXIST = 2
  end
end