oci.MeteringComputation.Usage
Explore with Pulumi AI
This resource provides the Usage resource in Oracle Cloud Infrastructure Metering Computation service.
Returns usage for the given account.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testUsage = new oci.meteringcomputation.Usage("test_usage", {
    granularity: usageGranularity,
    tenantId: testTenant.id,
    timeUsageEnded: usageTimeUsageEnded,
    timeUsageStarted: usageTimeUsageStarted,
    compartmentDepth: usageCompartmentDepth,
    filter: usageFilter,
    forecast: {
        timeForecastEnded: usageForecastTimeForecastEnded,
        forecastType: usageForecastForecastType,
        timeForecastStarted: usageForecastTimeForecastStarted,
    },
    groupBies: usageGroupBy,
    groupByTags: [{
        key: usageGroupByTagKey,
        namespace: usageGroupByTagNamespace,
        value: usageGroupByTagValue,
    }],
    isAggregateByTime: usageIsAggregateByTime,
    queryType: usageQueryType,
});
import pulumi
import pulumi_oci as oci
test_usage = oci.metering_computation.Usage("test_usage",
    granularity=usage_granularity,
    tenant_id=test_tenant["id"],
    time_usage_ended=usage_time_usage_ended,
    time_usage_started=usage_time_usage_started,
    compartment_depth=usage_compartment_depth,
    filter=usage_filter,
    forecast={
        "time_forecast_ended": usage_forecast_time_forecast_ended,
        "forecast_type": usage_forecast_forecast_type,
        "time_forecast_started": usage_forecast_time_forecast_started,
    },
    group_bies=usage_group_by,
    group_by_tags=[{
        "key": usage_group_by_tag_key,
        "namespace": usage_group_by_tag_namespace,
        "value": usage_group_by_tag_value,
    }],
    is_aggregate_by_time=usage_is_aggregate_by_time,
    query_type=usage_query_type)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/meteringcomputation"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := meteringcomputation.NewUsage(ctx, "test_usage", &meteringcomputation.UsageArgs{
			Granularity:      pulumi.Any(usageGranularity),
			TenantId:         pulumi.Any(testTenant.Id),
			TimeUsageEnded:   pulumi.Any(usageTimeUsageEnded),
			TimeUsageStarted: pulumi.Any(usageTimeUsageStarted),
			CompartmentDepth: pulumi.Any(usageCompartmentDepth),
			Filter:           pulumi.Any(usageFilter),
			Forecast: &meteringcomputation.UsageForecastArgs{
				TimeForecastEnded:   pulumi.Any(usageForecastTimeForecastEnded),
				ForecastType:        pulumi.Any(usageForecastForecastType),
				TimeForecastStarted: pulumi.Any(usageForecastTimeForecastStarted),
			},
			GroupBies: pulumi.Any(usageGroupBy),
			GroupByTags: meteringcomputation.UsageGroupByTagArray{
				&meteringcomputation.UsageGroupByTagArgs{
					Key:       pulumi.Any(usageGroupByTagKey),
					Namespace: pulumi.Any(usageGroupByTagNamespace),
					Value:     pulumi.Any(usageGroupByTagValue),
				},
			},
			IsAggregateByTime: pulumi.Any(usageIsAggregateByTime),
			QueryType:         pulumi.Any(usageQueryType),
		})
		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 testUsage = new Oci.MeteringComputation.Usage("test_usage", new()
    {
        Granularity = usageGranularity,
        TenantId = testTenant.Id,
        TimeUsageEnded = usageTimeUsageEnded,
        TimeUsageStarted = usageTimeUsageStarted,
        CompartmentDepth = usageCompartmentDepth,
        Filter = usageFilter,
        Forecast = new Oci.MeteringComputation.Inputs.UsageForecastArgs
        {
            TimeForecastEnded = usageForecastTimeForecastEnded,
            ForecastType = usageForecastForecastType,
            TimeForecastStarted = usageForecastTimeForecastStarted,
        },
        GroupBies = usageGroupBy,
        GroupByTags = new[]
        {
            new Oci.MeteringComputation.Inputs.UsageGroupByTagArgs
            {
                Key = usageGroupByTagKey,
                Namespace = usageGroupByTagNamespace,
                Value = usageGroupByTagValue,
            },
        },
        IsAggregateByTime = usageIsAggregateByTime,
        QueryType = usageQueryType,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.MeteringComputation.Usage;
import com.pulumi.oci.MeteringComputation.UsageArgs;
import com.pulumi.oci.MeteringComputation.inputs.UsageForecastArgs;
import com.pulumi.oci.MeteringComputation.inputs.UsageGroupByTagArgs;
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) {
        var testUsage = new Usage("testUsage", UsageArgs.builder()
            .granularity(usageGranularity)
            .tenantId(testTenant.id())
            .timeUsageEnded(usageTimeUsageEnded)
            .timeUsageStarted(usageTimeUsageStarted)
            .compartmentDepth(usageCompartmentDepth)
            .filter(usageFilter)
            .forecast(UsageForecastArgs.builder()
                .timeForecastEnded(usageForecastTimeForecastEnded)
                .forecastType(usageForecastForecastType)
                .timeForecastStarted(usageForecastTimeForecastStarted)
                .build())
            .groupBies(usageGroupBy)
            .groupByTags(UsageGroupByTagArgs.builder()
                .key(usageGroupByTagKey)
                .namespace(usageGroupByTagNamespace)
                .value(usageGroupByTagValue)
                .build())
            .isAggregateByTime(usageIsAggregateByTime)
            .queryType(usageQueryType)
            .build());
    }
}
resources:
  testUsage:
    type: oci:MeteringComputation:Usage
    name: test_usage
    properties:
      granularity: ${usageGranularity}
      tenantId: ${testTenant.id}
      timeUsageEnded: ${usageTimeUsageEnded}
      timeUsageStarted: ${usageTimeUsageStarted}
      compartmentDepth: ${usageCompartmentDepth}
      filter: ${usageFilter}
      forecast:
        timeForecastEnded: ${usageForecastTimeForecastEnded}
        forecastType: ${usageForecastForecastType}
        timeForecastStarted: ${usageForecastTimeForecastStarted}
      groupBies: ${usageGroupBy}
      groupByTags:
        - key: ${usageGroupByTagKey}
          namespace: ${usageGroupByTagNamespace}
          value: ${usageGroupByTagValue}
      isAggregateByTime: ${usageIsAggregateByTime}
      queryType: ${usageQueryType}
