Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListDataCollectorsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListDataCollectorsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/apigee_v1/classes.rb,
generated/google/apis/apigee_v1/representations.rb,
generated/google/apis/apigee_v1/representations.rb
Overview
Response for ListDataCollectors.
Instance Attribute Summary collapse
-
#data_collectors ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1DataCollector>
Data collectors in the specified organization.
-
#next_page_token ⇒ String
Page token that you can include in a ListDataCollectors request to retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1ListDataCollectorsResponse
constructor
A new instance of GoogleCloudApigeeV1ListDataCollectorsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1ListDataCollectorsResponse
Returns a new instance of GoogleCloudApigeeV1ListDataCollectorsResponse.
3559 3560 3561 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 3559 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_collectors ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1DataCollector>
Data collectors in the specified organization.
Corresponds to the JSON property dataCollectors
3551 3552 3553 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 3551 def data_collectors @data_collectors end |
#next_page_token ⇒ String
Page token that you can include in a ListDataCollectors request to retrieve
the next page. If omitted, no subsequent pages exist.
Corresponds to the JSON property nextPageToken
3557 3558 3559 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 3557 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3564 3565 3566 3567 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 3564 def update!(**args) @data_collectors = args[:data_collectors] if args.key?(:data_collectors) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |