setFailure method
- GoogleChromeManagementVersionsV1SetFailureRequest request,
- String name, {
- String? $fields,
Marks a certificate provisioning process as failed.
request - The metadata request object.
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 GoogleChromeManagementVersionsV1SetFailureResponse.
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<GoogleChromeManagementVersionsV1SetFailureResponse> setFailure(
GoogleChromeManagementVersionsV1SetFailureRequest request,
core.String name, {
core.String? $fields,
}) async {
final body_ = convert.json.encode(request);
final queryParams_ = <core.String, core.List<core.String>>{
'fields': ?$fields == null ? null : [$fields],
};
final url_ = 'v1/' + core.Uri.encodeFull('$name') + ':setFailure';
final response_ = await _requester.request(
url_,
'POST',
body: body_,
queryParams: queryParams_,
);
return GoogleChromeManagementVersionsV1SetFailureResponse.fromJson(
response_ as core.Map<core.String, core.dynamic>,
);
}