Create Usage Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Usage(name: string, args: UsageArgs, opts?: CustomResourceOptions);@overload
def Usage(resource_name: str,
          args: UsageArgs,
          opts: Optional[ResourceOptions] = None)
@overload
def Usage(resource_name: str,
          opts: Optional[ResourceOptions] = None,
          granularity: Optional[str] = None,
          tenant_id: Optional[str] = None,
          time_usage_ended: Optional[str] = None,
          time_usage_started: Optional[str] = None,
          compartment_depth: Optional[float] = None,
          filter: Optional[str] = None,
          forecast: Optional[UsageForecastArgs] = None,
          group_bies: Optional[Sequence[str]] = None,
          group_by_tags: Optional[Sequence[UsageGroupByTagArgs]] = None,
          is_aggregate_by_time: Optional[bool] = None,
          query_type: Optional[str] = None)func NewUsage(ctx *Context, name string, args UsageArgs, opts ...ResourceOption) (*Usage, error)public Usage(string name, UsageArgs args, CustomResourceOptions? opts = null)type: oci:MeteringComputation:Usage
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args UsageArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args UsageArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args UsageArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args UsageArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args UsageArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var usageResource = new Oci.MeteringComputation.Usage("usageResource", new()
{
    Granularity = "string",
    TenantId = "string",
    TimeUsageEnded = "string",
    TimeUsageStarted = "string",
    CompartmentDepth = 0,
    Filter = "string",
    Forecast = new Oci.MeteringComputation.Inputs.UsageForecastArgs
    {
        TimeForecastEnded = "string",
        ForecastType = "string",
        TimeForecastStarted = "string",
    },
    GroupBies = new[]
    {
        "string",
    },
    GroupByTags = new[]
    {
        new Oci.MeteringComputation.Inputs.UsageGroupByTagArgs
        {
            Key = "string",
            Namespace = "string",
            Value = "string",
        },
    },
    IsAggregateByTime = false,
    QueryType = "string",
});
example, err := meteringcomputation.NewUsage(ctx, "usageResource", &meteringcomputation.UsageArgs{
	Granularity:      pulumi.String("string"),
	TenantId:         pulumi.String("string"),
	TimeUsageEnded:   pulumi.String("string"),
	TimeUsageStarted: pulumi.String("string"),
	CompartmentDepth: pulumi.Float64(0),
	Filter:           pulumi.String("string"),
	Forecast: &meteringcomputation.UsageForecastArgs{
		TimeForecastEnded:   pulumi.String("string"),
		ForecastType:        pulumi.String("string"),
		TimeForecastStarted: pulumi.String("string"),
	},
	GroupBies: pulumi.StringArray{
		pulumi.String("string"),
	},
	GroupByTags: meteringcomputation.UsageGroupByTagArray{
		&meteringcomputation.UsageGroupByTagArgs{
			Key:       pulumi.String("string"),
			Namespace: pulumi.String("string"),
			Value:     pulumi.String("string"),
		},
	},
	IsAggregateByTime: pulumi.Bool(false),
	QueryType:         pulumi.String("string"),
})
var usageResource = new Usage("usageResource", UsageArgs.builder()
    .granularity("string")
    .tenantId("string")
    .timeUsageEnded("string")
    .timeUsageStarted("string")
    .compartmentDepth(0.0)
    .filter("string")
    .forecast(UsageForecastArgs.builder()
        .timeForecastEnded("string")
        .forecastType("string")
        .timeForecastStarted("string")
        .build())
    .groupBies("string")
    .groupByTags(UsageGroupByTagArgs.builder()
        .key("string")
        .namespace("string")
        .value("string")
        .build())
    .isAggregateByTime(false)
    .queryType("string")
    .build());
usage_resource = oci.metering_computation.Usage("usageResource",
    granularity="string",
    tenant_id="string",
    time_usage_ended="string",
    time_usage_started="string",
    compartment_depth=0,
    filter="string",
    forecast={
        "time_forecast_ended": "string",
        "forecast_type": "string",
        "time_forecast_started": "string",
    },
    group_bies=["string"],
    group_by_tags=[{
        "key": "string",
        "namespace": "string",
        "value": "string",
    }],
    is_aggregate_by_time=False,
    query_type="string")
