oci logo
Oracle Cloud Infrastructure v0.20.0, May 31 23

oci.OneSubsription.getSubscribedService

Explore with Pulumi AI

This data source provides details about a specific Subscribed Service resource in Oracle Cloud Infrastructure Onesubscription service.

This API returns the subscribed service details corresponding to the id provided

Example Usage

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testSubscribedService = Oci.OneSubsription.GetSubscribedService.Invoke(new()
    {
        SubscribedServiceId = oci_onesubscription_subscribed_service.Test_subscribed_service.Id,
        Fields = @var.Subscribed_service_fields,
    });

});
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/go/oci/OneSubsription"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := OneSubsription.GetSubscribedService(ctx, &onesubsription.GetSubscribedServiceArgs{
			SubscribedServiceId: oci_onesubscription_subscribed_service.Test_subscribed_service.Id,
			Fields:              _var.Subscribed_service_fields,
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.OneSubsription.OneSubsriptionFunctions;
import com.pulumi.oci.OneSubsription.inputs.GetSubscribedServiceArgs;
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 testSubscribedService = OneSubsriptionFunctions.getSubscribedService(GetSubscribedServiceArgs.builder()
            .subscribedServiceId(oci_onesubscription_subscribed_service.test_subscribed_service().id())
            .fields(var_.subscribed_service_fields())
            .build());

    }
}
import pulumi
import pulumi_oci as oci

