entitlements
Creates, updates, deletes, gets or lists a entitlements
resource.
Overview
Name | entitlements |
Type | Resource |
Id | google.oracledatabase.entitlements |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Identifier. The name of the Entitlement resource with the format: projects/{project}/locations/{region}/entitlements/{entitlement} |
cloudAccountDetails | object | Details of the OCI Cloud Account. |
entitlementId | string | Output only. Google Cloud Marketplace order ID (aka entitlement ID) |
state | string | Output only. Entitlement State. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | locationsId, projectsId | Lists 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 }}';