Class: Google::Apis::SecuritycenterV1::ListBigQueryExportsResponse

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

Overview

Response message for listing BigQuery exports.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListBigQueryExportsResponse

Returns a new instance of ListBigQueryExportsResponse.



8014
8015
8016
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 8014

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

Instance Attribute Details

#big_query_exportsArray<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1BigQueryExport>

The BigQuery exports from the specified parent. Corresponds to the JSON property bigQueryExports



8006
8007
8008
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 8006

def big_query_exports
  @big_query_exports
end

#next_page_tokenString

A token, which can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


8012
8013
8014
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 8012

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8019
8020
8021
8022
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 8019

def update!(**args)
  @big_query_exports = args[:big_query_exports] if args.key?(:big_query_exports)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end