test_subscribed_service = oci.OneSubsription.get_subscribed_service(subscribed_service_id=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
    fields=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testSubscribedService = oci.OneSubsription.getSubscribedService({
    subscribedServiceId: oci_onesubscription_subscribed_service.test_subscribed_service.id,
    fields: _var.subscribed_service_fields,
});
variables:
  testSubscribedService:
    fn::invoke:
      Function: oci:OneSubsription:getSubscribedService
      Arguments:
        subscribedServiceId: ${oci_onesubscription_subscribed_service.test_subscribed_service.id}
        fields: ${var.subscribed_service_fields}

Using getSubscribedService

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 getSubscribedService(args: GetSubscribedServiceArgs, opts?: InvokeOptions): Promise<GetSubscribedServiceResult>
function getSubscribedServiceOutput(args: GetSubscribedServiceOutputArgs, opts?: InvokeOptions): Output<GetSubscribedServiceResult>
def get_subscribed_service(fields: Optional[Sequence[str]] = None,
                           subscribed_service_id: Optional[str] = None,
                           opts: Optional[InvokeOptions] = None) -> GetSubscribedServiceResult
def get_subscribed_service_output(fields: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                           subscribed_service_id: Optional[pulumi.Input[str]] = None,
                           opts: Optional[InvokeOptions] = None) -> Output[GetSubscribedServiceResult]
func GetSubscribedService(ctx *Context, args *GetSubscribedServiceArgs, opts ...InvokeOption) (*GetSubscribedServiceResult, error)
func GetSubscribedServiceOutput(ctx *Context, args *GetSubscribedServiceOutputArgs, opts ...InvokeOption) GetSubscribedServiceResultOutput

> Note: This function is named GetSubscribedService in the Go SDK.

public static class GetSubscribedService 
{
    public static Task<GetSubscribedServiceResult> InvokeAsync(GetSubscribedServiceArgs args, InvokeOptions? opts = null)
    public static Output<GetSubscribedServiceResult> Invoke(GetSubscribedServiceInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetSubscribedServiceResult> getSubscribedService(GetSubscribedServiceArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
  function: oci:OneSubsription/getSubscribedService:getSubscribedService
  arguments:
    # arguments dictionary

The following arguments are supported:

SubscribedServiceId string

The Subscribed Service Id

Fields List<string>

Partial response refers to an optimization technique offered by the RESTful web APIs to return only the information (fields) required by the client. In this mechanism, the client sends the required field names as the query parameters for an API to the server, and the server trims down the default response content by removing the fields that are not required by the client. The parameter used to control what fields to return should be a query string parameter called "fields" of type array, and usecollectionFormat

SubscribedServiceId string

The Subscribed Service Id

Fields []string

Partial response refers to an optimization technique offered by the RESTful web APIs to return only the information (fields) required by the client. In this mechanism, the client sends the required field names as the query parameters for an API to the server, and the server trims down the default response content by removing the fields that are not required by the client. The parameter used to control what fields to return should be a query string parameter called "fields" of type array, and usecollectionFormat

subscribedServiceId String

The Subscribed Service Id

fields List<String>

Partial response refers to an optimization technique offered by the RESTful web APIs to return only the information (fields) required by the client. In this mechanism, the client sends the required field names as the query parameters for an API to the server, and the server trims down the default response content by removing the fields that are not required by the client. The parameter used to control what fields to return should be a query string parameter called "fields" of type array, and usecollectionFormat

subscribedServiceId string

The Subscribed Service Id

fields string[]

Partial response refers to an optimization technique offered by the RESTful web APIs to return only the information (fields) required by the client. In this mechanism, the client sends the required field names as the query parameters for an API to the server, and the server trims down the default response content by removing the fields that are not required by the client. The parameter used to control what fields to return should be a query string parameter called "fields" of type array, and usecollectionFormat

subscribed_service_id str

The Subscribed Service Id

fields Sequence[str]

Partial response refers to an optimization technique offered by the RESTful web APIs to return only the information (fields) required by the client. In this mechanism, the client sends the required field names as the query parameters for an API to the server, and the server trims down the default response content by removing the fields that are not required by the client. The parameter used to control what fields to return should be a query string parameter called "fields" of type array, and usecollectionFormat

subscribedServiceId String

The Subscribed Service Id

fields List<String>

Partial response refers to an optimization technique offered by the RESTful web APIs to return only the information (fields) required by the client. In this mechanism, the client sends the required field names as the query parameters for an API to the server, and the server trims down the default response content by removing the fields that are not required by the client. The parameter used to control what fields to return should be a query string parameter called "fields" of type array, and usecollectionFormat

getSubscribedService Result

The following output properties are available:

AdminEmail string

Subscribed service admin email id

AgreementId string

Subscribed service agreement ID

AgreementName string

Subscribed service agrrement name

AgreementType string

Subscribed service agrrement type

AvailableAmount string

Commitment available amount

BillToAddresses List<GetSubscribedServiceBillToAddress>

Address.

BillToContacts List<GetSubscribedServiceBillToContact>

User.

BillToCustomers List<GetSubscribedServiceBillToCustomer>

Business partner.

BillingFrequency string

Subscribed service invoice frequency

BookingOptyNumber string

Booking Opportunity Number of Subscribed Service

BuyerEmail string

Subscribed service buyer email id

CommitmentScheduleId string

Subscribed service commitment schedule Id

CommitmentServices List<GetSubscribedServiceCommitmentService>

List of Commitment services of a line

CreatedBy string

User that created the Payment term

CreditPercentage string

Subscribed service credit percentage

Csi string

Subscribed service CSI number

CustomerTransactionReference string

Identifier for a customer's transactions for purchase of ay oracle services

DataCenter string

Subscribed service data center

DataCenterRegion string

Subscribed service data center region

EligibleToRenew string

Subscribed service eligible to renew field

EndUserAddresses List<GetSubscribedServiceEndUserAddress>

Address.

EndUserContacts List<GetSubscribedServiceEndUserContact>

User.

EndUserCustomers List<GetSubscribedServiceEndUserCustomer>

Business partner.

FulfillmentSet string

Subscribed service fulfillment set

FundedAllocationValue string

Funded Allocation line value example: 12000.00

Id string

The provider-assigned unique ID for this managed resource.

IsAllowance bool

Indicates if a service can recieve usages and consequently have available amounts computed

IsCapToPriceList bool

If true compares rate between ratecard and the active pricelist and minimum rate would be fetched

IsCreditEnabled bool

Used in context of service credit lines

IsHavingUsage bool

Indicator on whether or not there has been usage for the subscribed service

IsIntentToPay bool

Subscribed service intent to pay flag

IsPayg bool

Subscribed service payg flag

IsSingleRateCard bool

Indicates if the Subscribed service has a single ratecard

IsVariableCommitment bool

Indicates if the commitment lines can have different quantities

LineNetAmount string

Subscribed service line net amount

MajorSet string

Subscribed service Major Set

NetUnitPrice string

Rate card tier net unit price

OperationType string

Subscribed service operation type

OrderHeaderId string

Sales Order Header associated to the subscribed service

OrderLineId string

Sales Order Line Id associated to the subscribed service

OrderLineNumber int

Sales Order Line Number associated to the subscribed service

OrderNumber string

Sales Order Number associated to the subscribed service

OrderType string

Order Type of Subscribed Service

OriginalPromoAmount string

Subscribed service Promotion Amount

OverageBillTo string

Overage Bill To of Subscribed Service

OverageDiscountPercentage string

Subscribed service Overage Discount Percentage

OveragePolicy string

Overage Policy of Subscribed Service

PartnerCreditAmount string

Subscribed service partner credit amount

PartnerTransactionType string

This field contains the name of the partner to which the subscription belongs - depending on which the invoicing may differ

PaygPolicy string

Pay As You Go policy of Subscribed Service (Can be null - indicating no payg policy)

PaymentMethod string

Payment Method of Subscribed Service

PaymentNumber string

Payment Number of Subscribed Service

PaymentTerms List<GetSubscribedServicePaymentTerm>

Payment Term details

PricePeriod string

Indicates the period for which the commitment amount can be utilised exceeding which the amount lapses. Also used in calculation of total contract line value

PricingModel string

Subscribed service pricing model

Products List<GetSubscribedServiceProduct>

Product description

ProgramType string

Subscribed service program type

PromoOrderLineId string

Not null if this service has an associated promotion line in SPM. Contains the line identifier from Order Management of the associated promo line.

PromoType string

Subscribed service promotion type

PromotionPricingType string

Promotion Pricing Type of Subscribed Service (Can be null - indicating no promotion pricing)

ProvisioningSource string

Subscribed service provisioning source

Quantity string

Subscribed service quantity

RateCardDiscountPercentage string

Subscribed service Rate Card Discount Percentage

RateCards List<GetSubscribedServiceRateCard>

List of Rate Cards of a Subscribed Service

RatecardType string

SPM Ratecard Type

RenewalOptyId string

Subscribed service Opportunity Id

RenewalOptyNumber string

Renewal Opportunity Number of Subscribed Service

RenewalOptyType string

Renewal Opportunity Type of Subscribed Service

RenewedSubscribedServiceId string

SPM renewed Subscription ID

ResellerAddresses List<GetSubscribedServiceResellerAddress>

Address.

ResellerContacts List<GetSubscribedServiceResellerContact>

User.

ResellerCustomers List<GetSubscribedServiceResellerCustomer>

Business partner.

RevenueLineId string

Subscribed service Revenue Line Id

RevenueLineNumber string

Revenue Line NUmber of Subscribed Service

RevisedArrInLc string

Subscribed service Revised ARR

RevisedArrInSc string

Subscribed service Revised ARR in Standard Currency

SalesAccountPartyId string

Subscribed service sales account party id

SalesChannel string

Sales Channel of Subscribed Service

SerialNumber string

Subscribed service line number

ServiceToAddresses List<GetSubscribedServiceServiceToAddress>

Address.

ServiceToContacts List<GetSubscribedServiceServiceToContact>

User.

ServiceToCustomers List<GetSubscribedServiceServiceToCustomer>

Business partner.

SoldToContacts List<GetSubscribedServiceSoldToContact>

User.

SoldToCustomers List<GetSubscribedServiceSoldToCustomer>

Business partner.

StartDateType string

Subscribed service start date type

Status string

Subscribed service status

SubscribedServiceId string

SPM internal Subscribed Service ID

SubscriptionId string

Subscription ID associated to the subscribed service

SubscriptionSource string

Subscribed service source

SystemArrInLc string

Subscribed service System ARR

SystemArrInSc string

Subscribed service System ARR in Standard Currency

SystemAtrArrInLc string

Subscribed service System ATR-ARR

SystemAtrArrInSc string

Subscribed service System ATR-ARR in Standard Currency

TermValue string

Term value in Months

TermValueUom string

Term value UOM

TimeAgreementEnd string

Subscribed service agrrement end date

TimeCreated string

Subscribed service creation date

TimeCustomerConfig string

Subscribed service customer config date

TimeEnd string

Subscribed service end date

TimeMajorsetEnd string

Subscribed service Major Set End date

TimeMajorsetStart string

Subscribed service Major Set Start date

TimePaymentExpiry string

Subscribed service payment expiry date

TimeProvisioned string

Subscribed service provisioning date

TimeServiceConfigurationEmailSent string

Subscribed service service configuration email sent date

TimeStart string

Subscribed service start date

TimeUpdated string

Subscribed service last update date

TimeWelcomeEmailSent string

Subscribed service welcome email sent date

TotalValue string

Subscribed service total value

TransactionExtensionId string

Subscribed service Transaction Extension Id

Type string

Subscribed Service line type

UpdatedBy string

User that updated the subscribed service

UsedAmount string

Subscribed service used amount

Fields List<string>
AdminEmail string

Subscribed service admin email id

AgreementId string

Subscribed service agreement ID

AgreementName string

Subscribed service agrrement name

AgreementType string

Subscribed service agrrement type

AvailableAmount string

Commitment available amount

BillToAddresses []GetSubscribedServiceBillToAddress

Address.

BillToContacts []GetSubscribedServiceBillToContact

User.

BillToCustomers []GetSubscribedServiceBillToCustomer

Business partner.

BillingFrequency string

Subscribed service invoice frequency

BookingOptyNumber string

Booking Opportunity Number of Subscribed Service

BuyerEmail string

Subscribed service buyer email id

CommitmentScheduleId string

Subscribed service commitment schedule Id

CommitmentServices []GetSubscribedServiceCommitmentService

List of Commitment services of a line

CreatedBy string

User that created the Payment term

CreditPercentage string

Subscribed service credit percentage

Csi string

Subscribed service CSI number

CustomerTransactionReference string

Identifier for a customer's transactions for purchase of ay oracle services

DataCenter string

Subscribed service data center

DataCenterRegion string

Subscribed service data center region

EligibleToRenew string

Subscribed service eligible to renew field

EndUserAddresses []GetSubscribedServiceEndUserAddress

Address.

EndUserContacts []GetSubscribedServiceEndUserContact

User.

EndUserCustomers []GetSubscribedServiceEndUserCustomer

Business partner.

FulfillmentSet string

Subscribed service fulfillment set

FundedAllocationValue string

Funded Allocation line value example: 12000.00

Id string

The provider-assigned unique ID for this managed resource.

IsAllowance bool

Indicates if a service can recieve usages and consequently have available amounts computed

IsCapToPriceList bool

If true compares rate between ratecard and the active pricelist and minimum rate would be fetched

IsCreditEnabled bool

Used in context of service credit lines

IsHavingUsage bool

Indicator on whether or not there has been usage for the subscribed service

IsIntentToPay bool

Subscribed service intent to pay flag

IsPayg bool

Subscribed service payg flag

IsSingleRateCard bool

Indicates if the Subscribed service has a single ratecard

IsVariableCommitment bool

Indicates if the commitment lines can have different quantities

LineNetAmount string

Subscribed service line net amount

MajorSet string

Subscribed service Major Set

NetUnitPrice string

Rate card tier net unit price

OperationType string

Subscribed service operation type

OrderHeaderId string

Sales Order Header associated to the subscribed service

OrderLineId string

Sales Order Line Id associated to the subscribed service

OrderLineNumber int

Sales Order Line Number associated to the subscribed service

OrderNumber string

Sales Order Number associated to the subscribed service

OrderType string

Order Type of Subscribed Service

OriginalPromoAmount string

Subscribed service Promotion Amount

OverageBillTo string

Overage Bill To of Subscribed Service

OverageDiscountPercentage string

Subscribed service Overage Discount Percentage

OveragePolicy string

Overage Policy of Subscribed Service

PartnerCreditAmount string

Subscribed service partner credit amount

PartnerTransactionType string

This field contains the name of the partner to which the subscription belongs - depending on which the invoicing may differ

PaygPolicy string

Pay As You Go policy of Subscribed Service (Can be null - indicating no payg policy)

PaymentMethod string

Payment Method of Subscribed Service

PaymentNumber string

Payment Number of Subscribed Service

PaymentTerms []GetSubscribedServicePaymentTerm

Payment Term details

PricePeriod string

Indicates the period for which the commitment amount can be utilised exceeding which the amount lapses. Also used in calculation of total contract line value

PricingModel string

Subscribed service pricing model

Products []GetSubscribedServiceProduct

Product description

ProgramType string

Subscribed service program type

PromoOrderLineId string

Not null if this service has an associated promotion line in SPM. Contains the line identifier from Order Management of the associated promo line.

PromoType string

Subscribed service promotion type

PromotionPricingType string

Promotion Pricing Type of Subscribed Service (Can be null - indicating no promotion pricing)

ProvisioningSource string

Subscribed service provisioning source

Quantity string

Subscribed service quantity

RateCardDiscountPercentage string

Subscribed service Rate Card Discount Percentage

RateCards []GetSubscribedServiceRateCard

List of Rate Cards of a Subscribed Service

RatecardType string

SPM Ratecard Type

RenewalOptyId string

Subscribed service Opportunity Id

RenewalOptyNumber string

Renewal Opportunity Number of Subscribed Service

RenewalOptyType string

Renewal Opportunity Type of Subscribed Service

RenewedSubscribedServiceId string

SPM renewed Subscription ID

ResellerAddresses []GetSubscribedServiceResellerAddress

Address.

ResellerContacts []GetSubscribedServiceResellerContact

User.

ResellerCustomers []GetSubscribedServiceResellerCustomer

Business partner.

RevenueLineId string

Subscribed service Revenue Line Id

RevenueLineNumber string

Revenue Line NUmber of Subscribed Service

RevisedArrInLc string

Subscribed service Revised ARR

RevisedArrInSc string

Subscribed service Revised ARR in Standard Currency

SalesAccountPartyId string

Subscribed service sales account party id

SalesChannel string

Sales Channel of Subscribed Service

SerialNumber string

Subscribed service line number

ServiceToAddresses []GetSubscribedServiceServiceToAddress

Address.

ServiceToContacts []GetSubscribedServiceServiceToContact

User.

ServiceToCustomers []GetSubscribedServiceServiceToCustomer

Business partner.

SoldToContacts []GetSubscribedServiceSoldToContact

User.

SoldToCustomers []GetSubscribedServiceSoldToCustomer

Business partner.

StartDateType string

Subscribed service start date type

Status string

Subscribed service status

SubscribedServiceId string

SPM internal Subscribed Service ID

SubscriptionId string

Subscription ID associated to the subscribed service

SubscriptionSource string

Subscribed service source

SystemArrInLc string

Subscribed service System ARR

SystemArrInSc string

Subscribed service System ARR in Standard Currency

SystemAtrArrInLc string

Subscribed service System ATR-ARR

SystemAtrArrInSc string

Subscribed service System ATR-ARR in Standard Currency

TermValue string

Term value in Months

TermValueUom string

Term value UOM

TimeAgreementEnd string

Subscribed service agrrement end date

TimeCreated string

Subscribed service creation date

TimeCustomerConfig string

Subscribed service customer config date

TimeEnd string

Subscribed service end date

TimeMajorsetEnd string

Subscribed service Major Set End date

TimeMajorsetStart string

Subscribed service Major Set Start date

TimePaymentExpiry string

Subscribed service payment expiry date

TimeProvisioned string

Subscribed service provisioning date

TimeServiceConfigurationEmailSent string

Subscribed service service configuration email sent date

TimeStart string

Subscribed service start date

TimeUpdated string

Subscribed service last update date

TimeWelcomeEmailSent string

Subscribed service welcome email sent date

TotalValue string

Subscribed service total value

TransactionExtensionId string

Subscribed service Transaction Extension Id

Type string

Subscribed Service line type

UpdatedBy string

User that updated the subscribed service

UsedAmount string

Subscribed service used amount

Fields []string
adminEmail String

Subscribed service admin email id

agreementId String

Subscribed service agreement ID

agreementName String

Subscribed service agrrement name

agreementType String

Subscribed service agrrement type

availableAmount String

Commitment available amount

billToAddresses List<GetSubscribedServiceBillToAddress>

Address.

billToContacts List<GetSubscribedServiceBillToContact>

User.

billToCustomers List<GetSubscribedServiceBillToCustomer>

Business partner.

billingFrequency String

Subscribed service invoice frequency

bookingOptyNumber String

Booking Opportunity Number of Subscribed Service

buyerEmail String

Subscribed service buyer email id

commitmentScheduleId String

Subscribed service commitment schedule Id

commitmentServices List<GetSubscribedServiceCommitmentService>

List of Commitment services of a line

createdBy String

User that created the Payment term

creditPercentage String

Subscribed service credit percentage

csi String

Subscribed service CSI number

customerTransactionReference String

Identifier for a customer's transactions for purchase of ay oracle services

dataCenter String

Subscribed service data center

dataCenterRegion String

Subscribed service data center region

eligibleToRenew String

Subscribed service eligible to renew field

endUserAddresses List<GetSubscribedServiceEndUserAddress>

Address.

endUserContacts List<GetSubscribedServiceEndUserContact>

User.

endUserCustomers List<GetSubscribedServiceEndUserCustomer>

Business partner.

fulfillmentSet String

Subscribed service fulfillment set

fundedAllocationValue String

Funded Allocation line value example: 12000.00

id String

The provider-assigned unique ID for this managed resource.

isAllowance Boolean

Indicates if a service can recieve usages and consequently have available amounts computed

isCapToPriceList Boolean

If true compares rate between ratecard and the active pricelist and minimum rate would be fetched

isCreditEnabled Boolean

Used in context of service credit lines

isHavingUsage Boolean

Indicator on whether or not there has been usage for the subscribed service

isIntentToPay Boolean

Subscribed service intent to pay flag

isPayg Boolean

Subscribed service payg flag

isSingleRateCard Boolean

Indicates if the Subscribed service has a single ratecard

isVariableCommitment Boolean

Indicates if the commitment lines can have different quantities

lineNetAmount String

Subscribed service line net amount

majorSet String

Subscribed service Major Set

netUnitPrice String

Rate card tier net unit price

operationType String

Subscribed service operation type

orderHeaderId String

Sales Order Header associated to the subscribed service

orderLineId String

Sales Order Line Id associated to the subscribed service

orderLineNumber Integer

Sales Order Line Number associated to the subscribed service

orderNumber String

Sales Order Number associated to the subscribed service

orderType String

Order Type of Subscribed Service

originalPromoAmount String

Subscribed service Promotion Amount

overageBillTo String

Overage Bill To of Subscribed Service

overageDiscountPercentage String

Subscribed service Overage Discount Percentage

overagePolicy String

Overage Policy of Subscribed Service

partnerCreditAmount String

Subscribed service partner credit amount

partnerTransactionType String

This field contains the name of the partner to which the subscription belongs - depending on which the invoicing may differ

paygPolicy String

Pay As You Go policy of Subscribed Service (Can be null - indicating no payg policy)

paymentMethod String

Payment Method of Subscribed Service

paymentNumber String

Payment Number of Subscribed Service

paymentTerms List<GetSubscribedServicePaymentTerm>

Payment Term details

pricePeriod String

Indicates the period for which the commitment amount can be utilised exceeding which the amount lapses. Also used in calculation of total contract line value

pricingModel String

Subscribed service pricing model

products List<GetSubscribedServiceProduct>

Product description

programType String

Subscribed service program type

promoOrderLineId String

Not null if this service has an associated promotion line in SPM. Contains the line identifier from Order Management of the associated promo line.

promoType String

Subscribed service promotion type

promotionPricingType String

Promotion Pricing Type of Subscribed Service (Can be null - indicating no promotion pricing)

provisioningSource String

Subscribed service provisioning source

quantity String

Subscribed service quantity

rateCardDiscountPercentage String

Subscribed service Rate Card Discount Percentage

rateCards List<GetSubscribedServiceRateCard>

List of Rate Cards of a Subscribed Service

ratecardType String

SPM Ratecard Type

renewalOptyId String

Subscribed service Opportunity Id

renewalOptyNumber String

Renewal Opportunity Number of Subscribed Service

renewalOptyType String

Renewal Opportunity Type of Subscribed Service

renewedSubscribedServiceId String

SPM renewed Subscription ID

resellerAddresses List<GetSubscribedServiceResellerAddress>

Address.

resellerContacts List<GetSubscribedServiceResellerContact>

User.

resellerCustomers List<GetSubscribedServiceResellerCustomer>

Business partner.

revenueLineId String

Subscribed service Revenue Line Id

revenueLineNumber String

Revenue Line NUmber of Subscribed Service

revisedArrInLc String

Subscribed service Revised ARR

revisedArrInSc String

Subscribed service Revised ARR in Standard Currency

salesAccountPartyId String

Subscribed service sales account party id

salesChannel String

Sales Channel of Subscribed Service

serialNumber String

Subscribed service line number

serviceToAddresses List<GetSubscribedServiceServiceToAddress>

Address.

serviceToContacts List<GetSubscribedServiceServiceToContact>

User.

serviceToCustomers List<GetSubscribedServiceServiceToCustomer>

Business partner.

soldToContacts List<GetSubscribedServiceSoldToContact>

User.

soldToCustomers List<GetSubscribedServiceSoldToCustomer>

Business partner.

startDateType String

Subscribed service start date type

status String

Subscribed service status

subscribedServiceId String

SPM internal Subscribed Service ID

subscriptionId String

Subscription ID associated to the subscribed service

subscriptionSource String

Subscribed service source

systemArrInLc String

Subscribed service System ARR

systemArrInSc String

Subscribed service System ARR in Standard Currency

systemAtrArrInLc String

Subscribed service System ATR-ARR

systemAtrArrInSc String

Subscribed service System ATR-ARR in Standard Currency

termValue String

Term value in Months

termValueUom String

Term value UOM

timeAgreementEnd String

Subscribed service agrrement end date

timeCreated String

Subscribed service creation date

timeCustomerConfig String

Subscribed service customer config date

timeEnd String

Subscribed service end date

timeMajorsetEnd String

Subscribed service Major Set End date

timeMajorsetStart String

Subscribed service Major Set Start date

timePaymentExpiry String

Subscribed service payment expiry date

timeProvisioned String

Subscribed service provisioning date

timeServiceConfigurationEmailSent String

Subscribed service service configuration email sent date

timeStart String

Subscribed service start date

timeUpdated String

Subscribed service last update date

timeWelcomeEmailSent String

Subscribed service welcome email sent date

totalValue String

Subscribed service total value

transactionExtensionId String

Subscribed service Transaction Extension Id

type String

Subscribed Service line type

updatedBy String

User that updated the subscribed service

usedAmount String

Subscribed service used amount

fields List<String>
adminEmail string

Subscribed service admin email id

agreementId string

Subscribed service agreement ID

agreementName string

Subscribed service agrrement name

agreementType string

Subscribed service agrrement type

availableAmount string

Commitment available amount

billToAddresses GetSubscribedServiceBillToAddress[]

Address.

billToContacts GetSubscribedServiceBillToContact[]

User.

billToCustomers GetSubscribedServiceBillToCustomer[]

Business partner.

billingFrequency string

Subscribed service invoice frequency

bookingOptyNumber string

Booking Opportunity Number of Subscribed Service

buyerEmail string

Subscribed service buyer email id

commitmentScheduleId string

Subscribed service commitment schedule Id

commitmentServices GetSubscribedServiceCommitmentService[]

List of Commitment services of a line

createdBy string

User that created the Payment term

creditPercentage string

Subscribed service credit percentage

csi string

Subscribed service CSI number

customerTransactionReference string

Identifier for a customer's transactions for purchase of ay oracle services

dataCenter string

Subscribed service data center

dataCenterRegion string

Subscribed service data center region

eligibleToRenew string

Subscribed service eligible to renew field

endUserAddresses GetSubscribedServiceEndUserAddress[]

Address.

endUserContacts GetSubscribedServiceEndUserContact[]

User.

endUserCustomers GetSubscribedServiceEndUserCustomer[]

Business partner.

fulfillmentSet string

Subscribed service fulfillment set

fundedAllocationValue string

Funded Allocation line value example: 12000.00

id string

The provider-assigned unique ID for this managed resource.

isAllowance boolean

Indicates if a service can recieve usages and consequently have available amounts computed

isCapToPriceList boolean

If true compares rate between ratecard and the active pricelist and minimum rate would be fetched

isCreditEnabled boolean

Used in context of service credit lines

isHavingUsage boolean

Indicator on whether or not there has been usage for the subscribed service

isIntentToPay boolean

Subscribed service intent to pay flag

isPayg boolean

Subscribed service payg flag

isSingleRateCard boolean

Indicates if the Subscribed service has a single ratecard

isVariableCommitment boolean

Indicates if the commitment lines can have different quantities

lineNetAmount string

Subscribed service line net amount

majorSet string

Subscribed service Major Set

netUnitPrice string

Rate card tier net unit price

operationType string

Subscribed service operation type

orderHeaderId string

Sales Order Header associated to the subscribed service

orderLineId string

Sales Order Line Id associated to the subscribed service

orderLineNumber number

Sales Order Line Number associated to the subscribed service

orderNumber string

Sales Order Number associated to the subscribed service

orderType string

Order Type of Subscribed Service

originalPromoAmount string

Subscribed service Promotion Amount

overageBillTo string

Overage Bill To of Subscribed Service

overageDiscountPercentage string

Subscribed service Overage Discount Percentage

overagePolicy string

Overage Policy of Subscribed Service

partnerCreditAmount string

Subscribed service partner credit amount

partnerTransactionType string

This field contains the name of the partner to which the subscription belongs - depending on which the invoicing may differ

paygPolicy string

Pay As You Go policy of Subscribed Service (Can be null - indicating no payg policy)

paymentMethod string

Payment Method of Subscribed Service

paymentNumber string

Payment Number of Subscribed Service

paymentTerms GetSubscribedServicePaymentTerm[]

Payment Term details

pricePeriod string

Indicates the period for which the commitment amount can be utilised exceeding which the amount lapses. Also used in calculation of total contract line value

pricingModel string

Subscribed service pricing model

products GetSubscribedServiceProduct[]

Product description

programType string

Subscribed service program type

promoOrderLineId string

Not null if this service has an associated promotion line in SPM. Contains the line identifier from Order Management of the associated promo line.

promoType string

Subscribed service promotion type

promotionPricingType string

Promotion Pricing Type of Subscribed Service (Can be null - indicating no promotion pricing)

provisioningSource string

Subscribed service provisioning source

quantity string

Subscribed service quantity

rateCardDiscountPercentage string

Subscribed service Rate Card Discount Percentage

rateCards GetSubscribedServiceRateCard[]

List of Rate Cards of a Subscribed Service

ratecardType string

SPM Ratecard Type

renewalOptyId string

Subscribed service Opportunity Id

renewalOptyNumber string

Renewal Opportunity Number of Subscribed Service

renewalOptyType string

Renewal Opportunity Type of Subscribed Service

renewedSubscribedServiceId string

SPM renewed Subscription ID

resellerAddresses GetSubscribedServiceResellerAddress[]

Address.

resellerContacts GetSubscribedServiceResellerContact[]

User.

resellerCustomers GetSubscribedServiceResellerCustomer[]

Business partner.

revenueLineId string

Subscribed service Revenue Line Id

revenueLineNumber string

Revenue Line NUmber of Subscribed Service

revisedArrInLc string

Subscribed service Revised ARR

revisedArrInSc string

Subscribed service Revised ARR in Standard Currency

salesAccountPartyId string

Subscribed service sales account party id

salesChannel string

Sales Channel of Subscribed Service

serialNumber string

Subscribed service line number

serviceToAddresses GetSubscribedServiceServiceToAddress[]

Address.

serviceToContacts GetSubscribedServiceServiceToContact[]

User.

serviceToCustomers GetSubscribedServiceServiceToCustomer[]

Business partner.

soldToContacts GetSubscribedServiceSoldToContact[]

User.

soldToCustomers GetSubscribedServiceSoldToCustomer[]

Business partner.

startDateType string

Subscribed service start date type

status string

Subscribed service status

subscribedServiceId string

SPM internal Subscribed Service ID

subscriptionId string

Subscription ID associated to the subscribed service

subscriptionSource string

Subscribed service source

systemArrInLc string

Subscribed service System ARR

systemArrInSc string

Subscribed service System ARR in Standard Currency

systemAtrArrInLc string

Subscribed service System ATR-ARR

systemAtrArrInSc string

Subscribed service System ATR-ARR in Standard Currency

termValue string

Term value in Months

termValueUom string

Term value UOM

timeAgreementEnd string

Subscribed service agrrement end date

timeCreated string

Subscribed service creation date

timeCustomerConfig string

Subscribed service customer config date

timeEnd string

Subscribed service end date

timeMajorsetEnd string

Subscribed service Major Set End date

timeMajorsetStart string

Subscribed service Major Set Start date

timePaymentExpiry string

Subscribed service payment expiry date

timeProvisioned string

Subscribed service provisioning date

timeServiceConfigurationEmailSent string

Subscribed service service configuration email sent date

timeStart string

Subscribed service start date

timeUpdated string

Subscribed service last update date

timeWelcomeEmailSent string

Subscribed service welcome email sent date

totalValue string

Subscribed service total value

transactionExtensionId string

Subscribed service Transaction Extension Id

type string

Subscribed Service line type

updatedBy string

User that updated the subscribed service

usedAmount string

Subscribed service used amount

fields string[]
admin_email str

Subscribed service admin email id

agreement_id str

Subscribed service agreement ID

agreement_name str

Subscribed service agrrement name

agreement_type str

Subscribed service agrrement type

available_amount str

Commitment available amount

bill_to_addresses GetSubscribedServiceBillToAddress]

Address.

bill_to_contacts GetSubscribedServiceBillToContact]

User.

bill_to_customers GetSubscribedServiceBillToCustomer]

Business partner.

billing_frequency str

Subscribed service invoice frequency

booking_opty_number str

Booking Opportunity Number of Subscribed Service

buyer_email str

Subscribed service buyer email id

commitment_schedule_id str

Subscribed service commitment schedule Id

commitment_services GetSubscribedServiceCommitmentService]

