Class: Google::Apis::SecuritycenterV1::ListBigQueryExportsResponse
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1::ListBigQueryExportsResponse
- 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
-
#big_query_exports ⇒ Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1BigQueryExport>
The BigQuery exports from the specified parent.
-
#next_page_token ⇒ String
A token, which can be sent as
page_token
to retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListBigQueryExportsResponse
constructor
A new instance of ListBigQueryExportsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListBigQueryExportsResponse
Returns a new instance of ListBigQueryExportsResponse.
9505 9506 9507 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 9505 def initialize(**args) update!(**args) end |
Instance Attribute Details
#big_query_exports ⇒ Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1BigQueryExport>
The BigQuery exports from the specified parent.
Corresponds to the JSON property bigQueryExports
9497 9498 9499 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 9497 def big_query_exports @big_query_exports end |
#next_page_token ⇒ String
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
9503 9504 9505 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 9503 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9510 9511 9512 9513 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 9510 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 |