oci.OsubSubscription.getSubscriptions
Explore with Pulumi AI
This data source provides the list of Subscriptions in Oracle Cloud Infrastructure Osub Subscription service.
This list API returns all subscriptions for a given plan number or subscription id or buyer email and provides additional parameters to include ratecard and commitment details. This API expects exactly one of the above mentioned parameters as input. If more than one parameters are provided the API will throw a 400 - invalid parameters exception and if no parameters are provided it will throw a 400 - missing parameter exception
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testSubscriptions = oci.OsubSubscription.getSubscriptions({
compartmentId: compartmentId,
buyerEmail: subscriptionBuyerEmail,
isCommitInfoRequired: subscriptionIsCommitInfoRequired,
planNumber: subscriptionPlanNumber,
subscriptionId: testSubscription.id,
xOneGatewaySubscriptionId: subscriptionXOneGatewaySubscriptionId,
xOneOriginRegion: subscriptionXOneOriginRegion,
});
import pulumi
import pulumi_oci as oci
test_subscriptions = oci.OsubSubscription.get_subscriptions(compartment_id=compartment_id,
buyer_email=subscription_buyer_email,
is_commit_info_required=subscription_is_commit_info_required,
plan_number=subscription_plan_number,
subscription_id=test_subscription["id"],
x_one_gateway_subscription_id=subscription_x_one_gateway_subscription_id,
x_one_origin_region=subscription_x_one_origin_region)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/OsubSubscription"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := OsubSubscription.GetSubscriptions(ctx, &osubsubscription.GetSubscriptionsArgs{
CompartmentId: compartmentId,
BuyerEmail: pulumi.StringRef(subscriptionBuyerEmail),
IsCommitInfoRequired: pulumi.BoolRef(subscriptionIsCommitInfoRequired),
PlanNumber: pulumi.StringRef(subscriptionPlanNumber),
SubscriptionId: pulumi.StringRef(testSubscription.Id),
XOneGatewaySubscriptionId: pulumi.StringRef(subscriptionXOneGatewaySubscriptionId),
XOneOriginRegion: pulumi.StringRef(subscriptionXOneOriginRegion),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testSubscriptions = Oci.OsubSubscription.GetSubscriptions.Invoke(new()
{
CompartmentId = compartmentId,
BuyerEmail = subscriptionBuyerEmail,
IsCommitInfoRequired = subscriptionIsCommitInfoRequired,
PlanNumber = subscriptionPlanNumber,
SubscriptionId = testSubscription.Id,
XOneGatewaySubscriptionId = subscriptionXOneGatewaySubscriptionId,
XOneOriginRegion = subscriptionXOneOriginRegion,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.OsubSubscription.OsubSubscriptionFunctions;
import com.pulumi.oci.OsubSubscription.inputs.GetSubscriptionsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var testSubscriptions = OsubSubscriptionFunctions.getSubscriptions(GetSubscriptionsArgs.builder()
.compartmentId(compartmentId)
.buyerEmail(subscriptionBuyerEmail)
.isCommitInfoRequired(subscriptionIsCommitInfoRequired)
.planNumber(subscriptionPlanNumber)
.subscriptionId(testSubscription.id())
.xOneGatewaySubscriptionId(subscriptionXOneGatewaySubscriptionId)
.xOneOriginRegion(subscriptionXOneOriginRegion)
.build());
}
}
variables:
testSubscriptions:
fn::invoke:
Function: oci:OsubSubscription:getSubscriptions
Arguments:
compartmentId: ${compartmentId}
buyerEmail: ${subscriptionBuyerEmail}
isCommitInfoRequired: ${subscriptionIsCommitInfoRequired}
planNumber: ${subscriptionPlanNumber}
subscriptionId: ${testSubscription.id}
xOneGatewaySubscriptionId: ${subscriptionXOneGatewaySubscriptionId}
xOneOriginRegion: ${subscriptionXOneOriginRegion}
Using getSubscriptions
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getSubscriptions(args: GetSubscriptionsArgs, opts?: InvokeOptions): Promise<GetSubscriptionsResult>
function getSubscriptionsOutput(args: GetSubscriptionsOutputArgs, opts?: InvokeOptions): Output<GetSubscriptionsResult>
def get_subscriptions(buyer_email: Optional[str] = None,
compartment_id: Optional[str] = None,
filters: Optional[Sequence[_osubsubscription.GetSubscriptionsFilter]] = None,
is_commit_info_required: Optional[bool] = None,
plan_number: Optional[str] = None,
subscription_id: Optional[str] = None,
x_one_gateway_subscription_id: Optional[str] = None,
x_one_origin_region: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetSubscriptionsResult
def get_subscriptions_output(buyer_email: Optional[pulumi.Input[str]] = None,
compartment_id: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[_osubsubscription.GetSubscriptionsFilterArgs]]]] = None,
is_commit_info_required: Optional[pulumi.Input[bool]] = None,
plan_number: Optional[pulumi.Input[str]] = None,
subscription_id: Optional[pulumi.Input[str]] = None,
x_one_gateway_subscription_id: Optional[pulumi.Input[str]] = None,
x_one_origin_region: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetSubscriptionsResult]
func GetSubscriptions(ctx *Context, args *GetSubscriptionsArgs, opts ...InvokeOption) (*GetSubscriptionsResult, error)
func GetSubscriptionsOutput(ctx *Context, args *GetSubscriptionsOutputArgs, opts ...InvokeOption) GetSubscriptionsResultOutput
> Note: This function is named GetSubscriptions
in the Go SDK.
public static class GetSubscriptions
{
public static Task<GetSubscriptionsResult> InvokeAsync(GetSubscriptionsArgs args, InvokeOptions? opts = null)
public static Output<GetSubscriptionsResult> Invoke(GetSubscriptionsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetSubscriptionsResult> getSubscriptions(GetSubscriptionsArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:OsubSubscription/getSubscriptions:getSubscriptions
arguments:
# arguments dictionary
The following arguments are supported:
- Compartment
Id string - The OCID of the compartment.
- Buyer
Email string - Buyer Email Id
- Filters
List<Get
Subscriptions Filter> - Is
Commit boolInfo Required - Boolean value to decide whether commitment services will be shown
- Plan
Number string - The Plan Number
- Subscription
Id string - Line level Subscription Id
- XOne
Gateway stringSubscription Id - This header is meant to be used only for internal purposes and will be ignored on any public request. The purpose of this header is to help on Gateway to API calls identification.
- XOne
Origin stringRegion - The Oracle Cloud Infrastructure home region name in case home region is not us-ashburn-1 (IAD), e.g. ap-mumbai-1, us-phoenix-1 etc.
- Compartment
Id string - The OCID of the compartment.
- Buyer
Email string - Buyer Email Id
- Filters
[]Get
Subscriptions Filter - Is
Commit boolInfo Required - Boolean value to decide whether commitment services will be shown
- Plan
Number string - The Plan Number
- Subscription
Id string - Line level Subscription Id
- XOne
Gateway stringSubscription Id - This header is meant to be used only for internal purposes and will be ignored on any public request. The purpose of this header is to help on Gateway to API calls identification.
- XOne
Origin stringRegion - The Oracle Cloud Infrastructure home region name in case home region is not us-ashburn-1 (IAD), e.g. ap-mumbai-1, us-phoenix-1 etc.
- compartment
Id String - The OCID of the compartment.
- buyer
Email String - Buyer Email Id
- filters
List<Get
Subscriptions Filter> - is
Commit BooleanInfo Required - Boolean value to decide whether commitment services will be shown
- plan
Number String - The Plan Number
- subscription
Id String - Line level Subscription Id
- x
One StringGateway Subscription Id - This header is meant to be used only for internal purposes and will be ignored on any public request. The purpose of this header is to help on Gateway to API calls identification.
- x
One StringOrigin Region - The Oracle Cloud Infrastructure home region name in case home region is not us-ashburn-1 (IAD), e.g. ap-mumbai-1, us-phoenix-1 etc.
- compartment
Id string - The OCID of the compartment.
- buyer
Email string - Buyer Email Id
- filters
Get
Subscriptions Filter[] - is
Commit booleanInfo Required - Boolean value to decide whether commitment services will be shown
- plan
Number string - The Plan Number
- subscription
Id string - Line level Subscription Id
- x
One stringGateway Subscription Id - This header is meant to be used only for internal purposes and will be ignored on any public request. The purpose of this header is to help on Gateway to API calls identification.
- x
One stringOrigin Region - The Oracle Cloud Infrastructure home region name in case home region is not us-ashburn-1 (IAD), e.g. ap-mumbai-1, us-phoenix-1 etc.
- compartment_
id str - The OCID of the compartment.
- buyer_
email str - Buyer Email Id
- filters
Sequence[osubsubscription.
Get Subscriptions Filter] - is_
commit_ boolinfo_ required - Boolean value to decide whether commitment services will be shown
- plan_
number str - The Plan Number
- subscription_
id str - Line level Subscription Id
- x_
one_ strgateway_ subscription_ id - This header is meant to be used only for internal purposes and will be ignored on any public request. The purpose of this header is to help on Gateway to API calls identification.
- x_
one_ strorigin_ region - The Oracle Cloud Infrastructure home region name in case home region is not us-ashburn-1 (IAD), e.g. ap-mumbai-1, us-phoenix-1 etc.
- compartment
Id String - The OCID of the compartment.
- buyer
Email String - Buyer Email Id
- filters List<Property Map>
- is
Commit BooleanInfo Required - Boolean value to decide whether commitment services will be shown
- plan
Number String - The Plan Number
- subscription
Id String - Line level Subscription Id
- x
One StringGateway Subscription Id - This header is meant to be used only for internal purposes and will be ignored on any public request. The purpose of this header is to help on Gateway to API calls identification.
- x
One StringOrigin Region - The Oracle Cloud Infrastructure home region name in case home region is not us-ashburn-1 (IAD), e.g. ap-mumbai-1, us-phoenix-1 etc.
getSubscriptions Result
The following output properties are available:
- Compartment
Id string - Id string
- The provider-assigned unique ID for this managed resource.
- Subscriptions
List<Get
Subscriptions Subscription> - The list of subscriptions.
- Buyer
Email string - Filters
List<Get
Subscriptions Filter> - Is
Commit boolInfo Required - Plan
Number string - Subscription
Id string - XOne
Gateway stringSubscription Id - XOne
Origin stringRegion
- Compartment
Id string - Id string
- The provider-assigned unique ID for this managed resource.
- Subscriptions
[]Get
Subscriptions Subscription - The list of subscriptions.
- Buyer
Email string - Filters
[]Get
Subscriptions Filter - Is
Commit boolInfo Required - Plan
Number string - Subscription
Id string - XOne
Gateway stringSubscription Id - XOne
Origin stringRegion
- compartment
Id String - id String
- The provider-assigned unique ID for this managed resource.
- subscriptions
List<Get
Subscriptions Subscription> - The list of subscriptions.
- buyer
Email String - filters
List<Get
Subscriptions Filter> - is
Commit BooleanInfo Required - plan
Number String - subscription
Id String - x
One StringGateway Subscription Id - x
One StringOrigin Region
- compartment
Id string - id string
- The provider-assigned unique ID for this managed resource.
- subscriptions
Get
Subscriptions Subscription[] - The list of subscriptions.
- buyer
Email string - filters
Get
Subscriptions Filter[] - is
Commit booleanInfo Required - plan
Number string - subscription
Id string - x
One stringGateway Subscription Id - x
One stringOrigin Region
- compartment_
id str - id str
- The provider-assigned unique ID for this managed resource.
- subscriptions
Sequence[osubsubscription.
Get Subscriptions Subscription] - The list of subscriptions.
- buyer_
email str - filters
Sequence[osubsubscription.
Get Subscriptions Filter] - is_
commit_ boolinfo_ required - plan_
number str - subscription_
id str - x_
one_ strgateway_ subscription_ id - x_
one_ strorigin_ region
- compartment
Id String - id String
- The provider-assigned unique ID for this managed resource.
- subscriptions List<Property Map>
- The list of subscriptions.
- buyer
Email String - filters List<Property Map>
- is
Commit BooleanInfo Required - plan
Number String - subscription
Id String - x
One StringGateway Subscription Id - x
One StringOrigin Region
Supporting Types
GetSubscriptionsFilter
GetSubscriptionsSubscription
- Currencies
List<Get
Subscriptions Subscription Currency> - Currency details
- Service
Name string - Customer friendly service name provided by PRG
- Status string
- Subscribed service status
- Subscribed
Services List<GetSubscriptions Subscription Subscribed Service> - List of Subscribed Services of the plan
- Time
End string - Represents the date when the last service of the subscription ends
- Time
Start string - Represents the date when the first service of the subscription was activated
- Currencies
[]Get
Subscriptions Subscription Currency - Currency details
- Service
Name string - Customer friendly service name provided by PRG
- Status string
- Subscribed service status
- Subscribed
Services []GetSubscriptions Subscription Subscribed Service - List of Subscribed Services of the plan
- Time
End string - Represents the date when the last service of the subscription ends
- Time
Start string - Represents the date when the first service of the subscription was activated
- currencies
List<Get
Subscriptions Subscription Currency> - Currency details
- service
Name String - Customer friendly service name provided by PRG
- status String
- Subscribed service status
- subscribed
Services List<GetSubscriptions Subscription Subscribed Service> - List of Subscribed Services of the plan
- time
End String - Represents the date when the last service of the subscription ends
- time
Start String - Represents the date when the first service of the subscription was activated
- currencies
Get
Subscriptions Subscription Currency[] - Currency details
- service
Name string - Customer friendly service name provided by PRG
- status string
- Subscribed service status
- subscribed
Services GetSubscriptions Subscription Subscribed Service[] - List of Subscribed Services of the plan
- time
End string - Represents the date when the last service of the subscription ends
- time
Start string - Represents the date when the first service of the subscription was activated
- currencies
Sequence[osubsubscription.
Get Subscriptions Subscription Currency] - Currency details
- service_
name str - Customer friendly service name provided by PRG
- status str
- Subscribed service status
- subscribed_
services Sequence[osubsubscription.Get Subscriptions Subscription Subscribed Service] - List of Subscribed Services of the plan
- time_
end str - Represents the date when the last service of the subscription ends
- time_
start str - Represents the date when the first service of the subscription was activated
- currencies List<Property Map>
- Currency details
- service
Name String - Customer friendly service name provided by PRG
- status String
- Subscribed service status
- subscribed
Services List<Property Map> - List of Subscribed Services of the plan
- time
End String - Represents the date when the last service of the subscription ends
- time
Start String - Represents the date when the first service of the subscription was activated
GetSubscriptionsSubscriptionCurrency
- Iso
Code string - Currency Code
- Name string
- Product name
- Std
Precision string - Standard Precision of the Currency
- Iso
Code string - Currency Code
- Name string
- Product name
- Std
Precision string - Standard Precision of the Currency
- iso
Code String - Currency Code
- name String
- Product name
- std
Precision String - Standard Precision of the Currency
- iso
Code string - Currency Code
- name string
- Product name
- std
Precision string - Standard Precision of the Currency
- iso_
code str - Currency Code
- name str
- Product name
- std_
precision str - Standard Precision of the Currency
- iso
Code String - Currency Code
- name String
- Product name
- std
Precision String - Standard Precision of the Currency
GetSubscriptionsSubscriptionSubscribedService
- Booking
Opty stringNumber - Booking Opportunity Number of Subscribed Service
- Commitment
Services List<GetSubscriptions Subscription Subscribed Service Commitment Service> - List of Commitment services of a line
- Csi string
- Subscribed service CSI number
- Data
Center stringRegion - Subscribed service data center region
- Funded
Allocation stringValue - Funded Allocation line value example: 12000.00
- Id string
- SPM internal Subscribed Service ID
- Is
Intent boolTo Pay - Subscribed service intent to pay flag
- Net
Unit stringPrice - Subscribed service net unit price
- Operation
Type string - Subscribed service operation type
- Order
Number string - Sales Order Number associated to the subscribed service
- Partner
Transaction stringType - This field contains the name of the partner to which the subscription belongs - depending on which the invoicing may differ
- Pricing
Model string - Subscribed service pricing model
- Products
List<Get
Subscriptions Subscription Subscribed Service Product> - Product description
- Program
Type string - Subscribed service program type
- Promo
Type string - Subscribed service promotion type
- Quantity string
- Subscribed service quantity
- Status string
- Subscribed service status
- Term
Value string - Term value in Months
- Term
Value stringUom - Term value UOM
- Time
End string - Represents the date when the last service of the subscription ends
- Time
Start string - Represents the date when the first service of the subscription was activated
- Total
Value string - Subscribed service total value
- Booking
Opty stringNumber - Booking Opportunity Number of Subscribed Service
- Commitment
Services []GetSubscriptions Subscription Subscribed Service Commitment Service - List of Commitment services of a line
- Csi string
- Subscribed service CSI number
- Data
Center stringRegion - Subscribed service data center region
- Funded
Allocation stringValue - Funded Allocation line value example: 12000.00
- Id string
- SPM internal Subscribed Service ID
- Is
Intent boolTo Pay - Subscribed service intent to pay flag
- Net
Unit stringPrice - Subscribed service net unit price
- Operation
Type string - Subscribed service operation type
- Order
Number string - Sales Order Number associated to the subscribed service
- Partner
Transaction stringType - This field contains the name of the partner to which the subscription belongs - depending on which the invoicing may differ
- Pricing
Model string - Subscribed service pricing model
- Products
[]Get
Subscriptions Subscription Subscribed Service Product - Product description
- Program
Type string - Subscribed service program type
- Promo
Type string - Subscribed service promotion type
- Quantity string
- Subscribed service quantity
- Status string
- Subscribed service status
- Term
Value string - Term value in Months
- Term
Value stringUom - Term value UOM
- Time
End string - Represents the date when the last service of the subscription ends
- Time
Start string - Represents the date when the first service of the subscription was activated
- Total
Value string - Subscribed service total value
- booking
Opty StringNumber - Booking Opportunity Number of Subscribed Service
- commitment
Services List<GetSubscriptions Subscription Subscribed Service Commitment Service> - List of Commitment services of a line
- csi String
- Subscribed service CSI number
- data
Center StringRegion - Subscribed service data center region
- funded
Allocation StringValue - Funded Allocation line value example: 12000.00
- id String
- SPM internal Subscribed Service ID
- is
Intent BooleanTo Pay - Subscribed service intent to pay flag
- net
Unit StringPrice - Subscribed service net unit price
- operation
Type String - Subscribed service operation type
- order
Number String - Sales Order Number associated to the subscribed service
- partner
Transaction StringType - This field contains the name of the partner to which the subscription belongs - depending on which the invoicing may differ
- pricing
Model String - Subscribed service pricing model
- products
List<Get
Subscriptions Subscription Subscribed Service Product> - Product description
- program
Type String - Subscribed service program type
- promo
Type String - Subscribed service promotion type
- quantity String
- Subscribed service quantity
- status String
- Subscribed service status
- term
Value String - Term value in Months
- term
Value StringUom - Term value UOM
- time
End String - Represents the date when the last service of the subscription ends
- time
Start String - Represents the date when the first service of the subscription was activated
- total
Value String - Subscribed service total value
- booking
Opty stringNumber - Booking Opportunity Number of Subscribed Service
- commitment
Services GetSubscriptions Subscription Subscribed Service Commitment Service[] - List of Commitment services of a line
- csi string
- Subscribed service CSI number
- data
Center stringRegion - Subscribed service data center region
- funded
Allocation stringValue - Funded Allocation line value example: 12000.00
- id string
- SPM internal Subscribed Service ID
- is
Intent booleanTo Pay - Subscribed service intent to pay flag
- net
Unit stringPrice - Subscribed service net unit price
- operation
Type string - Subscribed service operation type
- order
Number string - Sales Order Number associated to the subscribed service
- partner
Transaction stringType - This field contains the name of the partner to which the subscription belongs - depending on which the invoicing may differ
- pricing
Model string - Subscribed service pricing model
- products
Get
Subscriptions Subscription Subscribed Service Product[] - Product description
- program
Type string - Subscribed service program type
- promo
Type string - Subscribed service promotion type
- quantity string
- Subscribed service quantity
- status string
- Subscribed service status
- term
Value string - Term value in Months
- term
Value stringUom - Term value UOM
- time
End string - Represents the date when the last service of the subscription ends
- time
Start string - Represents the date when the first service of the subscription was activated
- total
Value string - Subscribed service total value
- booking_
opty_ strnumber - Booking Opportunity Number of Subscribed Service
- commitment_
services Sequence[osubsubscription.Get Subscriptions Subscription Subscribed Service Commitment Service] - List of Commitment services of a line
- csi str
- Subscribed service CSI number
- data_
center_ strregion - Subscribed service data center region
- funded_
allocation_ strvalue - Funded Allocation line value example: 12000.00
- id str
- SPM internal Subscribed Service ID
- is_
intent_ boolto_ pay - Subscribed service intent to pay flag
- net_
unit_ strprice - Subscribed service net unit price
- operation_
type str - Subscribed service operation type
- order_
number str - Sales Order Number associated to the subscribed service
- partner_
transaction_ strtype - This field contains the name of the partner to which the subscription belongs - depending on which the invoicing may differ
- pricing_
model str - Subscribed service pricing model
- products
Sequence[osubsubscription.
Get Subscriptions Subscription Subscribed Service Product] - Product description
- program_
type str - Subscribed service program type
- promo_
type str - Subscribed service promotion type
- quantity str
- Subscribed service quantity
- status str
- Subscribed service status
- term_
value str - Term value in Months
- term_
value_ struom - Term value UOM
- time_
end str - Represents the date when the last service of the subscription ends
- time_
start str - Represents the date when the first service of the subscription was activated
- total_
value str - Subscribed service total value
- booking
Opty StringNumber - Booking Opportunity Number of Subscribed Service
- commitment
Services List<Property Map> - List of Commitment services of a line
- csi String
- Subscribed service CSI number
- data
Center StringRegion - Subscribed service data center region
- funded
Allocation StringValue - Funded Allocation line value example: 12000.00
- id String
- SPM internal Subscribed Service ID
- is
Intent BooleanTo Pay - Subscribed service intent to pay flag
- net
Unit StringPrice - Subscribed service net unit price
- operation
Type String - Subscribed service operation type
- order
Number String - Sales Order Number associated to the subscribed service
- partner
Transaction StringType - This field contains the name of the partner to which the subscription belongs - depending on which the invoicing may differ
- pricing
Model String - Subscribed service pricing model
- products List<Property Map>
- Product description
- program
Type String - Subscribed service program type
- promo
Type String - Subscribed service promotion type
- quantity String
- Subscribed service quantity
- status String
- Subscribed service status
- term
Value String - Term value in Months
- term
Value StringUom - Term value UOM
- time
End String - Represents the date when the last service of the subscription ends
- time
Start String - Represents the date when the first service of the subscription was activated
- total
Value String - Subscribed service total value
GetSubscriptionsSubscriptionSubscribedServiceCommitmentService
- Available
Amount string - Commitment available amount
- Funded
Allocation stringValue - Funded Allocation line value example: 12000.00
- Line
Net stringAmount - Commitment line net amount
- Quantity string
- Subscribed service quantity
- Time
End string - Represents the date when the last service of the subscription ends
- Time
Start string - Represents the date when the first service of the subscription was activated
- Available
Amount string - Commitment available amount
- Funded
Allocation stringValue - Funded Allocation line value example: 12000.00
- Line
Net stringAmount - Commitment line net amount
- Quantity string
- Subscribed service quantity
- Time
End string - Represents the date when the last service of the subscription ends
- Time
Start string - Represents the date when the first service of the subscription was activated
- available
Amount String - Commitment available amount
- funded
Allocation StringValue - Funded Allocation line value example: 12000.00
- line
Net StringAmount - Commitment line net amount
- quantity String
- Subscribed service quantity
- time
End String - Represents the date when the last service of the subscription ends
- time
Start String - Represents the date when the first service of the subscription was activated
- available
Amount string - Commitment available amount
- funded
Allocation stringValue - Funded Allocation line value example: 12000.00
- line
Net stringAmount - Commitment line net amount
- quantity string
- Subscribed service quantity
- time
End string - Represents the date when the last service of the subscription ends
- time
Start string - Represents the date when the first service of the subscription was activated
- available_
amount str - Commitment available amount
- funded_
allocation_ strvalue - Funded Allocation line value example: 12000.00
- line_
net_ stramount - Commitment line net amount
- quantity str
- Subscribed service quantity
- time_
end str - Represents the date when the last service of the subscription ends
- time_
start str - Represents the date when the first service of the subscription was activated
- available
Amount String - Commitment available amount
- funded
Allocation StringValue - Funded Allocation line value example: 12000.00
- line
Net StringAmount - Commitment line net amount
- quantity String
- Subscribed service quantity
- time
End String - Represents the date when the last service of the subscription ends
- time
Start String - Represents the date when the first service of the subscription was activated
GetSubscriptionsSubscriptionSubscribedServiceProduct
- Name string
- Product name
- Part
Number string - Product part numner
- Provisioning
Group string - Product provisioning group
- Unit
Of stringMeasure - Unit of measure
- Name string
- Product name
- Part
Number string - Product part numner
- Provisioning
Group string - Product provisioning group
- Unit
Of stringMeasure - Unit of measure
- name String
- Product name
- part
Number String - Product part numner
- provisioning
Group String - Product provisioning group
- unit
Of StringMeasure - Unit of measure
- name string
- Product name
- part
Number string - Product part numner
- provisioning
Group string - Product provisioning group
- unit
Of stringMeasure - Unit of measure
- name str
- Product name
- part_
number str - Product part numner
- provisioning_
group str - Product provisioning group
- unit_
of_ strmeasure - Unit of measure
- name String
- Product name
- part
Number String - Product part numner
- provisioning
Group String - Product provisioning group
- unit
Of StringMeasure - Unit of measure
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.