List of Commitment services of a line

created_by str

User that created the Payment term

credit_percentage str

Subscribed service credit percentage

csi str

Subscribed service CSI number

customer_transaction_reference str

Identifier for a customer's transactions for purchase of ay oracle services

data_center str

Subscribed service data center

data_center_region str

Subscribed service data center region

eligible_to_renew str

Subscribed service eligible to renew field

end_user_addresses GetSubscribedServiceEndUserAddress]

Address.

end_user_contacts GetSubscribedServiceEndUserContact]

User.

end_user_customers GetSubscribedServiceEndUserCustomer]

Business partner.

fulfillment_set str

Subscribed service fulfillment set

funded_allocation_value str

Funded Allocation line value example: 12000.00

id str

The provider-assigned unique ID for this managed resource.

is_allowance bool

Indicates if a service can recieve usages and consequently have available amounts computed

is_cap_to_price_list bool

If true compares rate between ratecard and the active pricelist and minimum rate would be fetched

is_credit_enabled bool

Used in context of service credit lines

is_having_usage bool

Indicator on whether or not there has been usage for the subscribed service

is_intent_to_pay bool

Subscribed service intent to pay flag

is_payg bool

Subscribed service payg flag

is_single_rate_card bool

Indicates if the Subscribed service has a single ratecard

