Skip to main content

entitlements

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

Overview

Nameentitlements
TypeResource
Idgoogle.oracledatabase.entitlements

Fields

NameDatatypeDescription
namestringIdentifier. The name of the Entitlement resource with the format: projects/{project}/locations/{region}/entitlements/{entitlement}
cloudAccountDetailsobjectDetails of the OCI Cloud Account.
entitlementIdstringOutput only. Google Cloud Marketplace order ID (aka entitlement ID)
statestringOutput only. Entitlement State.

Methods

NameAccessible byRequired ParamsDescription
listSELECTlocationsId, projectsIdLists the entitlements in a given project.

SELECT examples

Lists the entitlements in a given project.

SELECT
name,
cloudAccountDetails,
entitlementId,
state
FROM google.oracledatabase.entitlements
WHERE locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';