get method
Get a specific app for a customer by its resource name.
Request parameters:
name
- Required. The app for which details are being queried. Examples:
"customers/my_customer/apps/chrome/gmbmikajjgmnabiglmofipeabaddhgne@2.1.2"
for the Save to Google Drive Chrome extension version 2.1.2,
"customers/my_customer/apps/android/com.google.android.apps.docs" for the
Google Drive Android app's latest version.
Value must have pattern ^customers/\[^/\]+/apps/android/\[^/\]+$
.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a GoogleChromeManagementV1AppDetails.
Completes with a commons.ApiRequestError if the API endpoint returned an error.
If the used http.Client
completes with an error when making a REST call,
this method will complete with the same error.
Implementation
async.Future<GoogleChromeManagementV1AppDetails> get(
core.String name, {
core.String? $fields,
}) async {
final queryParams_ = <core.String, core.List<core.String>>{
if ($fields != null) 'fields': [$fields],
};
final url_ = 'v1/' + core.Uri.encodeFull('$name');
final response_ = await _requester.request(
url_,
'GET',
queryParams: queryParams_,
);
return GoogleChromeManagementV1AppDetails.fromJson(
response_ as core.Map<core.String, core.dynamic>);
}