is_variable_commitment bool

Indicates if the commitment lines can have different quantities

line_net_amount str

Subscribed service line net amount

major_set str

Subscribed service Major Set

net_unit_price str

Rate card tier net unit price

operation_type str

Subscribed service operation type

order_header_id str

Sales Order Header associated to the subscribed service

order_line_id str

Sales Order Line Id associated to the subscribed service

order_line_number int

Sales Order Line Number associated to the subscribed service

order_number str

Sales Order Number associated to the subscribed service

order_type str

Order Type of Subscribed Service

original_promo_amount str

Subscribed service Promotion Amount

overage_bill_to str

Overage Bill To of Subscribed Service

overage_discount_percentage str

Subscribed service Overage Discount Percentage

overage_policy str

Overage Policy of Subscribed Service

partner_credit_amount str

Subscribed service partner credit amount

partner_transaction_type str

This field contains the name of the partner to which the subscription belongs - depending on which the invoicing may differ

payg_policy str

Pay As You Go policy of Subscribed Service (Can be null - indicating no payg policy)

payment_method str

Payment Method of Subscribed Service

payment_number str

Payment Number of Subscribed Service

payment_terms GetSubscribedServicePaymentTerm]

Payment Term details

price_period str

Indicates the period for which the commitment amount can be utilised exceeding which the amount lapses. Also used in calculation of total contract line value

pricing_model str

Subscribed service pricing model

products GetSubscribedServiceProduct]

Product description

program_type str

Subscribed service program type

promo_order_line_id str

Not null if this service has an associated promotion line in SPM. Contains the line identifier from Order Management of the associated promo line.

promo_type str

Subscribed service promotion type

promotion_pricing_type str

Promotion Pricing Type of Subscribed Service (Can be null - indicating no promotion pricing)

provisioning_source str

Subscribed service provisioning source

quantity str

Subscribed service quantity

rate_card_discount_percentage str

Subscribed service Rate Card Discount Percentage

rate_cards GetSubscribedServiceRateCard]

List of Rate Cards of a Subscribed Service

ratecard_type str

SPM Ratecard Type

renewal_opty_id str

Subscribed service Opportunity Id

renewal_opty_number str

Renewal Opportunity Number of Subscribed Service

renewal_opty_type str

Renewal Opportunity Type of Subscribed Service

renewed_subscribed_service_id str

SPM renewed Subscription ID

reseller_addresses GetSubscribedServiceResellerAddress]

Address.

reseller_contacts GetSubscribedServiceResellerContact]

User.

reseller_customers GetSubscribedServiceResellerCustomer]

Business partner.

revenue_line_id str

Subscribed service Revenue Line Id

revenue_line_number str

Revenue Line NUmber of Subscribed Service

revised_arr_in_lc str

Subscribed service Revised ARR

revised_arr_in_sc str

Subscribed service Revised ARR in Standard Currency

sales_account_party_id str

Subscribed service sales account party id

sales_channel str

Sales Channel of Subscribed Service

serial_number str

Subscribed service line number

service_to_addresses GetSubscribedServiceServiceToAddress]

Address.

service_to_contacts GetSubscribedServiceServiceToContact]

User.

service_to_customers GetSubscribedServiceServiceToCustomer]

Business partner.

sold_to_contacts GetSubscribedServiceSoldToContact]

User.

sold_to_customers GetSubscribedServiceSoldToCustomer]

Business partner.

start_date_type str

Subscribed service start date type

status str

Subscribed service status

subscribed_service_id str

SPM internal Subscribed Service ID

subscription_id str

Subscription ID associated to the subscribed service

subscription_source str

Subscribed service source

system_arr_in_lc str

Subscribed service System ARR

system_arr_in_sc str

Subscribed service System ARR in Standard Currency

system_atr_arr_in_lc str

Subscribed service System ATR-ARR

system_atr_arr_in_sc str

Subscribed service System ATR-ARR in Standard Currency

term_value str

Term value in Months

term_value_uom str

Term value UOM

time_agreement_end str

Subscribed service agrrement end date

time_created str

Subscribed service creation date

time_customer_config str

Subscribed service customer config date

time_end str

Subscribed service end date

time_majorset_end str

Subscribed service Major Set End date

time_majorset_start str

Subscribed service Major Set Start date

time_payment_expiry str

Subscribed service payment expiry date

time_provisioned str

Subscribed service provisioning date

time_service_configuration_email_sent str

Subscribed service service configuration email sent date

time_start str

Subscribed service start date

time_updated str

Subscribed service last update date

time_welcome_email_sent str

Subscribed service welcome email sent date

total_value str

Subscribed service total value

transaction_extension_id str

Subscribed service Transaction Extension Id

type str

Subscribed Service line type

updated_by str

User that updated the subscribed service

used_amount str

Subscribed service used amount

fields Sequence[str]
adminEmail String

Subscribed service admin email id

agreementId String

Subscribed service agreement ID

agreementName String

Subscribed service agrrement name

agreementType String

Subscribed service agrrement type

availableAmount String

Commitment available amount

billToAddresses List<Property Map>

Address.

billToContacts List<Property Map>

User.

billToCustomers List<Property Map>

Business partner.

billingFrequency String

Subscribed service invoice frequency

bookingOptyNumber String

Booking Opportunity Number of Subscribed Service

buyerEmail String

Subscribed service buyer email id

commitmentScheduleId String

Subscribed service commitment schedule Id

commitmentServices List<Property Map>

List of Commitment services of a line

createdBy String

User that created the Payment term

creditPercentage String

Subscribed service credit percentage

csi String

Subscribed service CSI number

customerTransactionReference String

Identifier for a customer's transactions for purchase of ay oracle services

dataCenter String

Subscribed service data center

dataCenterRegion String

Subscribed service data center region

eligibleToRenew String

Subscribed service eligible to renew field

endUserAddresses List<Property Map>

Address.

endUserContacts List<Property Map>

User.

endUserCustomers List<Property Map>

Business partner.

fulfillmentSet String

Subscribed service fulfillment set

fundedAllocationValue String

Funded Allocation line value example: 12000.00

id String

The provider-assigned unique ID for this managed resource.

isAllowance Boolean

Indicates if a service can recieve usages and consequently have available amounts computed

isCapToPriceList Boolean

If true compares rate between ratecard and the active pricelist and minimum rate would be fetched

isCreditEnabled Boolean

Used in context of service credit lines

isHavingUsage Boolean

Indicator on whether or not there has been usage for the subscribed service

isIntentToPay Boolean

Subscribed service intent to pay flag

isPayg Boolean

Subscribed service payg flag

isSingleRateCard Boolean

Indicates if the Subscribed service has a single ratecard

isVariableCommitment Boolean

Indicates if the commitment lines can have different quantities

lineNetAmount String

Subscribed service line net amount

majorSet String

Subscribed service Major Set

netUnitPrice String

Rate card tier net unit price

operationType String

Subscribed service operation type

orderHeaderId String

Sales Order Header associated to the subscribed service

orderLineId String

Sales Order Line Id associated to the subscribed service

orderLineNumber Number

Sales Order Line Number associated to the subscribed service

orderNumber String

Sales Order Number associated to the subscribed service

orderType String

Order Type of Subscribed Service

originalPromoAmount String

Subscribed service Promotion Amount

overageBillTo String

Overage Bill To of Subscribed Service

overageDiscountPercentage String

Subscribed service Overage Discount Percentage

overagePolicy String

Overage Policy of Subscribed Service

partnerCreditAmount String

Subscribed service partner credit amount

partnerTransactionType String

This field contains the name of the partner to which the subscription belongs - depending on which the invoicing may differ

paygPolicy String

Pay As You Go policy of Subscribed Service (Can be null - indicating no payg policy)

paymentMethod String

Payment Method of Subscribed Service

paymentNumber String

Payment Number of Subscribed Service

paymentTerms List<Property Map>

Payment Term details

pricePeriod String

Indicates the period for which the commitment amount can be utilised exceeding which the amount lapses. Also used in calculation of total contract line value

pricingModel String

Subscribed service pricing model

products List<Property Map>

Product description

programType String

Subscribed service program type

promoOrderLineId String

Not null if this service has an associated promotion line in SPM. Contains the line identifier from Order Management of the associated promo line.

promoType String

Subscribed service promotion type

promotionPricingType String

Promotion Pricing Type of Subscribed Service (Can be null - indicating no promotion pricing)

provisioningSource String

Subscribed service provisioning source

quantity String

Subscribed service quantity

rateCardDiscountPercentage String

Subscribed service Rate Card Discount Percentage

rateCards List<Property Map>

List of Rate Cards of a Subscribed Service

ratecardType String

SPM Ratecard Type

renewalOptyId String

Subscribed service Opportunity Id

renewalOptyNumber String

Renewal Opportunity Number of Subscribed Service

renewalOptyType String

Renewal Opportunity Type of Subscribed Service

renewedSubscribedServiceId String

SPM renewed Subscription ID

resellerAddresses List<Property Map>

Address.

resellerContacts List<Property Map>

User.

resellerCustomers List<Property Map>

Business partner.

revenueLineId String

Subscribed service Revenue Line Id

revenueLineNumber String

Revenue Line NUmber of Subscribed Service

revisedArrInLc String

Subscribed service Revised ARR

revisedArrInSc String

Subscribed service Revised ARR in Standard Currency

salesAccountPartyId String

Subscribed service sales account party id

salesChannel String

Sales Channel of Subscribed Service

serialNumber String

Subscribed service line number

serviceToAddresses List<Property Map>

Address.

serviceToContacts List<Property Map>

User.

serviceToCustomers List<Property Map>

Business partner.

soldToContacts List<Property Map>

User.

soldToCustomers List<Property Map>

Business partner.

startDateType String

Subscribed service start date type

status String

Subscribed service status

subscribedServiceId String

SPM internal Subscribed Service ID

subscriptionId String

Subscription ID associated to the subscribed service

subscriptionSource String

Subscribed service source

systemArrInLc String

Subscribed service System ARR

systemArrInSc String

Subscribed service System ARR in Standard Currency

systemAtrArrInLc String

Subscribed service System ATR-ARR

systemAtrArrInSc String

Subscribed service System ATR-ARR in Standard Currency

termValue String

Term value in Months

termValueUom String

Term value UOM

timeAgreementEnd String

Subscribed service agrrement end date

timeCreated String

Subscribed service creation date

timeCustomerConfig String

Subscribed service customer config date

timeEnd String

Subscribed service end date

timeMajorsetEnd String

Subscribed service Major Set End date

timeMajorsetStart String

Subscribed service Major Set Start date

timePaymentExpiry String

Subscribed service payment expiry date

timeProvisioned String

Subscribed service provisioning date

timeServiceConfigurationEmailSent String

Subscribed service service configuration email sent date

timeStart String

Subscribed service start date

timeUpdated String

Subscribed service last update date

timeWelcomeEmailSent String

Subscribed service welcome email sent date

totalValue String

Subscribed service total value

transactionExtensionId String

Subscribed service Transaction Extension Id

type String

Subscribed Service line type

updatedBy String

User that updated the subscribed service

usedAmount String

Subscribed service used amount

fields List<String>

Supporting Types

GetSubscribedServiceBillToAddress

BillSiteUseId string

Bill to site use Id.

IsBillTo bool

Identify as the customer shipping address.

IsShipTo bool

Identify as the customer invoicing address.

Locations List<GetSubscribedServiceBillToAddressLocation>

Address location.

Name string

Commercial name also called customer name.

Phone string

Phone.

