get method
Retrieves a certificate provisioning process.
Request parameters:
name - Required. Resource name of the CertificateProvisioningProcess
to return. The name pattern is given as
customers/{customer}/certificateProvisioningProcesses/{certificate_provisioning_process}
with {customer} being the obfuscated customer id and
{certificate_provisioning_process} being the certificate provisioning
process id.
Value must have pattern
^customers/\[^/\]+/certificateProvisioningProcesses/\[^/\]+$.
$fields - Selector specifying which fields to include in a partial
response.
Completes with a GoogleChromeManagementVersionsV1CertificateProvisioningProcess.
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<GoogleChromeManagementVersionsV1CertificateProvisioningProcess>
get(core.String name, {core.String? $fields}) async {
final queryParams_ = <core.String, core.List<core.String>>{
'fields': ?$fields == null ? null : [$fields],
};
final url_ = 'v1/' + core.Uri.encodeFull('$name');
final response_ = await _requester.request(
url_,
'GET',
queryParams: queryParams_,
);
return GoogleChromeManagementVersionsV1CertificateProvisioningProcess.fromJson(
response_ as core.Map<core.String, core.dynamic>,
);
}