const usageResource = new oci.meteringcomputation.Usage("usageResource", {
    granularity: "string",
    tenantId: "string",
    timeUsageEnded: "string",
    timeUsageStarted: "string",
    compartmentDepth: 0,
    filter: "string",
    forecast: {
        timeForecastEnded: "string",
        forecastType: "string",
        timeForecastStarted: "string",
    },
    groupBies: ["string"],
    groupByTags: [{
        key: "string",
        namespace: "string",
        value: "string",
    }],
    isAggregateByTime: false,
    queryType: "string",
});
type: oci:MeteringComputation:Usage
properties:
    compartmentDepth: 0
    filter: string
    forecast:
        forecastType: string
        timeForecastEnded: string
        timeForecastStarted: string
    granularity: string
    groupBies:
        - string
    groupByTags:
        - key: string
          namespace: string
          value: string
    isAggregateByTime: false
    queryType: string
    tenantId: string
    timeUsageEnded: string
    timeUsageStarted: string
Usage Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Usage resource accepts the following input properties:
- Granularity string
- The usage granularity. HOURLY - Hourly data aggregation. DAILY - Daily data aggregation. MONTHLY - Monthly data aggregation. TOTAL - Not yet supported.
- TenantId string
- Tenant ID.
- TimeUsage stringEnded 
- The usage end time.
- TimeUsage stringStarted 
- The usage start time. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- CompartmentDepth double
- The compartment depth level.
- Filter string
- The filter object for query usage.
- Forecast
UsageForecast 
- Forecast configuration of usage/cost.
- GroupBies List<string>
- Aggregate the result by. example: ["tagNamespace", "tagKey", "tagValue", "service", "skuName", "skuPartNumber", "unit", "compartmentName", "compartmentPath", "compartmentId", "platform", "region", "logicalAd", "resourceId", "tenantId", "tenantName"]
- 
List<UsageGroup By Tag> 
- GroupBy a specific tagKey. Provide the tagNamespace and tagKey in the tag object. Only supports one tag in the list. For example: [{"namespace":"oracle", "key":"createdBy"]
- IsAggregate boolBy Time 
- Whether aggregated by time. If isAggregateByTime is true, all usage/cost over the query time period will be added up.
- QueryType string
- The query usage type. COST by default if it is missing. Usage - Query the usage data. Cost - Query the cost/billing data. Credit - Query the credit adjustments data. ExpiredCredit - Query the expired credits data. AllCredit - Query the credit adjustments and expired credit.
- Granularity string
- The usage granularity. HOURLY - Hourly data aggregation. DAILY - Daily data aggregation. MONTHLY - Monthly data aggregation. TOTAL - Not yet supported.
- TenantId string
- Tenant ID.
- TimeUsage stringEnded 
- The usage end time.
- TimeUsage stringStarted 
- The usage start time. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- CompartmentDepth float64
- The compartment depth level.
- Filter string
- The filter object for query usage.
- Forecast
UsageForecast Args 
- Forecast configuration of usage/cost.
- GroupBies []string
- Aggregate the result by. example: ["tagNamespace", "tagKey", "tagValue", "service", "skuName", "skuPartNumber", "unit", "compartmentName", "compartmentPath", "compartmentId", "platform", "region", "logicalAd", "resourceId", "tenantId", "tenantName"]
- 
[]UsageGroup By Tag Args 
- GroupBy a specific tagKey. Provide the tagNamespace and tagKey in the tag object. Only supports one tag in the list. For example: [{"namespace":"oracle", "key":"createdBy"]
- IsAggregate boolBy Time 
- Whether aggregated by time. If isAggregateByTime is true, all usage/cost over the query time period will be added up.
- QueryType string
- The query usage type. COST by default if it is missing. Usage - Query the usage data. Cost - Query the cost/billing data. Credit - Query the credit adjustments data. ExpiredCredit - Query the expired credits data. AllCredit - Query the credit adjustments and expired credit.
- granularity String
- The usage granularity. HOURLY - Hourly data aggregation. DAILY - Daily data aggregation. MONTHLY - Monthly data aggregation. TOTAL - Not yet supported.
- tenantId String
- Tenant ID.
- timeUsage StringEnded 
- The usage end time.
- timeUsage StringStarted 
- The usage start time. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- compartmentDepth Double
- The compartment depth level.
- filter String
- The filter object for query usage.
- forecast
UsageForecast 
- Forecast configuration of usage/cost.
- groupBies List<String>
- Aggregate the result by. example: ["tagNamespace", "tagKey", "tagValue", "service", "skuName", "skuPartNumber", "unit", "compartmentName", "compartmentPath", "compartmentId", "platform", "region", "logicalAd", "resourceId", "tenantId", "tenantName"]
- 
List<UsageGroup By Tag> 
- GroupBy a specific tagKey. Provide the tagNamespace and tagKey in the tag object. Only supports one tag in the list. For example: [{"namespace":"oracle", "key":"createdBy"]
- isAggregate BooleanBy Time 
- Whether aggregated by time. If isAggregateByTime is true, all usage/cost over the query time period will be added up.
- queryType String
- The query usage type. COST by default if it is missing. Usage - Query the usage data. Cost - Query the cost/billing data. Credit - Query the credit adjustments data. ExpiredCredit - Query the expired credits data. AllCredit - Query the credit adjustments and expired credit.
- granularity string
- The usage granularity. HOURLY - Hourly data aggregation. DAILY - Daily data aggregation. MONTHLY - Monthly data aggregation. TOTAL - Not yet supported.
- tenantId string
- Tenant ID.
- timeUsage stringEnded 
- The usage end time.
- timeUsage stringStarted 
- The usage start time. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- compartmentDepth number
- The compartment depth level.
- filter string
- The filter object for query usage.
- forecast
UsageForecast 
- Forecast configuration of usage/cost.
- groupBies string[]
- Aggregate the result by. example: ["tagNamespace", "tagKey", "tagValue", "service", "skuName", "skuPartNumber", "unit", "compartmentName", "compartmentPath", "compartmentId", "platform", "region", "logicalAd", "resourceId", "tenantId", "tenantName"]
- 
UsageGroup By Tag[] 
- GroupBy a specific tagKey. Provide the tagNamespace and tagKey in the tag object. Only supports one tag in the list. For example: [{"namespace":"oracle", "key":"createdBy"]
- isAggregate booleanBy Time 
- Whether aggregated by time. If isAggregateByTime is true, all usage/cost over the query time period will be added up.
- queryType string
- The query usage type. COST by default if it is missing. Usage - Query the usage data. Cost - Query the cost/billing data. Credit - Query the credit adjustments data. ExpiredCredit - Query the expired credits data. AllCredit - Query the credit adjustments and expired credit.
- granularity str
- The usage granularity. HOURLY - Hourly data aggregation. DAILY - Daily data aggregation. MONTHLY - Monthly data aggregation. TOTAL - Not yet supported.
- tenant_id str
- Tenant ID.
- time_usage_ strended 
- The usage end time.
- time_usage_ strstarted 
- The usage start time. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- compartment_depth float
- The compartment depth level.
- filter str
- The filter object for query usage.
- forecast
UsageForecast Args 
- Forecast configuration of usage/cost.
- group_bies Sequence[str]
- Aggregate the result by. example: ["tagNamespace", "tagKey", "tagValue", "service", "skuName", "skuPartNumber", "unit", "compartmentName", "compartmentPath", "compartmentId", "platform", "region", "logicalAd", "resourceId", "tenantId", "tenantName"]
- 
Sequence[UsageGroup By Tag Args] 
- GroupBy a specific tagKey. Provide the tagNamespace and tagKey in the tag object. Only supports one tag in the list. For example: [{"namespace":"oracle", "key":"createdBy"]
- is_aggregate_ boolby_ time 
- Whether aggregated by time. If isAggregateByTime is true, all usage/cost over the query time period will be added up.
- query_type str
- The query usage type. COST by default if it is missing. Usage - Query the usage data. Cost - Query the cost/billing data. Credit - Query the credit adjustments data. ExpiredCredit - Query the expired credits data. AllCredit - Query the credit adjustments and expired credit.
- granularity String
- The usage granularity. HOURLY - Hourly data aggregation. DAILY - Daily data aggregation. MONTHLY - Monthly data aggregation. TOTAL - Not yet supported.
- tenantId String
- Tenant ID.
- timeUsage StringEnded 
- The usage end time.
- timeUsage StringStarted 
- The usage start time. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- compartmentDepth Number
- The compartment depth level.
- filter String
- The filter object for query usage.
- forecast Property Map
- Forecast configuration of usage/cost.
- groupBies List<String>
- Aggregate the result by. example: ["tagNamespace", "tagKey", "tagValue", "service", "skuName", "skuPartNumber", "unit", "compartmentName", "compartmentPath", "compartmentId", "platform", "region", "logicalAd", "resourceId", "tenantId", "tenantName"]
- List<Property Map>
- GroupBy a specific tagKey. Provide the tagNamespace and tagKey in the tag object. Only supports one tag in the list. For example: [{"namespace":"oracle", "key":"createdBy"]
- isAggregate BooleanBy Time 
- Whether aggregated by time. If isAggregateByTime is true, all usage/cost over the query time period will be added up.
- queryType String
- The query usage type. COST by default if it is missing. Usage - Query the usage data. Cost - Query the cost/billing data. Credit - Query the credit adjustments data. ExpiredCredit - Query the expired credits data. AllCredit - Query the credit adjustments and expired credit.
Outputs
All input properties are implicitly available as output properties. Additionally, the Usage resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
List<UsageItem> 
- A list of usage items.
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
[]UsageItem 
- A list of usage items.
- id String
- The provider-assigned unique ID for this managed resource.
- items
List<UsageItem> 
- A list of usage items.
- id string
- The provider-assigned unique ID for this managed resource.
- items
UsageItem[] 
- A list of usage items.
- id str
- The provider-assigned unique ID for this managed resource.
- items
Sequence[UsageItem] 
- A list of usage items.
- id String
- The provider-assigned unique ID for this managed resource.
- items List<Property Map>
- A list of usage items.
Look up Existing Usage Resource
Get an existing Usage resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: UsageState, opts?: CustomResourceOptions): Usage@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        compartment_depth: Optional[float] = None,
        filter: Optional[str] = None,
        forecast: Optional[UsageForecastArgs] = None,
        granularity: Optional[str] = None,
        group_bies: Optional[Sequence[str]] = None,
        group_by_tags: Optional[Sequence[UsageGroupByTagArgs]] = None,
        is_aggregate_by_time: Optional[bool] = None,
        items: Optional[Sequence[UsageItemArgs]] = None,
        query_type: Optional[str] = None,
        tenant_id: Optional[str] = None,
        time_usage_ended: Optional[str] = None,
        time_usage_started: Optional[str] = None) -> Usagefunc GetUsage(ctx *Context, name string, id IDInput, state *UsageState, opts ...ResourceOption) (*Usage, error)public static Usage Get(string name, Input<string> id, UsageState? state, CustomResourceOptions? opts = null)public static Usage get(String name, Output<String> id, UsageState state, CustomResourceOptions options)resources:  _:    type: oci:MeteringComputation:Usage    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- CompartmentDepth double
- The compartment depth level.
- Filter string
- The filter object for query usage.
- Forecast
UsageForecast 
- Forecast configuration of usage/cost.
- Granularity string
- The usage granularity. HOURLY - Hourly data aggregation. DAILY - Daily data aggregation. MONTHLY - Monthly data aggregation. TOTAL - Not yet supported.
- GroupBies List<string>
- Aggregate the result by. example: ["tagNamespace", "tagKey", "tagValue", "service", "skuName", "skuPartNumber", "unit", "compartmentName", "compartmentPath", "compartmentId", "platform", "region", "logicalAd", "resourceId", "tenantId", "tenantName"]
- 
List<UsageGroup By Tag> 
- GroupBy a specific tagKey. Provide the tagNamespace and tagKey in the tag object. Only supports one tag in the list. For example: [{"namespace":"oracle", "key":"createdBy"]
- IsAggregate boolBy Time 
- Whether aggregated by time. If isAggregateByTime is true, all usage/cost over the query time period will be added up.
- Items
List<UsageItem> 
- A list of usage items.
- QueryType string
- The query usage type. COST by default if it is missing. Usage - Query the usage data. Cost - Query the cost/billing data. Credit - Query the credit adjustments data. ExpiredCredit - Query the expired credits data. AllCredit - Query the credit adjustments and expired credit.
- TenantId string
- Tenant ID.
- TimeUsage stringEnded 
- The usage end time.
- TimeUsage stringStarted 
- The usage start time. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- CompartmentDepth float64
- The compartment depth level.
- Filter string
- The filter object for query usage.
- Forecast
UsageForecast Args 
- Forecast configuration of usage/cost.
- Granularity string
- The usage granularity. HOURLY - Hourly data aggregation. DAILY - Daily data aggregation. MONTHLY - Monthly data aggregation. TOTAL - Not yet supported.
- GroupBies []string
- Aggregate the result by. example: ["tagNamespace", "tagKey", "tagValue", "service", "skuName", "skuPartNumber", "unit", "compartmentName", "compartmentPath", "compartmentId", "platform", "region", "logicalAd", "resourceId", "tenantId", "tenantName"]
- 
[]UsageGroup By Tag Args 
- GroupBy a specific tagKey. Provide the tagNamespace and tagKey in the tag object. Only supports one tag in the list. For example: [{"namespace":"oracle", "key":"createdBy"]
- IsAggregate boolBy Time 
- Whether aggregated by time. If isAggregateByTime is true, all usage/cost over the query time period will be added up.
- Items
[]UsageItem Args 
- A list of usage items.
- QueryType string
- The query usage type. COST by default if it is missing. Usage - Query the usage data. Cost - Query the cost/billing data. Credit - Query the credit adjustments data. ExpiredCredit - Query the expired credits data. AllCredit - Query the credit adjustments and expired credit.
- TenantId string
- Tenant ID.
- TimeUsage stringEnded 
- The usage end time.
- TimeUsage stringStarted 
- The usage start time. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- compartmentDepth Double
- The compartment depth level.
- filter String
- The filter object for query usage.
- forecast
UsageForecast 
- Forecast configuration of usage/cost.
- granularity String
- The usage granularity. HOURLY - Hourly data aggregation. DAILY - Daily data aggregation. MONTHLY - Monthly data aggregation. TOTAL - Not yet supported.
- groupBies List<String>
- Aggregate the result by. example: ["tagNamespace", "tagKey", "tagValue", "service", "skuName", "skuPartNumber", "unit", "compartmentName", "compartmentPath", "compartmentId", "platform", "region", "logicalAd", "resourceId", "tenantId", "tenantName"]
- 
List<UsageGroup By Tag> 
- GroupBy a specific tagKey. Provide the tagNamespace and tagKey in the tag object. Only supports one tag in the list. For example: [{"namespace":"oracle", "key":"createdBy"]
- isAggregate BooleanBy Time 
- Whether aggregated by time. If isAggregateByTime is true, all usage/cost over the query time period will be added up.
- items
List<UsageItem> 
- A list of usage items.
- queryType String
- The query usage type. COST by default if it is missing. Usage - Query the usage data. Cost - Query the cost/billing data. Credit - Query the credit adjustments data. ExpiredCredit - Query the expired credits data. AllCredit - Query the credit adjustments and expired credit.
- tenantId String
- Tenant ID.
- timeUsage StringEnded 
- The usage end time.
- timeUsage StringStarted 
- The usage start time. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- compartmentDepth number
- The compartment depth level.
- filter string
- The filter object for query usage.
- forecast
UsageForecast 
- Forecast configuration of usage/cost.
- granularity string
- The usage granularity. HOURLY - Hourly data aggregation. DAILY - Daily data aggregation. MONTHLY - Monthly data aggregation. TOTAL - Not yet supported.
- groupBies string[]
- Aggregate the result by. example: ["tagNamespace", "tagKey", "tagValue", "service", "skuName", "skuPartNumber", "unit", "compartmentName", "compartmentPath", "compartmentId", "platform", "region", "logicalAd", "resourceId", "tenantId", "tenantName"]
- 
UsageGroup By Tag[] 
- GroupBy a specific tagKey. Provide the tagNamespace and tagKey in the tag object. Only supports one tag in the list. For example: [{"namespace":"oracle", "key":"createdBy"]
- isAggregate booleanBy Time 
- Whether aggregated by time. If isAggregateByTime is true, all usage/cost over the query time period will be added up.
- items
UsageItem[] 
- A list of usage items.
- queryType string
- The query usage type. COST by default if it is missing. Usage - Query the usage data. Cost - Query the cost/billing data. Credit - Query the credit adjustments data. ExpiredCredit - Query the expired credits data. AllCredit - Query the credit adjustments and expired credit.
- tenantId string
- Tenant ID.
- timeUsage stringEnded 
- The usage end time.
- timeUsage stringStarted 
- The usage start time. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- compartment_depth float
- The compartment depth level.
- filter str
- The filter object for query usage.
- forecast
UsageForecast Args 
- Forecast configuration of usage/cost.
- granularity str
- The usage granularity. HOURLY - Hourly data aggregation. DAILY - Daily data aggregation. MONTHLY - Monthly data aggregation. TOTAL - Not yet supported.
- group_bies Sequence[str]
- Aggregate the result by. example: ["tagNamespace", "tagKey", "tagValue", "service", "skuName", "skuPartNumber", "unit", "compartmentName", "compartmentPath", "compartmentId", "platform", "region", "logicalAd", "resourceId", "tenantId", "tenantName"]
- 
Sequence[UsageGroup By Tag Args] 
- GroupBy a specific tagKey. Provide the tagNamespace and tagKey in the tag object. Only supports one tag in the list. For example: [{"namespace":"oracle", "key":"createdBy"]
- is_aggregate_ boolby_ time 
- Whether aggregated by time. If isAggregateByTime is true, all usage/cost over the query time period will be added up.
- items
Sequence[UsageItem Args] 
- A list of usage items.
- query_type str
- The query usage type. COST by default if it is missing. Usage - Query the usage data. Cost - Query the cost/billing data. Credit - Query the credit adjustments data. ExpiredCredit - Query the expired credits data. AllCredit - Query the credit adjustments and expired credit.
- tenant_id str
- Tenant ID.
- time_usage_ strended 
- The usage end time.
- time_usage_ strstarted 
- The usage start time. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- compartmentDepth Number
- The compartment depth level.
- filter String
- The filter object for query usage.
- forecast Property Map
- Forecast configuration of usage/cost.
- granularity String
- The usage granularity. HOURLY - Hourly data aggregation. DAILY - Daily data aggregation. MONTHLY - Monthly data aggregation. TOTAL - Not yet supported.
- groupBies List<String>
- Aggregate the result by. example: ["tagNamespace", "tagKey", "tagValue", "service", "skuName", "skuPartNumber", "unit", "compartmentName", "compartmentPath", "compartmentId", "platform", "region", "logicalAd", "resourceId", "tenantId", "tenantName"]
- List<Property Map>
- GroupBy a specific tagKey. Provide the tagNamespace and tagKey in the tag object. Only supports one tag in the list. For example: [{"namespace":"oracle", "key":"createdBy"]
- isAggregate BooleanBy Time 
- Whether aggregated by time. If isAggregateByTime is true, all usage/cost over the query time period will be added up.
- items List<Property Map>
- A list of usage items.
- queryType String
- The query usage type. COST by default if it is missing. Usage - Query the usage data. Cost - Query the cost/billing data. Credit - Query the credit adjustments data. ExpiredCredit - Query the expired credits data. AllCredit - Query the credit adjustments and expired credit.
- tenantId String
- Tenant ID.
- timeUsage StringEnded 
- The usage end time.
- timeUsage StringStarted 
- The usage start time. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
Supporting Types
UsageForecast, UsageForecastArgs    
- TimeForecast stringEnded 
- The forecast end time.
- ForecastType string
- BASIC uses the exponential smoothing (ETS) model to project future usage/costs based on history data. The basis for projections is a periodic set of equivalent historical days for which the projection is being made.
- TimeForecast stringStarted 
- The forecast start time. Defaults to UTC-1 if not specified.
- TimeForecast stringEnded 
- The forecast end time.
- ForecastType string
- BASIC uses the exponential smoothing (ETS) model to project future usage/costs based on history data. The basis for projections is a periodic set of equivalent historical days for which the projection is being made.
- TimeForecast stringStarted 
- The forecast start time. Defaults to UTC-1 if not specified.
- timeForecast StringEnded 
- The forecast end time.
- forecastType String
- BASIC uses the exponential smoothing (ETS) model to project future usage/costs based on history data. The basis for projections is a periodic set of equivalent historical days for which the projection is being made.
- timeForecast StringStarted 
- The forecast start time. Defaults to UTC-1 if not specified.
- timeForecast stringEnded 
- The forecast end time.
- forecastType string
- BASIC uses the exponential smoothing (ETS) model to project future usage/costs based on history data. The basis for projections is a periodic set of equivalent historical days for which the projection is being made.
- timeForecast stringStarted 
- The forecast start time. Defaults to UTC-1 if not specified.
- time_forecast_ strended 
- The forecast end time.
- forecast_type str
- BASIC uses the exponential smoothing (ETS) model to project future usage/costs based on history data. The basis for projections is a periodic set of equivalent historical days for which the projection is being made.
- time_forecast_ strstarted 
- The forecast start time. Defaults to UTC-1 if not specified.
- timeForecast StringEnded 
- The forecast end time.
- forecastType String
- BASIC uses the exponential smoothing (ETS) model to project future usage/costs based on history data. The basis for projections is a periodic set of equivalent historical days for which the projection is being made.
- timeForecast StringStarted 
- The forecast start time. Defaults to UTC-1 if not specified.
UsageGroupByTag, UsageGroupByTagArgs        
UsageItem, UsageItemArgs    
- Ad string
- The availability domain of the usage.
- AttributedCost string
- The attributed cost with a max value of 9999999999.999999999999 and a minimum value of 0.
- AttributedUsage string
- The attributed usage with a max value of 9999999999.999999999999 and a minimum value of 0.
- CompartmentId string
- The compartment OCID.
- CompartmentName string
- The compartment name.
- CompartmentPath string
- The compartment path, starting from root.
- ComputedAmount double
- The computed cost.
- ComputedQuantity double
- The usage number.
- Currency string
- The price currency.
- Discount double
- The discretionary discount applied to the SKU.
- IsForecast bool
- The forecasted data.
- ListRate double
- The SKU list rate (not discount).
- Overage string
- The overage usage.
- OveragesFlag string
- The SPM OverageFlag.
- Platform string
- Platform for the cost.
- Region string
- The region of the usage.
- ResourceId string
- The resource OCID that is incurring the cost.
- ResourceName string
- The resource name that is incurring the cost.
- Service string
- The service name that is incurring the cost.
- Shape string
- The resource shape.
- SkuName string
- The SKU friendly name.
- SkuPart stringNumber 
- The SKU part number.
- SubscriptionId string
- The subscription ID.
- 
List<UsageItem Tag> 
- For grouping, a tag definition. For filtering, a definition and key.
- TenantId string
- Tenant ID.
- TenantName string
- The tenancy name.
- TimeUsage stringEnded 
- The usage end time.
- TimeUsage stringStarted 
- The usage start time. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- Unit string
- The usage unit.
- UnitPrice double
- The price per unit.
- Weight double
- The resource size being metered.
- Ad string
- The availability domain of the usage.
- AttributedCost string
- The attributed cost with a max value of 9999999999.999999999999 and a minimum value of 0.
- AttributedUsage string
- The attributed usage with a max value of 9999999999.999999999999 and a minimum value of 0.
- CompartmentId string
- The compartment OCID.
- CompartmentName string
- The compartment name.
- CompartmentPath string
- The compartment path, starting from root.
- ComputedAmount float64
- The computed cost.
- ComputedQuantity float64
- The usage number.
- Currency string
- The price currency.
- Discount float64
- The discretionary discount applied to the SKU.
- IsForecast bool
- The forecasted data.
- ListRate float64
- The SKU list rate (not discount).
- Overage string
- The overage usage.
- OveragesFlag string
- The SPM OverageFlag.
- Platform string
- Platform for the cost.
- Region string
- The region of the usage.
- ResourceId string
- The resource OCID that is incurring the cost.
- ResourceName string
- The resource name that is incurring the cost.
- Service string
- The service name that is incurring the cost.
- Shape string
- The resource shape.
- SkuName string
- The SKU friendly name.
- SkuPart stringNumber 
- The SKU part number.
- SubscriptionId string
- The subscription ID.
- 
[]UsageItem Tag 
- For grouping, a tag definition. For filtering, a definition and key.
- TenantId string
- Tenant ID.
- TenantName string
- The tenancy name.
- TimeUsage stringEnded 
- The usage end time.
- TimeUsage stringStarted 
- The usage start time. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- Unit string
- The usage unit.
- UnitPrice float64
- The price per unit.
- Weight float64
- The resource size being metered.
- ad String
- The availability domain of the usage.
- attributedCost String
- The attributed cost with a max value of 9999999999.999999999999 and a minimum value of 0.
- attributedUsage String
- The attributed usage with a max value of 9999999999.999999999999 and a minimum value of 0.
- compartmentId String
- The compartment OCID.
- compartmentName String
- The compartment name.
- compartmentPath String
- The compartment path, starting from root.
- computedAmount Double
- The computed cost.
- computedQuantity Double
- The usage number.
- currency String
- The price currency.
- discount Double
- The discretionary discount applied to the SKU.
- isForecast Boolean
- The forecasted data.
- listRate Double
- The SKU list rate (not discount).
- overage String
- The overage usage.
- overagesFlag String
- The SPM OverageFlag.
- platform String
- Platform for the cost.
- region String
- The region of the usage.
- resourceId String
- The resource OCID that is incurring the cost.
- resourceName String
- The resource name that is incurring the cost.
- service String
- The service name that is incurring the cost.
- shape String
- The resource shape.
- skuName String
- The SKU friendly name.
- skuPart StringNumber 
- The SKU part number.
- subscriptionId String
- The subscription ID.
- 
List<UsageItem Tag> 
- For grouping, a tag definition. For filtering, a definition and key.
- tenantId String
- Tenant ID.
- tenantName String
- The tenancy name.
- timeUsage StringEnded 
- The usage end time.
- timeUsage StringStarted 
- The usage start time. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- unit String
- The usage unit.
- unitPrice Double
- The price per unit.
- weight Double
- The resource size being metered.
- ad string
- The availability domain of the usage.
- attributedCost string
- The attributed cost with a max value of 9999999999.999999999999 and a minimum value of 0.
- attributedUsage string
- The attributed usage with a max value of 9999999999.999999999999 and a minimum value of 0.
- compartmentId string
- The compartment OCID.
- compartmentName string
- The compartment name.
- compartmentPath string
- The compartment path, starting from root.
- computedAmount number
- The computed cost.
- computedQuantity number
- The usage number.
- currency string
- The price currency.
- discount number
- The discretionary discount applied to the SKU.
- isForecast boolean
- The forecasted data.
- listRate number
- The SKU list rate (not discount).
- overage string
- The overage usage.
- overagesFlag string
- The SPM OverageFlag.
- platform string
- Platform for the cost.
- region string
- The region of the usage.
- resourceId string
- The resource OCID that is incurring the cost.
- resourceName string
- The resource name that is incurring the cost.
- service string
- The service name that is incurring the cost.
- shape string
- The resource shape.
- skuName string
- The SKU friendly name.
- skuPart stringNumber 
- The SKU part number.
- subscriptionId string
- The subscription ID.
- 
UsageItem Tag[] 
- For grouping, a tag definition. For filtering, a definition and key.
- tenantId string
- Tenant ID.
- tenantName string
- The tenancy name.
- timeUsage stringEnded 
- The usage end time.
- timeUsage stringStarted 
- The usage start time. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- unit string
- The usage unit.
- unitPrice number
- The price per unit.
- weight number
- The resource size being metered.
- ad str
- The availability domain of the usage.
- attributed_cost str
- The attributed cost with a max value of 9999999999.999999999999 and a minimum value of 0.
- attributed_usage str
- The attributed usage with a max value of 9999999999.999999999999 and a minimum value of 0.
- compartment_id str
- The compartment OCID.
- compartment_name str
- The compartment name.
- compartment_path str
- The compartment path, starting from root.
- computed_amount float
- The computed cost.
- computed_quantity float
- The usage number.
- currency str
- The price currency.
- discount float
- The discretionary discount applied to the SKU.
- is_forecast bool
- The forecasted data.
- list_rate float
- The SKU list rate (not discount).
- overage str
- The overage usage.
- overages_flag str
- The SPM OverageFlag.
- platform str
- Platform for the cost.
- region str
- The region of the usage.
- resource_id str
- The resource OCID that is incurring the cost.
- resource_name str
- The resource name that is incurring the cost.
- service str
- The service name that is incurring the cost.
- shape str
- The resource shape.
- sku_name str
- The SKU friendly name.
- sku_part_ strnumber 
- The SKU part number.
- subscription_id str
- The subscription ID.
- 
Sequence[UsageItem Tag] 
- For grouping, a tag definition. For filtering, a definition and key.
- tenant_id str
- Tenant ID.
- tenant_name str
- The tenancy name.
- time_usage_ strended 
- The usage end time.
- time_usage_ strstarted 
- The usage start time. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- unit str
- The usage unit.
- unit_price float
- The price per unit.
- weight float
- The resource size being metered.
- ad String
- The availability domain of the usage.
- attributedCost String
- The attributed cost with a max value of 9999999999.999999999999 and a minimum value of 0.
- attributedUsage String
- The attributed usage with a max value of 9999999999.999999999999 and a minimum value of 0.
- compartmentId String
- The compartment OCID.
- compartmentName String
- The compartment name.
- compartmentPath String
- The compartment path, starting from root.
- computedAmount Number
- The computed cost.
- computedQuantity Number
- The usage number.
- currency String
- The price currency.
- discount Number
- The discretionary discount applied to the SKU.
- isForecast Boolean
- The forecasted data.
- listRate Number
- The SKU list rate (not discount).
- overage String
- The overage usage.
- overagesFlag String
- The SPM OverageFlag.
- platform String
- Platform for the cost.
- region String
- The region of the usage.
- resourceId String
- The resource OCID that is incurring the cost.
- resourceName String
- The resource name that is incurring the cost.
- service String
- The service name that is incurring the cost.
- shape String
- The resource shape.
- skuName String
- The SKU friendly name.
- skuPart StringNumber 
- The SKU part number.
- subscriptionId String
- The subscription ID.
- List<Property Map>
- For grouping, a tag definition. For filtering, a definition and key.
- tenantId String
- Tenant ID.
- tenantName String
- The tenancy name.
- timeUsage StringEnded 
- The usage end time.
- timeUsage StringStarted 
- The usage start time. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- unit String
- The usage unit.
- unitPrice Number
- The price per unit.
- weight Number
- The resource size being metered.
UsageItemTag, UsageItemTagArgs      
Import
Import is not supported for this resource.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.