Class: Google::Apis::NetworkmanagementV1::QueryOrgVpcFlowLogsConfigsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/networkmanagement_v1/classes.rb,
lib/google/apis/networkmanagement_v1/representations.rb,
lib/google/apis/networkmanagement_v1/representations.rb

Overview

Response for the QueryVpcFlowLogsConfigs method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ QueryOrgVpcFlowLogsConfigsResponse

Returns a new instance of QueryOrgVpcFlowLogsConfigsResponse.



3477
3478
3479
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 3477

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#next_page_tokenString

Page token to fetch the next set of configurations. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


3465
3466
3467
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 3465

def next_page_token
  @next_page_token
end

#unreachableArray<String>

Locations that could not be reached (when querying all locations with -). Corresponds to the JSON property unreachable

Returns:

  • (Array<String>)


3470
3471
3472
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 3470

def unreachable
  @unreachable
end

#vpc_flow_logs_configsArray<Google::Apis::NetworkmanagementV1::VpcFlowLogsConfig>

List of VPC Flow Log configurations. Corresponds to the JSON property vpcFlowLogsConfigs



3475
3476
3477
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 3475

def vpc_flow_logs_configs
  @vpc_flow_logs_configs
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3482
3483
3484
3485
3486
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 3482

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