Service2siteUseId string

Service to site use Id.

TcaCustAcctSiteId string

TCA customer account site Id.

TcaPartySiteNumber string

Party site number.

BillSiteUseId string

Bill to site use Id.

IsBillTo bool

Identify as the customer shipping address.

IsShipTo bool

Identify as the customer invoicing address.

Locations []GetSubscribedServiceBillToAddressLocation

Address location.

Name string

Commercial name also called customer name.

Phone string

Phone.

Service2siteUseId string

Service to site use Id.

TcaCustAcctSiteId string

TCA customer account site Id.

TcaPartySiteNumber string

Party site number.

billSiteUseId String

Bill to site use Id.

isBillTo Boolean

Identify as the customer shipping address.

isShipTo Boolean

Identify as the customer invoicing address.

locations List<GetSubscribedServiceBillToAddressLocation>

Address location.

name String

Commercial name also called customer name.

phone String

Phone.

service2siteUseId String

Service to site use Id.

tcaCustAcctSiteId String

TCA customer account site Id.

tcaPartySiteNumber String

Party site number.

billSiteUseId string

Bill to site use Id.

isBillTo boolean

Identify as the customer shipping address.

isShipTo boolean

Identify as the customer invoicing address.

locations GetSubscribedServiceBillToAddressLocation[]

Address location.

name string

Commercial name also called customer name.

phone string

Phone.

service2siteUseId string

Service to site use Id.

tcaCustAcctSiteId string

TCA customer account site Id.

tcaPartySiteNumber string

Party site number.

bill_site_use_id str

Bill to site use Id.

is_bill_to bool

Identify as the customer shipping address.

is_ship_to bool

Identify as the customer invoicing address.

locations GetSubscribedServiceBillToAddressLocation]

Address location.

name str

Commercial name also called customer name.

phone str

Phone.

service2site_use_id str

Service to site use Id.

tca_cust_acct_site_id str

TCA customer account site Id.

tca_party_site_number str

Party site number.

billSiteUseId String

Bill to site use Id.

isBillTo Boolean

Identify as the customer shipping address.

isShipTo Boolean

Identify as the customer invoicing address.

locations List<Property Map>

Address location.

name String

Commercial name also called customer name.

phone String

Phone.

service2siteUseId String

Service to site use Id.

tcaCustAcctSiteId String

TCA customer account site Id.

tcaPartySiteNumber String

Party site number.

GetSubscribedServiceBillToAddressLocation

Address1 string

Address first line.

Address2 string

Address second line.

City string

City.

Country string

Country.

PostalCode string

Postal code.

Region string

Region.

TcaLocationId string

Region.

Address1 string

Address first line.

Address2 string

Address second line.

City string

City.

Country string

Country.

PostalCode string

Postal code.

Region string

Region.

TcaLocationId string

Region.

address1 String

Address first line.

address2 String

Address second line.

city String

City.

country String

Country.

postalCode String

Postal code.

region String

Region.

tcaLocationId String

Region.

address1 string

Address first line.

address2 string

Address second line.

city string

City.

country string

Country.

postalCode string

Postal code.

region string

Region.

tcaLocationId string

Region.

address1 str

Address first line.

address2 str

Address second line.

city str

City.

country str

Country.

postal_code str

Postal code.

region str

Region.

tca_location_id str

Region.

address1 String

Address first line.

address2 String

Address second line.

city String

City.

country String

Country.

postalCode String

Postal code.

region String

Region.

tcaLocationId String

Region.

GetSubscribedServiceBillToContact

Email string

Email.

FirstName string

First name.

LastName string

Last name.

Name string

Commercial name also called customer name.

TcaContactId string

TCA contact ID.

TcaCustAccntSiteId string

TCA customer account site ID.

TcaPartyId string

TCA party ID.

Username string

Username.

Email string

Email.

FirstName string

First name.

LastName string

Last name.

Name string

Commercial name also called customer name.

TcaContactId string

TCA contact ID.

TcaCustAccntSiteId string

TCA customer account site ID.

TcaPartyId string

TCA party ID.

Username string

Username.

email String

Email.

firstName String

First name.

lastName String

Last name.

name String

Commercial name also called customer name.

tcaContactId String

TCA contact ID.

tcaCustAccntSiteId String

TCA customer account site ID.

tcaPartyId String

TCA party ID.

username String

Username.

email string

Email.

firstName string

First name.

lastName string

Last name.

name string

Commercial name also called customer name.

tcaContactId string

TCA contact ID.

tcaCustAccntSiteId string

TCA customer account site ID.

tcaPartyId string

TCA party ID.

username string

Username.

email str

Email.

first_name str

First name.

last_name str

Last name.

name str

Commercial name also called customer name.

tca_contact_id str

TCA contact ID.

tca_cust_accnt_site_id str

TCA customer account site ID.

tca_party_id str

TCA party ID.

username str

Username.

email String

Email.

firstName String

First name.

lastName String

Last name.

name String

Commercial name also called customer name.

tcaContactId String

TCA contact ID.

tcaCustAccntSiteId String

TCA customer account site ID.

tcaPartyId String

TCA party ID.

username String

Username.

GetSubscribedServiceBillToCustomer

CustomerChainType string

Customer chain type.

IsChainCustomer bool

The business partner is chain customer or not.

IsPublicSector bool

The business partner is part of the public sector or not.

Name string

Commercial name also called customer name.

NamePhonetic string

Phonetic name.

TcaCustAccountNumber string

TCA customer account number.

TcaCustomerAccountId string

TCA customer account ID.

TcaPartyId string

TCA party ID.

TcaPartyNumber string

TCA party number.

CustomerChainType string

Customer chain type.

IsChainCustomer bool

The business partner is chain customer or not.

IsPublicSector bool

The business partner is part of the public sector or not.

Name string

Commercial name also called customer name.

NamePhonetic string

Phonetic name.

TcaCustAccountNumber string

TCA customer account number.

TcaCustomerAccountId string

TCA customer account ID.

TcaPartyId string

TCA party ID.

TcaPartyNumber string

TCA party number.

customerChainType String

Customer chain type.

isChainCustomer Boolean

The business partner is chain customer or not.

isPublicSector Boolean

The business partner is part of the public sector or not.

name String

Commercial name also called customer name.

namePhonetic String

Phonetic name.

tcaCustAccountNumber String

TCA customer account number.

tcaCustomerAccountId String

TCA customer account ID.

tcaPartyId String

TCA party ID.

tcaPartyNumber String

TCA party number.

customerChainType string

Customer chain type.

isChainCustomer boolean

The business partner is chain customer or not.

isPublicSector boolean

The business partner is part of the public sector or not.

name string

Commercial name also called customer name.

namePhonetic string

Phonetic name.

tcaCustAccountNumber string

TCA customer account number.

tcaCustomerAccountId string

TCA customer account ID.

tcaPartyId string

TCA party ID.

tcaPartyNumber string

TCA party number.

customer_chain_type str

Customer chain type.

is_chain_customer bool

The business partner is chain customer or not.

is_public_sector bool

The business partner is part of the public sector or not.

name str

Commercial name also called customer name.

name_phonetic str

Phonetic name.

tca_cust_account_number str

TCA customer account number.

tca_customer_account_id str

TCA customer account ID.

tca_party_id str

TCA party ID.

tca_party_number str

TCA party number.

customerChainType String

Customer chain type.

isChainCustomer Boolean

The business partner is chain customer or not.

isPublicSector Boolean

The business partner is part of the public sector or not.

name String

Commercial name also called customer name.

namePhonetic String

Phonetic name.

tcaCustAccountNumber String

TCA customer account number.

tcaCustomerAccountId String

TCA customer account ID.

tcaPartyId String

TCA party ID.

tcaPartyNumber String

TCA party number.

GetSubscribedServiceCommitmentService

AvailableAmount string

Commitment available amount

FundedAllocationValue string

Funded Allocation line value example: 12000.00

LineNetAmount string

Subscribed service line net amount

Quantity string

Subscribed service quantity

TimeEnd string

Subscribed service end date

TimeStart string

Subscribed service start date

AvailableAmount string

Commitment available amount

FundedAllocationValue string

Funded Allocation line value example: 12000.00

LineNetAmount string

Subscribed service line net amount

Quantity string

Subscribed service quantity

TimeEnd string

Subscribed service end date

TimeStart string

Subscribed service start date

availableAmount String

Commitment available amount

fundedAllocationValue String

Funded Allocation line value example: 12000.00

lineNetAmount String

Subscribed service line net amount

quantity String

Subscribed service quantity

timeEnd String

Subscribed service end date

timeStart String

Subscribed service start date

availableAmount string

Commitment available amount

fundedAllocationValue string

Funded Allocation line value example: 12000.00

lineNetAmount string

Subscribed service line net amount

quantity string

Subscribed service quantity

timeEnd string

Subscribed service end date

timeStart string

Subscribed service start date

available_amount str

Commitment available amount

funded_allocation_value str

Funded Allocation line value example: 12000.00

line_net_amount str

Subscribed service line net amount

quantity str

Subscribed service quantity

time_end str

Subscribed service end date

time_start str

Subscribed service start date

availableAmount String

Commitment available amount

fundedAllocationValue String

Funded Allocation line value example: 12000.00

lineNetAmount String

Subscribed service line net amount

quantity String

Subscribed service quantity

timeEnd String

Subscribed service end date

timeStart String

Subscribed service start date

GetSubscribedServiceEndUserAddress

BillSiteUseId string

Bill to site use Id.

IsBillTo bool

Identify as the customer shipping address.

IsShipTo bool

Identify as the customer invoicing address.

Locations List<GetSubscribedServiceEndUserAddressLocation>

Address location.

Name string

Commercial name also called customer name.

Phone string

Phone.

Service2siteUseId string

Service to site use Id.

TcaCustAcctSiteId string

TCA customer account site Id.

TcaPartySiteNumber string

Party site number.

BillSiteUseId string

Bill to site use Id.

IsBillTo bool

Identify as the customer shipping address.

IsShipTo bool

Identify as the customer invoicing address.

Locations []GetSubscribedServiceEndUserAddressLocation

Address location.

Name string

Commercial name also called customer name.

Phone string

Phone.

Service2siteUseId string

Service to site use Id.

TcaCustAcctSiteId string

TCA customer account site Id.

TcaPartySiteNumber string

Party site number.

billSiteUseId String

Bill to site use Id.

isBillTo Boolean

Identify as the customer shipping address.

isShipTo Boolean

Identify as the customer invoicing address.

locations List<GetSubscribedServiceEndUserAddressLocation>

Address location.

name String

Commercial name also called customer name.

phone String

Phone.

service2siteUseId String

Service to site use Id.

tcaCustAcctSiteId String

TCA customer account site Id.

tcaPartySiteNumber String

Party site number.

billSiteUseId string

Bill to site use Id.

isBillTo boolean

Identify as the customer shipping address.

isShipTo boolean

Identify as the customer invoicing address.

locations GetSubscribedServiceEndUserAddressLocation[]

Address location.

name string

Commercial name also called customer name.

phone string

Phone.

service2siteUseId string

Service to site use Id.

tcaCustAcctSiteId string

TCA customer account site Id.

tcaPartySiteNumber string

Party site number.

bill_site_use_id str

Bill to site use Id.

is_bill_to bool

Identify as the customer shipping address.

is_ship_to bool

Identify as the customer invoicing address.

locations GetSubscribedServiceEndUserAddressLocation]

Address location.

name str

Commercial name also called customer name.

phone str

Phone.

service2site_use_id str

Service to site use Id.

tca_cust_acct_site_id str

TCA customer account site Id.

tca_party_site_number str

Party site number.

billSiteUseId String

Bill to site use Id.

isBillTo Boolean

Identify as the customer shipping address.

isShipTo Boolean

Identify as the customer invoicing address.

locations List<Property Map>

Address location.

name String

Commercial name also called customer name.

