Class: Google::Apis::AdminDatatransferV1::ApplicationsListResponse
- Inherits:
-
Object
- Object
- Google::Apis::AdminDatatransferV1::ApplicationsListResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/admin_datatransfer_v1/classes.rb,
generated/google/apis/admin_datatransfer_v1/representations.rb,
generated/google/apis/admin_datatransfer_v1/representations.rb
Overview
Template for a collection of Applications.
Instance Attribute Summary collapse
-
#applications ⇒ Array<Google::Apis::AdminDatatransferV1::Application>
List of applications that support data transfer and are also installed for the customer.
-
#etag ⇒ String
ETag of the resource.
-
#kind ⇒ String
Identifies the resource as a collection of Applications.
-
#next_page_token ⇒ String
Continuation token which will be used to specify next page in list API.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ApplicationsListResponse
constructor
A new instance of ApplicationsListResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ApplicationsListResponse
Returns a new instance of ApplicationsListResponse
152 153 154 |
# File 'generated/google/apis/admin_datatransfer_v1/classes.rb', line 152 def initialize(**args) update!(**args) end |
Instance Attribute Details
#applications ⇒ Array<Google::Apis::AdminDatatransferV1::Application>
List of applications that support data transfer and are also installed for the
customer.
Corresponds to the JSON property applications
135 136 137 |
# File 'generated/google/apis/admin_datatransfer_v1/classes.rb', line 135 def applications @applications end |
#etag ⇒ String
ETag of the resource.
Corresponds to the JSON property etag
140 141 142 |
# File 'generated/google/apis/admin_datatransfer_v1/classes.rb', line 140 def etag @etag end |
#kind ⇒ String
Identifies the resource as a collection of Applications.
Corresponds to the JSON property kind
145 146 147 |
# File 'generated/google/apis/admin_datatransfer_v1/classes.rb', line 145 def kind @kind end |
#next_page_token ⇒ String
Continuation token which will be used to specify next page in list API.
Corresponds to the JSON property nextPageToken
150 151 152 |
# File 'generated/google/apis/admin_datatransfer_v1/classes.rb', line 150 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
157 158 159 160 161 162 |
# File 'generated/google/apis/admin_datatransfer_v1/classes.rb', line 157 def update!(**args) @applications = args[:applications] if args.key?(:applications) @etag = args[:etag] if args.key?(:etag) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |