Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.UsageProxy.getSubscriptionRedemption
Explore with Pulumi AI
This data source provides details about a specific Subscription Redemption resource in Oracle Cloud Infrastructure Usage Proxy service.
Returns the list of redemption for the subscription ID.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testSubscriptionRedemption = oci.UsageProxy.getSubscriptionRedemption({
    subscriptionId: testSubscription.id,
    tenancyId: testTenancy.id,
    timeRedeemedGreaterThanOrEqualTo: subscriptionRedemptionTimeRedeemedGreaterThanOrEqualTo,
    timeRedeemedLessThan: subscriptionRedemptionTimeRedeemedLessThan,
});
import pulumi
import pulumi_oci as oci
test_subscription_redemption = oci.UsageProxy.get_subscription_redemption(subscription_id=test_subscription["id"],
    tenancy_id=test_tenancy["id"],
    time_redeemed_greater_than_or_equal_to=subscription_redemption_time_redeemed_greater_than_or_equal_to,
    time_redeemed_less_than=subscription_redemption_time_redeemed_less_than)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/usageproxy"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := usageproxy.GetSubscriptionRedemption(ctx, &usageproxy.GetSubscriptionRedemptionArgs{
			SubscriptionId:                   testSubscription.Id,
			TenancyId:                        testTenancy.Id,
			TimeRedeemedGreaterThanOrEqualTo: pulumi.StringRef(subscriptionRedemptionTimeRedeemedGreaterThanOrEqualTo),
			TimeRedeemedLessThan:             pulumi.StringRef(subscriptionRedemptionTimeRedeemedLessThan),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() => 
{
    var testSubscriptionRedemption = Oci.UsageProxy.GetSubscriptionRedemption.Invoke(new()
    {
        SubscriptionId = testSubscription.Id,
        TenancyId = testTenancy.Id,
        TimeRedeemedGreaterThanOrEqualTo = subscriptionRedemptionTimeRedeemedGreaterThanOrEqualTo,
        TimeRedeemedLessThan = subscriptionRedemptionTimeRedeemedLessThan,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.UsageProxy.UsageProxyFunctions;
import com.pulumi.oci.UsageProxy.inputs.GetSubscriptionRedemptionArgs;
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 testSubscriptionRedemption = UsageProxyFunctions.getSubscriptionRedemption(GetSubscriptionRedemptionArgs.builder()
            .subscriptionId(testSubscription.id())
            .tenancyId(testTenancy.id())
            .timeRedeemedGreaterThanOrEqualTo(subscriptionRedemptionTimeRedeemedGreaterThanOrEqualTo)
            .timeRedeemedLessThan(subscriptionRedemptionTimeRedeemedLessThan)
            .build());
    }
}
variables:
  testSubscriptionRedemption:
    fn::invoke:
      function: oci:UsageProxy:getSubscriptionRedemption
      arguments:
        subscriptionId: ${testSubscription.id}
        tenancyId: ${testTenancy.id}
        timeRedeemedGreaterThanOrEqualTo: ${subscriptionRedemptionTimeRedeemedGreaterThanOrEqualTo}
        timeRedeemedLessThan: ${subscriptionRedemptionTimeRedeemedLessThan}
Using getSubscriptionRedemption
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 getSubscriptionRedemption(args: GetSubscriptionRedemptionArgs, opts?: InvokeOptions): Promise<GetSubscriptionRedemptionResult>
function getSubscriptionRedemptionOutput(args: GetSubscriptionRedemptionOutputArgs, opts?: InvokeOptions): Output<GetSubscriptionRedemptionResult>def get_subscription_redemption(subscription_id: Optional[str] = None,
                                tenancy_id: Optional[str] = None,
                                time_redeemed_greater_than_or_equal_to: Optional[str] = None,
                                time_redeemed_less_than: Optional[str] = None,
                                opts: Optional[InvokeOptions] = None) -> GetSubscriptionRedemptionResult
def get_subscription_redemption_output(subscription_id: Optional[pulumi.Input[str]] = None,
                                tenancy_id: Optional[pulumi.Input[str]] = None,
                                time_redeemed_greater_than_or_equal_to: Optional[pulumi.Input[str]] = None,
                                time_redeemed_less_than: Optional[pulumi.Input[str]] = None,
                                opts: Optional[InvokeOptions] = None) -> Output[GetSubscriptionRedemptionResult]func GetSubscriptionRedemption(ctx *Context, args *GetSubscriptionRedemptionArgs, opts ...InvokeOption) (*GetSubscriptionRedemptionResult, error)
func GetSubscriptionRedemptionOutput(ctx *Context, args *GetSubscriptionRedemptionOutputArgs, opts ...InvokeOption) GetSubscriptionRedemptionResultOutput> Note: This function is named GetSubscriptionRedemption in the Go SDK.
public static class GetSubscriptionRedemption 
{
    public static Task<GetSubscriptionRedemptionResult> InvokeAsync(GetSubscriptionRedemptionArgs args, InvokeOptions? opts = null)
    public static Output<GetSubscriptionRedemptionResult> Invoke(GetSubscriptionRedemptionInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetSubscriptionRedemptionResult> getSubscriptionRedemption(GetSubscriptionRedemptionArgs args, InvokeOptions options)
public static Output<GetSubscriptionRedemptionResult> getSubscriptionRedemption(GetSubscriptionRedemptionArgs args, InvokeOptions options)
fn::invoke:
  function: oci:UsageProxy/getSubscriptionRedemption:getSubscriptionRedemption
  arguments:
    # arguments dictionaryThe following arguments are supported:
- SubscriptionId string
- The subscription ID for which rewards information is requested for.
- TenancyId string
- The OCID of the tenancy.
- TimeRedeemed stringGreater Than Or Equal To 
- The starting redeemed date filter for the redemption history.
- TimeRedeemed stringLess Than 
- The ending redeemed date filter for the redemption history.
- SubscriptionId string
- The subscription ID for which rewards information is requested for.
- TenancyId string
- The OCID of the tenancy.
- TimeRedeemed stringGreater Than Or Equal To 
- The starting redeemed date filter for the redemption history.
- TimeRedeemed stringLess Than 
- The ending redeemed date filter for the redemption history.
- subscriptionId String
- The subscription ID for which rewards information is requested for.
- tenancyId String
- The OCID of the tenancy.
- timeRedeemed StringGreater Than Or Equal To 
- The starting redeemed date filter for the redemption history.
- timeRedeemed StringLess Than 
- The ending redeemed date filter for the redemption history.
- subscriptionId string
- The subscription ID for which rewards information is requested for.
- tenancyId string
- The OCID of the tenancy.
- timeRedeemed stringGreater Than Or Equal To 
- The starting redeemed date filter for the redemption history.
- timeRedeemed stringLess Than 
- The ending redeemed date filter for the redemption history.
- subscription_id str
- The subscription ID for which rewards information is requested for.
- tenancy_id str
- The OCID of the tenancy.
- time_redeemed_ strgreater_ than_ or_ equal_ to 
- The starting redeemed date filter for the redemption history.
- time_redeemed_ strless_ than 
- The ending redeemed date filter for the redemption history.
- subscriptionId String
- The subscription ID for which rewards information is requested for.
- tenancyId String
- The OCID of the tenancy.
- timeRedeemed StringGreater Than Or Equal To 
- The starting redeemed date filter for the redemption history.
- timeRedeemed StringLess Than 
- The ending redeemed date filter for the redemption history.
getSubscriptionRedemption Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
List<GetSubscription Redemption Item> 
- The list of redemption summary.
- SubscriptionId string
- TenancyId string
- TimeRedeemed stringGreater Than Or Equal To 
- TimeRedeemed stringLess Than 
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
[]GetSubscription Redemption Item 
- The list of redemption summary.
- SubscriptionId string
- TenancyId string
- TimeRedeemed stringGreater Than Or Equal To 
- TimeRedeemed stringLess Than 
- id String
- The provider-assigned unique ID for this managed resource.
- items
List<GetSubscription Redemption Item> 
- The list of redemption summary.
- subscriptionId String
- tenancyId String
- timeRedeemed StringGreater Than Or Equal To 
- timeRedeemed StringLess Than 
- id string
- The provider-assigned unique ID for this managed resource.
- items
GetSubscription Redemption Item[] 
- The list of redemption summary.
- subscriptionId string
- tenancyId string
- timeRedeemed stringGreater Than Or Equal To 
- timeRedeemed stringLess Than 
- id str
- The provider-assigned unique ID for this managed resource.
- items
Sequence[GetSubscription Redemption Item] 
- The list of redemption summary.
- subscription_id str
- tenancy_id str
- time_redeemed_ strgreater_ than_ or_ equal_ to 
- time_redeemed_ strless_ than 
- id String
- The provider-assigned unique ID for this managed resource.
- items List<Property Map>
- The list of redemption summary.
- subscriptionId String
- tenancyId String
- timeRedeemed StringGreater Than Or Equal To 
- timeRedeemed StringLess Than 
Supporting Types
GetSubscriptionRedemptionItem   
- BaseRewards double
- It provides the redeemed rewards in base/subscription currency.
- FxRate double
- It provides the fxRate between invoice currency and subscription currency.
- InvoiceCurrency string
- The currency associated with invoice.
- InvoiceNumber string
- It provides the invoice number against the redemption.
- InvoiceTotal doubleAmount 
- It provides the invoice total amount of given redemption.
- RedeemedRewards double
- It provides the redeemed rewards in invoice currency.
- RedemptionCode string
- The redemption code used in the Billing Center during the reward redemption process.
- RedemptionEmail string
- It provides the redemption email id.
- TimeInvoiced string
- It provides the invoice date.
- TimeRedeemed string
- It provides redeem date.
- BaseRewards float64
- It provides the redeemed rewards in base/subscription currency.
- FxRate float64
- It provides the fxRate between invoice currency and subscription currency.
- InvoiceCurrency string
- The currency associated with invoice.
- InvoiceNumber string
- It provides the invoice number against the redemption.
- InvoiceTotal float64Amount 
- It provides the invoice total amount of given redemption.
- RedeemedRewards float64
- It provides the redeemed rewards in invoice currency.
- RedemptionCode string
- The redemption code used in the Billing Center during the reward redemption process.
- RedemptionEmail string
- It provides the redemption email id.
- TimeInvoiced string
- It provides the invoice date.
- TimeRedeemed string
- It provides redeem date.
- baseRewards Double
- It provides the redeemed rewards in base/subscription currency.
- fxRate Double
- It provides the fxRate between invoice currency and subscription currency.
- invoiceCurrency String
- The currency associated with invoice.
- invoiceNumber String
- It provides the invoice number against the redemption.
- invoiceTotal DoubleAmount 
- It provides the invoice total amount of given redemption.
- redeemedRewards Double
- It provides the redeemed rewards in invoice currency.
- redemptionCode String
- The redemption code used in the Billing Center during the reward redemption process.
- redemptionEmail String
- It provides the redemption email id.
- timeInvoiced String
- It provides the invoice date.
- timeRedeemed String
- It provides redeem date.
- baseRewards number
- It provides the redeemed rewards in base/subscription currency.
- fxRate number
- It provides the fxRate between invoice currency and subscription currency.
- invoiceCurrency string
- The currency associated with invoice.
- invoiceNumber string
- It provides the invoice number against the redemption.
- invoiceTotal numberAmount 
- It provides the invoice total amount of given redemption.
- redeemedRewards number
- It provides the redeemed rewards in invoice currency.
- redemptionCode string
- The redemption code used in the Billing Center during the reward redemption process.
- redemptionEmail string
- It provides the redemption email id.
- timeInvoiced string
- It provides the invoice date.
- timeRedeemed string
- It provides redeem date.
- base_rewards float
- It provides the redeemed rewards in base/subscription currency.
- fx_rate float
- It provides the fxRate between invoice currency and subscription currency.
- invoice_currency str
- The currency associated with invoice.
- invoice_number str
- It provides the invoice number against the redemption.
- invoice_total_ floatamount 
- It provides the invoice total amount of given redemption.
- redeemed_rewards float
- It provides the redeemed rewards in invoice currency.
- redemption_code str
- The redemption code used in the Billing Center during the reward redemption process.
- redemption_email str
- It provides the redemption email id.
- time_invoiced str
- It provides the invoice date.
- time_redeemed str
- It provides redeem date.
- baseRewards Number
- It provides the redeemed rewards in base/subscription currency.
- fxRate Number
- It provides the fxRate between invoice currency and subscription currency.
- invoiceCurrency String
- The currency associated with invoice.
- invoiceNumber String
- It provides the invoice number against the redemption.
- invoiceTotal NumberAmount 
- It provides the invoice total amount of given redemption.
- redeemedRewards Number
- It provides the redeemed rewards in invoice currency.
- redemptionCode String
- The redemption code used in the Billing Center during the reward redemption process.
- redemptionEmail String
- It provides the redemption email id.
- timeInvoiced String
- It provides the invoice date.
- timeRedeemed String
- It provides redeem date.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.