phone String

Phone.

service2siteUseId String

Service to site use Id.

tcaCustAcctSiteId String

TCA customer account site Id.

tcaPartySiteNumber String

Party site number.

GetSubscribedServiceEndUserAddressLocation

Address1 string

Address first line.

Address2 string

Address second line.

City string

City.

Country string

Country.

PostalCode string

Postal code.

Region string

Region.

TcaLocationId string

Region.

Address1 string

Address first line.

Address2 string

Address second line.

City string

City.

Country string

Country.

PostalCode string

Postal code.

Region string

Region.

TcaLocationId string

Region.

address1 String

Address first line.

address2 String

Address second line.

city String

City.

country String

Country.

postalCode String

Postal code.

region String

Region.

tcaLocationId String

Region.

address1 string

Address first line.

address2 string

Address second line.

city string

City.

country string

Country.

postalCode string

Postal code.

region string

Region.

tcaLocationId string

Region.

address1 str

Address first line.

address2 str

Address second line.

city str

City.

country str

Country.

postal_code str

Postal code.

region str

Region.

tca_location_id str

Region.

address1 String

Address first line.

address2 String

Address second line.

city String

City.

country String

Country.

postalCode String

Postal code.

region String

Region.

tcaLocationId String

Region.

GetSubscribedServiceEndUserContact

Email string

Email.

FirstName string

First name.

LastName string

Last name.

Name string

Commercial name also called customer name.

TcaContactId string

TCA contact ID.

TcaCustAccntSiteId string

TCA customer account site ID.

TcaPartyId string

TCA party ID.

Username string

Username.

Email string

Email.

FirstName string

First name.

LastName string

Last name.

Name string

Commercial name also called customer name.

TcaContactId string

TCA contact ID.

TcaCustAccntSiteId string

TCA customer account site ID.

TcaPartyId string

TCA party ID.

Username string

Username.

email String

Email.

firstName String

First name.

lastName String

Last name.

name String

Commercial name also called customer name.

tcaContactId String

TCA contact ID.

tcaCustAccntSiteId String

TCA customer account site ID.

tcaPartyId String

TCA party ID.

username String

Username.

email string

Email.

firstName string

First name.

lastName string

Last name.

name string

Commercial name also called customer name.

tcaContactId string

TCA contact ID.

tcaCustAccntSiteId string

TCA customer account site ID.

tcaPartyId string

TCA party ID.

username string

Username.

email str

Email.

first_name str

First name.

last_name str

Last name.

name str

Commercial name also called customer name.

tca_contact_id str

TCA contact ID.

tca_cust_accnt_site_id str

TCA customer account site ID.

tca_party_id str

TCA party ID.

username str

Username.

email String

Email.

firstName String

First name.

lastName String

Last name.

name String

Commercial name also called customer name.

tcaContactId String

TCA contact ID.

tcaCustAccntSiteId String

TCA customer account site ID.

tcaPartyId String

TCA party ID.

username String

Username.

GetSubscribedServiceEndUserCustomer

CustomerChainType string

Customer chain type.

IsChainCustomer bool

The business partner is chain customer or not.

IsPublicSector bool

The business partner is part of the public sector or not.

Name string

Commercial name also called customer name.

NamePhonetic string

Phonetic name.

TcaCustAccountNumber string

TCA customer account number.

TcaCustomerAccountId string

TCA customer account ID.

TcaPartyId string

TCA party ID.

TcaPartyNumber string

TCA party number.

CustomerChainType string

Customer chain type.

IsChainCustomer bool

The business partner is chain customer or not.

IsPublicSector bool

The business partner is part of the public sector or not.

Name string

Commercial name also called customer name.

NamePhonetic string

Phonetic name.

TcaCustAccountNumber string

TCA customer account number.

TcaCustomerAccountId string

TCA customer account ID.

TcaPartyId string

TCA party ID.

TcaPartyNumber string

TCA party number.

customerChainType String

Customer chain type.

isChainCustomer Boolean

The business partner is chain customer or not.

isPublicSector Boolean

The business partner is part of the public sector or not.

name String

Commercial name also called customer name.

namePhonetic String

Phonetic name.

tcaCustAccountNumber String

TCA customer account number.

tcaCustomerAccountId String

TCA customer account ID.

tcaPartyId String

TCA party ID.

tcaPartyNumber String

TCA party number.

customerChainType string

Customer chain type.

isChainCustomer boolean

The business partner is chain customer or not.

isPublicSector boolean

The business partner is part of the public sector or not.

name string

Commercial name also called customer name.

namePhonetic string

Phonetic name.

tcaCustAccountNumber string

TCA customer account number.

tcaCustomerAccountId string

TCA customer account ID.

tcaPartyId string

TCA party ID.

tcaPartyNumber string

TCA party number.

customer_chain_type str

Customer chain type.

is_chain_customer bool

The business partner is chain customer or not.

is_public_sector bool

The business partner is part of the public sector or not.

name str

Commercial name also called customer name.

name_phonetic str

Phonetic name.

tca_cust_account_number str

TCA customer account number.

tca_customer_account_id str

TCA customer account ID.

tca_party_id str

TCA party ID.

tca_party_number str

TCA party number.

customerChainType String

Customer chain type.

isChainCustomer Boolean

The business partner is chain customer or not.

isPublicSector Boolean

The business partner is part of the public sector or not.

name String

Commercial name also called customer name.

namePhonetic String

Phonetic name.

tcaCustAccountNumber String

TCA customer account number.

tcaCustomerAccountId String

TCA customer account ID.

tcaPartyId String

TCA party ID.

tcaPartyNumber String

TCA party number.

GetSubscribedServicePaymentTerm

CreatedBy string

User that created the Payment term

Description string

Payment term Description

IsActive bool

Payment term active flag

Name string

Commercial name also called customer name.

TimeCreated string

Subscribed service creation date

TimeUpdated string

Subscribed service last update date

UpdatedBy string

User that updated the subscribed service

Value string

Payment Term value

CreatedBy string

User that created the Payment term

Description string

Payment term Description

IsActive bool

Payment term active flag

Name string

Commercial name also called customer name.

TimeCreated string

Subscribed service creation date

TimeUpdated string

Subscribed service last update date

UpdatedBy string

User that updated the subscribed service

Value string

Payment Term value

createdBy String

User that created the Payment term

description String

Payment term Description

isActive Boolean

Payment term active flag

name String

Commercial name also called customer name.

timeCreated String

Subscribed service creation date

timeUpdated String

Subscribed service last update date

updatedBy String

User that updated the subscribed service

value String

Payment Term value

createdBy string

User that created the Payment term

description string

Payment term Description

isActive boolean

Payment term active flag

name string

Commercial name also called customer name.

timeCreated string

Subscribed service creation date

timeUpdated string

Subscribed service last update date

updatedBy string

User that updated the subscribed service

value string

Payment Term value

created_by str

User that created the Payment term

description str

Payment term Description

is_active bool

Payment term active flag

name str

Commercial name also called customer name.

time_created str

Subscribed service creation date

time_updated str

Subscribed service last update date

updated_by str

User that updated the subscribed service

value str

Payment Term value

createdBy String

User that created the Payment term

description String

Payment term Description

isActive Boolean

Payment term active flag

name String

Commercial name also called customer name.

timeCreated String

Subscribed service creation date

timeUpdated String

Subscribed service last update date

updatedBy String

User that updated the subscribed service

value String

Payment Term value

GetSubscribedServiceProduct

BillingCategory string

Metered service billing category

Name string

Commercial name also called customer name.

PartNumber string

Product part numner

ProductCategory string

Product category

UcmRateCardPartType string

Rate card part type of Product

UnitOfMeasure string

Unit of measure

BillingCategory string

Metered service billing category

Name string

Commercial name also called customer name.

PartNumber string

Product part numner

ProductCategory string

Product category

UcmRateCardPartType string

Rate card part type of Product

UnitOfMeasure string

Unit of measure

billingCategory String

Metered service billing category

name String

Commercial name also called customer name.

partNumber String

Product part numner

productCategory String

Product category

ucmRateCardPartType String

Rate card part type of Product

unitOfMeasure String

Unit of measure

billingCategory string

Metered service billing category

name string

Commercial name also called customer name.

partNumber string

Product part numner

productCategory string

Product category

ucmRateCardPartType string

Rate card part type of Product

unitOfMeasure string

Unit of measure

billing_category str

Metered service billing category

name str

Commercial name also called customer name.

part_number str

Product part numner

product_category str

Product category

ucm_rate_card_part_type str

Rate card part type of Product

unit_of_measure str

Unit of measure

billingCategory String

Metered service billing category

name String

Commercial name also called customer name.

partNumber String

Product part numner

productCategory String

Product category

ucmRateCardPartType String

Rate card part type of Product

unitOfMeasure String

Unit of measure

GetSubscribedServiceRateCard

Currencies List<GetSubscribedServiceRateCardCurrency>

Currency details

DiscretionaryDiscountPercentage string

Rate card discretionary discount percentage

IsTier bool

Rate card price tier flag

NetUnitPrice string

Rate card tier net unit price

OveragePrice string

Rate card tier overage price

Products List<GetSubscribedServiceRateCardProduct>

Product description

RateCardTiers List<GetSubscribedServiceRateCardRateCardTier>

List of tiered rate card prices

SubscribedServiceId string

The Subscribed Service Id

TimeEnd string

Subscribed service end date

TimeStart string

Subscribed service start date

Currencies []GetSubscribedServiceRateCardCurrency

Currency details

DiscretionaryDiscountPercentage string

Rate card discretionary discount percentage

IsTier bool

Rate card price tier flag

NetUnitPrice string

Rate card tier net unit price

OveragePrice string

Rate card tier overage price

Products []GetSubscribedServiceRateCardProduct

Product description

RateCardTiers []GetSubscribedServiceRateCardRateCardTier

List of tiered rate card prices

SubscribedServiceId string

The Subscribed Service Id

TimeEnd string

Subscribed service end date

TimeStart string

Subscribed service start date

currencies List<GetSubscribedServiceRateCardCurrency>

Currency details

discretionaryDiscountPercentage String

Rate card discretionary discount percentage

isTier Boolean

Rate card price tier flag

netUnitPrice String

Rate card tier net unit price

overagePrice String

Rate card tier overage price

products List<GetSubscribedServiceRateCardProduct>

Product description

rateCardTiers List<GetSubscribedServiceRateCardRateCardTier>

List of tiered rate card prices

subscribedServiceId String

The Subscribed Service Id

timeEnd String

Subscribed service end date

timeStart String

Subscribed service start date

currencies GetSubscribedServiceRateCardCurrency[]

Currency details

discretionaryDiscountPercentage string

Rate card discretionary discount percentage

isTier boolean

Rate card price tier flag

netUnitPrice string

Rate card tier net unit price

overagePrice string

Rate card tier overage price

products GetSubscribedServiceRateCardProduct[]

Product description

rateCardTiers GetSubscribedServiceRateCardRateCardTier[]

List of tiered rate card prices

subscribedServiceId string

The Subscribed Service Id

timeEnd string

Subscribed service end date

timeStart string

Subscribed service start date

currencies GetSubscribedServiceRateCardCurrency]

Currency details

discretionary_discount_percentage str

Rate card discretionary discount percentage

is_tier bool

Rate card price tier flag

net_unit_price str

Rate card tier net unit price

overage_price str

Rate card tier overage price

products GetSubscribedServiceRateCardProduct]

Product description

rate_card_tiers GetSubscribedServiceRateCardRateCardTier]

List of tiered rate card prices

subscribed_service_id str

The Subscribed Service Id

time_end str

Subscribed service end date

time_start str

Subscribed service start date

currencies List<Property Map>

Currency details

discretionaryDiscountPercentage String

Rate card discretionary discount percentage

isTier Boolean

Rate card price tier flag

netUnitPrice String

Rate card tier net unit price

