subscriptions_saas_subscription_details
Creates, updates, deletes, gets or lists a subscriptions_saas_subscription_details
resource.
Overview
Name | subscriptions_saas_subscription_details |
Type | Resource |
Id | azure_isv.oracle.subscriptions_saas_subscription_details |
Fields
The following fields are returned by SELECT
queries:
- list
Azure operation completed successfully.
Name | Datatype | Description |
---|---|---|
id | string | Purchased SaaS subscription ID |
isAutoRenew | boolean | AutoRenew flag |
isFreeTrial | boolean | FreeTrial flag |
offerId | string | Purchased offer ID |
planId | string | Purchased offer's plan ID |
publisherId | string | Publisher ID |
purchaserEmailId | string | Purchaser Email ID |
purchaserTenantId | string | Purchaser Tenant ID |
saasSubscriptionStatus | string | Indicates the status of the Subscription. |
subscriptionName | string | SaaS subscription name |
termUnit | string | Purchase Term Unit |
timeCreated | string (date-time) | Creation Date and Time |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId | List Saas Subscription Details |
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.
Name | Datatype | Description |
---|---|---|
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- list
List Saas Subscription Details
SELECT
id,
isAutoRenew,
isFreeTrial,
offerId,
planId,
publisherId,
purchaserEmailId,
purchaserTenantId,
saasSubscriptionStatus,
subscriptionName,
termUnit,
timeCreated
FROM azure_isv.oracle.subscriptions_saas_subscription_details
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;