Skip to main content

reliability_risks

Creates, updates, deletes, gets or lists a reliability_risks resource.

Overview

Namereliability_risks
TypeResource
Idgoogle.compute.reliability_risks

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstring (uint64)[Output Only] The unique identifier for the resource. This identifier is defined by the server.
namestringName of the resource. The name must be 1-63 characters long and comply with RFC1035. (pattern: [a-z](?:[-a-z0-9]{0,61}[a-z0-9])?)
creationTimestampstringOutput only. [Output Only] Creation timestamp in RFC3339 text format.
descriptionstringAn optional textual description of the resource; provided when the resource is created.
detailsobject[Output Only] Details of the reliability risk resource (id: RiskDetails)
kindstringOutput only. [Output Only] Type of resource. Always compute#reliabilityRisk for reliability risks. (default: compute#reliabilityRisk)
recommendationobjectThe recommendation to mitigate the risk. (id: RiskRecommendation)
selfLinkstringOutput only. [Output Only] Server-defined URL for the resource.
selfLinkWithIdstringOutput only. [Output Only] Server-defined URL for this resource with the resource id.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectproject, reliabilityRiskReturns the specified ReliabilityRisk resource.
listselectprojectreturnPartialSuccess, orderBy, filter, maxResults, pageTokenRetrieves the list of reliabilityRisks available in the specified project.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
projectstring
reliabilityRiskstring
filterstring
maxResultsinteger (uint32)
orderBystring
pageTokenstring
returnPartialSuccessboolean

SELECT examples

Returns the specified ReliabilityRisk resource.

SELECT
id,
name,
creationTimestamp,
description,
details,
kind,
recommendation,
selfLink,
selfLinkWithId
FROM google.compute.reliability_risks
WHERE project = '{{ project }}' -- required
AND reliabilityRisk = '{{ reliabilityRisk }}' -- required
;