overagePrice String

Rate card tier overage price

products List<Property Map>

Product description

rateCardTiers List<Property Map>

List of tiered rate card prices

subscribedServiceId String

The Subscribed Service Id

timeEnd String

Subscribed service end date

timeStart String

Subscribed service start date

GetSubscribedServiceRateCardCurrency

IsoCode string

Currency Code

Name string

Commercial name also called customer name.

StdPrecision string

Standard Precision of the Currency

IsoCode string

Currency Code

Name string

Commercial name also called customer name.

StdPrecision string

Standard Precision of the Currency

isoCode String

Currency Code

name String

Commercial name also called customer name.

stdPrecision String

Standard Precision of the Currency

isoCode string

Currency Code

name string

Commercial name also called customer name.

stdPrecision string

Standard Precision of the Currency

iso_code str

Currency Code

name str

Commercial name also called customer name.

std_precision str

Standard Precision of the Currency

isoCode String

Currency Code

name String

Commercial name also called customer name.

stdPrecision String

Standard Precision of the Currency

GetSubscribedServiceRateCardProduct

BillingCategory string

Metered service billing category

Name string

Commercial name also called customer name.

PartNumber string

Product part numner

ProductCategory string

Product category

UcmRateCardPartType string

Rate card part type of Product

UnitOfMeasure string

Unit of measure

BillingCategory string

Metered service billing category

Name string

Commercial name also called customer name.

PartNumber string

Product part numner

ProductCategory string

Product category

UcmRateCardPartType string

Rate card part type of Product

UnitOfMeasure string

Unit of measure

billingCategory String

Metered service billing category

name String

Commercial name also called customer name.

partNumber String

Product part numner

productCategory String

Product category

ucmRateCardPartType String

Rate card part type of Product

unitOfMeasure String

Unit of measure

billingCategory string

Metered service billing category

name string

Commercial name also called customer name.

partNumber string

Product part numner

productCategory string

Product category

ucmRateCardPartType string

Rate card part type of Product

unitOfMeasure string

Unit of measure

billing_category str

Metered service billing category

name str

Commercial name also called customer name.

part_number str

Product part numner

product_category str

Product category

ucm_rate_card_part_type str

Rate card part type of Product

unit_of_measure str

Unit of measure

billingCategory String

Metered service billing category

name String

Commercial name also called customer name.

partNumber String

Product part numner

productCategory String

Product category

ucmRateCardPartType String

Rate card part type of Product

unitOfMeasure String

Unit of measure

GetSubscribedServiceRateCardRateCardTier

NetUnitPrice string

Rate card tier net unit price

OveragePrice string

Rate card tier overage price

UpToQuantity string

Rate card tier quantity range

NetUnitPrice string

Rate card tier net unit price

OveragePrice string

Rate card tier overage price

UpToQuantity string

Rate card tier quantity range

netUnitPrice String

Rate card tier net unit price

overagePrice String

Rate card tier overage price

upToQuantity String

Rate card tier quantity range

netUnitPrice string

Rate card tier net unit price

overagePrice string

Rate card tier overage price

upToQuantity string

Rate card tier quantity range

net_unit_price str

Rate card tier net unit price

overage_price str

Rate card tier overage price

up_to_quantity str

Rate card tier quantity range

netUnitPrice String

Rate card tier net unit price

overagePrice String

Rate card tier overage price

upToQuantity String

Rate card tier quantity range

GetSubscribedServiceResellerAddress

BillSiteUseId string

Bill to site use Id.

IsBillTo bool

Identify as the customer shipping address.

IsShipTo bool

Identify as the customer invoicing address.

Locations List<GetSubscribedServiceResellerAddressLocation>

Address location.

Name string

Commercial name also called customer name.

Phone string

Phone.

Service2siteUseId string

Service to site use Id.

TcaCustAcctSiteId string

TCA customer account site Id.

TcaPartySiteNumber string

Party site number.

BillSiteUseId string

Bill to site use Id.

IsBillTo bool

Identify as the customer shipping address.

IsShipTo bool

Identify as the customer invoicing address.

Locations []GetSubscribedServiceResellerAddressLocation

Address location.

Name string

Commercial name also called customer name.

Phone string

Phone.

Service2siteUseId string

Service to site use Id.

TcaCustAcctSiteId string

TCA customer account site Id.

TcaPartySiteNumber string

Party site number.

billSiteUseId String

Bill to site use Id.

isBillTo Boolean

Identify as the customer shipping address.

isShipTo Boolean

Identify as the customer invoicing address.

locations List<GetSubscribedServiceResellerAddressLocation>

Address location.

name String

Commercial name also called customer name.

phone String

Phone.

service2siteUseId String

Service to site use Id.

tcaCustAcctSiteId String

TCA customer account site Id.

tcaPartySiteNumber String

Party site number.

billSiteUseId string

Bill to site use Id.

isBillTo boolean

Identify as the customer shipping address.

isShipTo boolean

Identify as the customer invoicing address.

locations GetSubscribedServiceResellerAddressLocation[]

Address location.

name string

Commercial name also called customer name.

phone string

Phone.

service2siteUseId string

Service to site use Id.

tcaCustAcctSiteId string

TCA customer account site Id.

tcaPartySiteNumber string

Party site number.

bill_site_use_id str

Bill to site use Id.

is_bill_to bool

Identify as the customer shipping address.

is_ship_to bool

Identify as the customer invoicing address.

locations GetSubscribedServiceResellerAddressLocation]

Address location.

name str

Commercial name also called customer name.

phone str

Phone.

service2site_use_id str

Service to site use Id.

tca_cust_acct_site_id str

TCA customer account site Id.

tca_party_site_number str

Party site number.

billSiteUseId String

Bill to site use Id.

isBillTo Boolean

Identify as the customer shipping address.

isShipTo Boolean

Identify as the customer invoicing address.

locations List<Property Map>

Address location.

name String

Commercial name also called customer name.

phone String

Phone.

service2siteUseId String

Service to site use Id.

tcaCustAcctSiteId String

TCA customer account site Id.

tcaPartySiteNumber String

Party site number.

GetSubscribedServiceResellerAddressLocation

Address1 string

Address first line.

Address2 string

Address second line.

City string

City.

Country string

Country.

PostalCode string

Postal code.

Region string

Region.

TcaLocationId string

Region.

Address1 string

Address first line.

Address2 string

Address second line.

City string

City.

Country string

Country.

PostalCode string

Postal code.

Region string

Region.

TcaLocationId string

Region.

address1 String

Address first line.

address2 String

Address second line.

city String

City.

country String

Country.

postalCode String

Postal code.

region String

Region.

tcaLocationId String

Region.

address1 string

Address first line.

address2 string

Address second line.

city string

City.

country string

Country.

postalCode string

Postal code.

region string

Region.

tcaLocationId string

Region.

address1 str

Address first line.

address2 str

Address second line.

city str

City.

country str

Country.

postal_code str

Postal code.

region str

Region.

tca_location_id str

Region.

address1 String

Address first line.

address2 String

Address second line.

city String

City.

country String

Country.

postalCode String

Postal code.

region String

Region.

tcaLocationId String

Region.

GetSubscribedServiceResellerContact

Email string

Email.

FirstName string

First name.

LastName string

Last name.

Name string

Commercial name also called customer name.

TcaContactId string

TCA contact ID.

TcaCustAccntSiteId string

TCA customer account site ID.

TcaPartyId string

TCA party ID.

Username string

Username.

Email string

Email.

FirstName string

First name.

LastName string

Last name.

Name string

Commercial name also called customer name.

TcaContactId string

TCA contact ID.

TcaCustAccntSiteId string

TCA customer account site ID.

TcaPartyId string

TCA party ID.

Username string

Username.

email String

Email.

firstName String

First name.

lastName String

Last name.

name String

Commercial name also called customer name.

tcaContactId String

TCA contact ID.

tcaCustAccntSiteId String

TCA customer account site ID.

tcaPartyId String

TCA party ID.

username String

Username.

email string

Email.

firstName string

First name.

lastName string

Last name.

name string

Commercial name also called customer name.

tcaContactId string

TCA contact ID.

tcaCustAccntSiteId string

TCA customer account site ID.

tcaPartyId string

TCA party ID.

username string

Username.

email str

Email.

first_name str

First name.

last_name str

Last name.

name str

Commercial name also called customer name.

tca_contact_id str

TCA contact ID.

tca_cust_accnt_site_id str

TCA customer account site ID.

tca_party_id str

TCA party ID.

username str

Username.

email String

Email.

firstName String

First name.

lastName String

Last name.

name String

Commercial name also called customer name.

tcaContactId String

TCA contact ID.

tcaCustAccntSiteId String

TCA customer account site ID.

tcaPartyId String

TCA party ID.

username String

Username.

GetSubscribedServiceResellerCustomer

CustomerChainType string

Customer chain type.

IsChainCustomer bool

The business partner is chain customer or not.

IsPublicSector bool

The business partner is part of the public sector or not.

Name string

Commercial name also called customer name.

NamePhonetic string

Phonetic name.

TcaCustAccountNumber string

TCA customer account number.

TcaCustomerAccountId string

TCA customer account ID.

TcaPartyId string

TCA party ID.

TcaPartyNumber string

TCA party number.

CustomerChainType string

Customer chain type.

IsChainCustomer bool

The business partner is chain customer or not.

IsPublicSector bool

The business partner is part of the public sector or not.

Name string

Commercial name also called customer name.

NamePhonetic string

Phonetic name.

TcaCustAccountNumber string

TCA customer account number.

TcaCustomerAccountId string

TCA customer account ID.

TcaPartyId string

TCA party ID.

TcaPartyNumber string

TCA party number.

customerChainType String

Customer chain type.

isChainCustomer Boolean

The business partner is chain customer or not.

isPublicSector Boolean

The business partner is part of the public sector or not.

name String

Commercial name also called customer name.

namePhonetic String

Phonetic name.

tcaCustAccountNumber String

TCA customer account number.

tcaCustomerAccountId String

TCA customer account ID.

tcaPartyId String

TCA party ID.

tcaPartyNumber String

TCA party number.

customerChainType string

Customer chain type.

isChainCustomer boolean

The business partner is chain customer or not.

isPublicSector boolean

The business partner is part of the public sector or not.

name string

Commercial name also called customer name.

namePhonetic string

Phonetic name.

tcaCustAccountNumber string

TCA customer account number.

tcaCustomerAccountId string

TCA customer account ID.

tcaPartyId string

TCA party ID.

tcaPartyNumber string

TCA party number.

customer_chain_type str

Customer chain type.

is_chain_customer bool

The business partner is chain customer or not.

is_public_sector bool

The business partner is part of the public sector or not.

name str

Commercial name also called customer name.

name_phonetic str

Phonetic name.

tca_cust_account_number str

TCA customer account number.

tca_customer_account_id str

TCA customer account ID.

tca_party_id str

TCA party ID.

tca_party_number str

TCA party number.

customerChainType String

Customer chain type.

isChainCustomer Boolean

The business partner is chain customer or not.

isPublicSector Boolean

The business partner is part of the public sector or not.

name String

Commercial name also called customer name.

namePhonetic String

Phonetic name.

tcaCustAccountNumber String

TCA customer account number.

tcaCustomerAccountId String

TCA customer account ID.

tcaPartyId String

TCA party ID.

tcaPartyNumber String

TCA party number.

GetSubscribedServiceServiceToAddress

BillSiteUseId string

Bill to site use Id.

IsBillTo bool

Identify as the customer shipping address.

IsShipTo bool

Identify as the customer invoicing address.

Locations List<GetSubscribedServiceServiceToAddressLocation>

Address location.

Name string

Commercial name also called customer name.

Phone string

Phone.

Service2siteUseId string

Service to site use Id.

TcaCustAcctSiteId string

TCA customer account site Id.

TcaPartySiteNumber string

Party site number.

BillSiteUseId string

