Class: Google::Apis::NetworkmanagementV1beta1::QueryOrgVpcFlowLogsConfigsResponse
- Inherits:
-
Object
- Object
- Google::Apis::NetworkmanagementV1beta1::QueryOrgVpcFlowLogsConfigsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/networkmanagement_v1beta1/classes.rb,
lib/google/apis/networkmanagement_v1beta1/representations.rb,
lib/google/apis/networkmanagement_v1beta1/representations.rb
Overview
Response for the QueryVpcFlowLogsConfigs method.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Page token to fetch the next set of configurations.
-
#unreachable ⇒ Array<String>
Locations that could not be reached (when querying all locations with
-). -
#vpc_flow_logs_configs ⇒ Array<Google::Apis::NetworkmanagementV1beta1::VpcFlowLogsConfig>
List of VPC Flow Log configurations.
Instance Method Summary collapse
-
#initialize(**args) ⇒ QueryOrgVpcFlowLogsConfigsResponse
constructor
A new instance of QueryOrgVpcFlowLogsConfigsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ QueryOrgVpcFlowLogsConfigsResponse
Returns a new instance of QueryOrgVpcFlowLogsConfigsResponse.
2518 2519 2520 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 2518 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Page token to fetch the next set of configurations.
Corresponds to the JSON property nextPageToken
2506 2507 2508 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 2506 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
Locations that could not be reached (when querying all locations with -).
Corresponds to the JSON property unreachable
2511 2512 2513 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 2511 def unreachable @unreachable end |
#vpc_flow_logs_configs ⇒ Array<Google::Apis::NetworkmanagementV1beta1::VpcFlowLogsConfig>
List of VPC Flow Log configurations.
Corresponds to the JSON property vpcFlowLogsConfigs
2516 2517 2518 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 2516 def vpc_flow_logs_configs @vpc_flow_logs_configs end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2523 2524 2525 2526 2527 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 2523 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable = args[:unreachable] if args.key?(:unreachable) @vpc_flow_logs_configs = args[:vpc_flow_logs_configs] if args.key?(:vpc_flow_logs_configs) end |