Bill to site use Id.

IsBillTo bool

Identify as the customer shipping address.

IsShipTo bool

Identify as the customer invoicing address.

Locations []GetSubscribedServiceServiceToAddressLocation

Address location.

Name string

Commercial name also called customer name.

Phone string

Phone.

Service2siteUseId string

Service to site use Id.

TcaCustAcctSiteId string

TCA customer account site Id.

TcaPartySiteNumber string

Party site number.

billSiteUseId String

Bill to site use Id.

isBillTo Boolean

Identify as the customer shipping address.

isShipTo Boolean

Identify as the customer invoicing address.

locations List<GetSubscribedServiceServiceToAddressLocation>

Address location.

name String

Commercial name also called customer name.

phone String

Phone.

service2siteUseId String

Service to site use Id.

tcaCustAcctSiteId String

TCA customer account site Id.

tcaPartySiteNumber String

Party site number.

billSiteUseId string

Bill to site use Id.

isBillTo boolean

Identify as the customer shipping address.

isShipTo boolean

Identify as the customer invoicing address.

locations GetSubscribedServiceServiceToAddressLocation[]

Address location.

name string

Commercial name also called customer name.

phone string

Phone.

service2siteUseId string

Service to site use Id.

tcaCustAcctSiteId string

TCA customer account site Id.

tcaPartySiteNumber string

Party site number.

bill_site_use_id str

Bill to site use Id.

is_bill_to bool

Identify as the customer shipping address.

is_ship_to bool

Identify as the customer invoicing address.

locations GetSubscribedServiceServiceToAddressLocation]

Address location.

name str

Commercial name also called customer name.

phone str

Phone.

service2site_use_id str

Service to site use Id.

tca_cust_acct_site_id str

TCA customer account site Id.

tca_party_site_number str

Party site number.

billSiteUseId String

Bill to site use Id.

isBillTo Boolean

Identify as the customer shipping address.

isShipTo Boolean

Identify as the customer invoicing address.

locations List<Property Map>

Address location.

name String

Commercial name also called customer name.

phone String

Phone.

service2siteUseId String

Service to site use Id.

tcaCustAcctSiteId String

TCA customer account site Id.

tcaPartySiteNumber String

Party site number.

GetSubscribedServiceServiceToAddressLocation

Address1 string

Address first line.

Address2 string

Address second line.

City string

City.

Country string

Country.

PostalCode string

Postal code.

Region string

Region.

TcaLocationId string

Region.

Address1 string

Address first line.

Address2 string

Address second line.

City string

City.

Country string

Country.

PostalCode string

Postal code.

Region string

Region.

TcaLocationId string

Region.

address1 String

Address first line.

address2 String

Address second line.

city String

City.

country String

Country.

postalCode String

Postal code.

region String

Region.

tcaLocationId String

Region.

address1 string

Address first line.

address2 string

Address second line.

city string

City.

country string

Country.

postalCode string

Postal code.

region string

Region.

tcaLocationId string

Region.

address1 str

Address first line.

address2 str

Address second line.

city str

City.

country str

Country.

postal_code str

Postal code.

region str

Region.

tca_location_id str

Region.

address1 String

Address first line.

address2 String

Address second line.

city String

City.

country String

Country.

postalCode String

Postal code.

region String

Region.

tcaLocationId String

Region.

GetSubscribedServiceServiceToContact

Email string

Email.

FirstName string

First name.

LastName string

Last name.

Name string

Commercial name also called customer name.

TcaContactId string

TCA contact ID.

TcaCustAccntSiteId string

TCA customer account site ID.

TcaPartyId string

TCA party ID.

Username string

Username.

Email string

Email.

FirstName string

First name.

LastName string

Last name.

Name string

Commercial name also called customer name.

TcaContactId string

TCA contact ID.

TcaCustAccntSiteId string

TCA customer account site ID.

TcaPartyId string

TCA party ID.

Username string

Username.

email String

Email.

firstName String

First name.

lastName String

Last name.

name String

Commercial name also called customer name.

tcaContactId String

TCA contact ID.

tcaCustAccntSiteId String

TCA customer account site ID.

tcaPartyId String

TCA party ID.

username String

Username.

email string

Email.

firstName string

First name.

lastName string

Last name.

name string

Commercial name also called customer name.

tcaContactId string

TCA contact ID.

tcaCustAccntSiteId string

TCA customer account site ID.

tcaPartyId string

TCA party ID.

username string

Username.

email str

Email.

first_name str

First name.

last_name str

Last name.

name str

Commercial name also called customer name.

tca_contact_id str

TCA contact ID.

tca_cust_accnt_site_id str

TCA customer account site ID.

tca_party_id str

TCA party ID.

username str

Username.

email String

Email.

firstName String

First name.

lastName String

Last name.

name String

Commercial name also called customer name.

tcaContactId String

TCA contact ID.

tcaCustAccntSiteId String

TCA customer account site ID.

tcaPartyId String

TCA party ID.

username String

Username.

GetSubscribedServiceServiceToCustomer

CustomerChainType string

Customer chain type.

IsChainCustomer bool

The business partner is chain customer or not.

IsPublicSector bool

The business partner is part of the public sector or not.

Name string

Commercial name also called customer name.

NamePhonetic string

Phonetic name.

TcaCustAccountNumber string

TCA customer account number.

TcaCustomerAccountId string

TCA customer account ID.

TcaPartyId string

TCA party ID.

TcaPartyNumber string

TCA party number.

CustomerChainType string

Customer chain type.

IsChainCustomer bool

The business partner is chain customer or not.

IsPublicSector bool

The business partner is part of the public sector or not.

Name string

Commercial name also called customer name.

NamePhonetic string

Phonetic name.

TcaCustAccountNumber string

TCA customer account number.

TcaCustomerAccountId string

TCA customer account ID.

TcaPartyId string

TCA party ID.

TcaPartyNumber string

TCA party number.

customerChainType String

Customer chain type.

isChainCustomer Boolean

The business partner is chain customer or not.

isPublicSector Boolean

The business partner is part of the public sector or not.

name String

Commercial name also called customer name.

namePhonetic String

Phonetic name.

tcaCustAccountNumber String

TCA customer account number.

tcaCustomerAccountId String

TCA customer account ID.

tcaPartyId String

TCA party ID.

tcaPartyNumber String

TCA party number.

customerChainType string

Customer chain type.

isChainCustomer boolean

The business partner is chain customer or not.

isPublicSector boolean

The business partner is part of the public sector or not.

name string

Commercial name also called customer name.

namePhonetic string

Phonetic name.

tcaCustAccountNumber string

TCA customer account number.

tcaCustomerAccountId string

TCA customer account ID.

tcaPartyId string

TCA party ID.

tcaPartyNumber string

TCA party number.

customer_chain_type str

Customer chain type.

is_chain_customer bool

The business partner is chain customer or not.

is_public_sector bool

The business partner is part of the public sector or not.

name str

Commercial name also called customer name.

name_phonetic str

Phonetic name.

tca_cust_account_number str

TCA customer account number.

tca_customer_account_id str

TCA customer account ID.

tca_party_id str

TCA party ID.

tca_party_number str

TCA party number.

customerChainType String

Customer chain type.

isChainCustomer Boolean

The business partner is chain customer or not.

isPublicSector Boolean

The business partner is part of the public sector or not.

name String

Commercial name also called customer name.

namePhonetic String

Phonetic name.

tcaCustAccountNumber String

TCA customer account number.

tcaCustomerAccountId String

TCA customer account ID.

tcaPartyId String

TCA party ID.

tcaPartyNumber String

TCA party number.

GetSubscribedServiceSoldToContact

Email string

Email.

FirstName string

First name.

LastName string

Last name.

Name string

Commercial name also called customer name.

TcaContactId string

TCA contact ID.

TcaCustAccntSiteId string

TCA customer account site ID.

TcaPartyId string

TCA party ID.

Username string

Username.

Email string

Email.

FirstName string

First name.

LastName string

Last name.

Name string

Commercial name also called customer name.

TcaContactId string

TCA contact ID.

TcaCustAccntSiteId string

TCA customer account site ID.

TcaPartyId string

TCA party ID.

Username string

Username.

email String

Email.

firstName String

First name.

lastName String

Last name.

name String

Commercial name also called customer name.

tcaContactId String

TCA contact ID.

tcaCustAccntSiteId String

TCA customer account site ID.

tcaPartyId String

TCA party ID.

username String

Username.

email string

Email.

firstName string

First name.

lastName string

Last name.

name string

Commercial name also called customer name.

tcaContactId string

TCA contact ID.

tcaCustAccntSiteId string

TCA customer account site ID.

tcaPartyId string

TCA party ID.

username string

Username.

email str

Email.

first_name str

First name.

last_name str

Last name.

name str

Commercial name also called customer name.

tca_contact_id str

TCA contact ID.

tca_cust_accnt_site_id str

TCA customer account site ID.

tca_party_id str

TCA party ID.

username str

Username.

email String

Email.

firstName String

First name.

lastName String

Last name.

name String

Commercial name also called customer name.

tcaContactId String

TCA contact ID.

tcaCustAccntSiteId String

TCA customer account site ID.

tcaPartyId String

TCA party ID.

username String

Username.

GetSubscribedServiceSoldToCustomer

CustomerChainType string

Customer chain type.

IsChainCustomer bool

The business partner is chain customer or not.

IsPublicSector bool

The business partner is part of the public sector or not.

Name string

Commercial name also called customer name.

NamePhonetic string

Phonetic name.

TcaCustAccountNumber string

TCA customer account number.

TcaCustomerAccountId string

TCA customer account ID.

TcaPartyId string

TCA party ID.

TcaPartyNumber string

TCA party number.

CustomerChainType string

Customer chain type.

IsChainCustomer bool

The business partner is chain customer or not.

IsPublicSector bool

The business partner is part of the public sector or not.

Name string

Commercial name also called customer name.

NamePhonetic string

Phonetic name.

TcaCustAccountNumber string

TCA customer account number.

TcaCustomerAccountId string

TCA customer account ID.

TcaPartyId string

TCA party ID.

TcaPartyNumber string

TCA party number.

customerChainType String

Customer chain type.

isChainCustomer Boolean

The business partner is chain customer or not.

isPublicSector Boolean

The business partner is part of the public sector or not.

name String

Commercial name also called customer name.

namePhonetic String

Phonetic name.

tcaCustAccountNumber String

TCA customer account number.

tcaCustomerAccountId String

TCA customer account ID.

tcaPartyId String

TCA party ID.

tcaPartyNumber String

TCA party number.

customerChainType string

Customer chain type.

isChainCustomer boolean

The business partner is chain customer or not.

isPublicSector boolean

The business partner is part of the public sector or not.

name string

Commercial name also called customer name.

namePhonetic string

Phonetic name.

tcaCustAccountNumber string

TCA customer account number.

tcaCustomerAccountId string

TCA customer account ID.

tcaPartyId string

TCA party ID.

tcaPartyNumber string

TCA party number.

customer_chain_type str

Customer chain type.

is_chain_customer bool

The business partner is chain customer or not.

is_public_sector bool

The business partner is part of the public sector or not.

name str

Commercial name also called customer name.

name_phonetic str

Phonetic name.

tca_cust_account_number str

TCA customer account number.

tca_customer_account_id str

TCA customer account ID.

tca_party_id str

TCA party ID.

tca_party_number str

TCA party number.

customerChainType String

Customer chain type.

isChainCustomer Boolean

The business partner is chain customer or not.

isPublicSector Boolean

The business partner is part of the public sector or not.

name String

Commercial name also called customer name.

namePhonetic String

Phonetic name.

tcaCustAccountNumber String

TCA customer account number.

tcaCustomerAccountId String

TCA customer account ID.

tcaPartyId String

TCA party ID.

tcaPartyNumber String

TCA party number.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes

This Pulumi package is based on the oci Terraform Provider.