oci.MeteringComputation.Query
Explore with Pulumi AI
This resource provides the Query resource in Oracle Cloud Infrastructure Metering Computation service.
Returns the created query.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testQuery = new oci.meteringcomputation.Query("test_query", {
compartmentId: compartmentId,
queryDefinition: {
costAnalysisUi: {
graph: queryQueryDefinitionCostAnalysisUiGraph,
isCumulativeGraph: queryQueryDefinitionCostAnalysisUiIsCumulativeGraph,
},
displayName: queryQueryDefinitionDisplayName,
reportQuery: {
granularity: queryQueryDefinitionReportQueryGranularity,
tenantId: testTenant.id,
compartmentDepth: queryQueryDefinitionReportQueryCompartmentDepth,
dateRangeName: queryQueryDefinitionReportQueryDateRangeName,
filter: queryQueryDefinitionReportQueryFilter,
forecast: {
timeForecastEnded: queryQueryDefinitionReportQueryForecastTimeForecastEnded,
forecastType: queryQueryDefinitionReportQueryForecastForecastType,
timeForecastStarted: queryQueryDefinitionReportQueryForecastTimeForecastStarted,
},
groupBies: queryQueryDefinitionReportQueryGroupBy,
groupByTags: [{
key: queryQueryDefinitionReportQueryGroupByTagKey,
namespace: queryQueryDefinitionReportQueryGroupByTagNamespace,
value: queryQueryDefinitionReportQueryGroupByTagValue,
}],
isAggregateByTime: queryQueryDefinitionReportQueryIsAggregateByTime,
queryType: queryQueryDefinitionReportQueryQueryType,
timeUsageEnded: queryQueryDefinitionReportQueryTimeUsageEnded,
timeUsageStarted: queryQueryDefinitionReportQueryTimeUsageStarted,
},
version: queryQueryDefinitionVersion,
},
});
import pulumi
import pulumi_oci as oci
test_query = oci.metering_computation.Query("test_query",
compartment_id=compartment_id,
query_definition={
"cost_analysis_ui": {
"graph": query_query_definition_cost_analysis_ui_graph,
"is_cumulative_graph": query_query_definition_cost_analysis_ui_is_cumulative_graph,
},
"display_name": query_query_definition_display_name,
"report_query": {
"granularity": query_query_definition_report_query_granularity,
"tenant_id": test_tenant["id"],
"compartment_depth": query_query_definition_report_query_compartment_depth,
"date_range_name": query_query_definition_report_query_date_range_name,
"filter": query_query_definition_report_query_filter,
"forecast": {
"time_forecast_ended": query_query_definition_report_query_forecast_time_forecast_ended,
"forecast_type": query_query_definition_report_query_forecast_forecast_type,
"time_forecast_started": query_query_definition_report_query_forecast_time_forecast_started,
},
"group_bies": query_query_definition_report_query_group_by,
"group_by_tags": [{
"key": query_query_definition_report_query_group_by_tag_key,
"namespace": query_query_definition_report_query_group_by_tag_namespace,
"value": query_query_definition_report_query_group_by_tag_value,
}],
"is_aggregate_by_time": query_query_definition_report_query_is_aggregate_by_time,
"query_type": query_query_definition_report_query_query_type,
"time_usage_ended": query_query_definition_report_query_time_usage_ended,
"time_usage_started": query_query_definition_report_query_time_usage_started,
},
"version": query_query_definition_version,
})
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.NewQuery(ctx, "test_query", &MeteringComputation.QueryArgs{
CompartmentId: pulumi.Any(compartmentId),
QueryDefinition: &meteringcomputation.QueryQueryDefinitionArgs{
CostAnalysisUi: &meteringcomputation.QueryQueryDefinitionCostAnalysisUiArgs{
Graph: pulumi.Any(queryQueryDefinitionCostAnalysisUiGraph),
IsCumulativeGraph: pulumi.Any(queryQueryDefinitionCostAnalysisUiIsCumulativeGraph),
},
DisplayName: pulumi.Any(queryQueryDefinitionDisplayName),
ReportQuery: &meteringcomputation.QueryQueryDefinitionReportQueryArgs{
Granularity: pulumi.Any(queryQueryDefinitionReportQueryGranularity),
TenantId: pulumi.Any(testTenant.Id),
CompartmentDepth: pulumi.Any(queryQueryDefinitionReportQueryCompartmentDepth),
DateRangeName: pulumi.Any(queryQueryDefinitionReportQueryDateRangeName),
Filter: pulumi.Any(queryQueryDefinitionReportQueryFilter),
Forecast: &meteringcomputation.QueryQueryDefinitionReportQueryForecastArgs{
TimeForecastEnded: pulumi.Any(queryQueryDefinitionReportQueryForecastTimeForecastEnded),
ForecastType: pulumi.Any(queryQueryDefinitionReportQueryForecastForecastType),
TimeForecastStarted: pulumi.Any(queryQueryDefinitionReportQueryForecastTimeForecastStarted),
},
GroupBies: pulumi.Any(queryQueryDefinitionReportQueryGroupBy),
GroupByTags: meteringcomputation.QueryQueryDefinitionReportQueryGroupByTagArray{
&meteringcomputation.QueryQueryDefinitionReportQueryGroupByTagArgs{
Key: pulumi.Any(queryQueryDefinitionReportQueryGroupByTagKey),
Namespace: pulumi.Any(queryQueryDefinitionReportQueryGroupByTagNamespace),
Value: pulumi.Any(queryQueryDefinitionReportQueryGroupByTagValue),
},
},
IsAggregateByTime: pulumi.Any(queryQueryDefinitionReportQueryIsAggregateByTime),
QueryType: pulumi.Any(queryQueryDefinitionReportQueryQueryType),
TimeUsageEnded: pulumi.Any(queryQueryDefinitionReportQueryTimeUsageEnded),
TimeUsageStarted: pulumi.Any(queryQueryDefinitionReportQueryTimeUsageStarted),
},
Version: pulumi.Any(queryQueryDefinitionVersion),
},
})
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 testQuery = new Oci.MeteringComputation.Query("test_query", new()
{
CompartmentId = compartmentId,
QueryDefinition = new Oci.MeteringComputation.Inputs.QueryQueryDefinitionArgs
{
CostAnalysisUi = new Oci.MeteringComputation.Inputs.QueryQueryDefinitionCostAnalysisUiArgs
{
Graph = queryQueryDefinitionCostAnalysisUiGraph,
IsCumulativeGraph = queryQueryDefinitionCostAnalysisUiIsCumulativeGraph,
},
DisplayName = queryQueryDefinitionDisplayName,
ReportQuery = new Oci.MeteringComputation.Inputs.QueryQueryDefinitionReportQueryArgs
{
Granularity = queryQueryDefinitionReportQueryGranularity,
TenantId = testTenant.Id,
CompartmentDepth = queryQueryDefinitionReportQueryCompartmentDepth,
DateRangeName = queryQueryDefinitionReportQueryDateRangeName,
Filter = queryQueryDefinitionReportQueryFilter,
Forecast = new Oci.MeteringComputation.Inputs.QueryQueryDefinitionReportQueryForecastArgs
{
TimeForecastEnded = queryQueryDefinitionReportQueryForecastTimeForecastEnded,
ForecastType = queryQueryDefinitionReportQueryForecastForecastType,
TimeForecastStarted = queryQueryDefinitionReportQueryForecastTimeForecastStarted,
},
GroupBies = queryQueryDefinitionReportQueryGroupBy,
GroupByTags = new[]
{
new Oci.MeteringComputation.Inputs.QueryQueryDefinitionReportQueryGroupByTagArgs
{
Key = queryQueryDefinitionReportQueryGroupByTagKey,
Namespace = queryQueryDefinitionReportQueryGroupByTagNamespace,
Value = queryQueryDefinitionReportQueryGroupByTagValue,
},
},
IsAggregateByTime = queryQueryDefinitionReportQueryIsAggregateByTime,
QueryType = queryQueryDefinitionReportQueryQueryType,
TimeUsageEnded = queryQueryDefinitionReportQueryTimeUsageEnded,
TimeUsageStarted = queryQueryDefinitionReportQueryTimeUsageStarted,
},
Version = queryQueryDefinitionVersion,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.MeteringComputation.Query;
import com.pulumi.oci.MeteringComputation.QueryArgs;
import com.pulumi.oci.MeteringComputation.inputs.QueryQueryDefinitionArgs;
import com.pulumi.oci.MeteringComputation.inputs.QueryQueryDefinitionCostAnalysisUiArgs;
import com.pulumi.oci.MeteringComputation.inputs.QueryQueryDefinitionReportQueryArgs;
import com.pulumi.oci.MeteringComputation.inputs.QueryQueryDefinitionReportQueryForecastArgs;
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 testQuery = new Query("testQuery", QueryArgs.builder()
.compartmentId(compartmentId)
.queryDefinition(QueryQueryDefinitionArgs.builder()
.costAnalysisUi(QueryQueryDefinitionCostAnalysisUiArgs.builder()
.graph(queryQueryDefinitionCostAnalysisUiGraph)
.isCumulativeGraph(queryQueryDefinitionCostAnalysisUiIsCumulativeGraph)
.build())
.displayName(queryQueryDefinitionDisplayName)
.reportQuery(QueryQueryDefinitionReportQueryArgs.builder()
.granularity(queryQueryDefinitionReportQueryGranularity)
.tenantId(testTenant.id())
.compartmentDepth(queryQueryDefinitionReportQueryCompartmentDepth)
.dateRangeName(queryQueryDefinitionReportQueryDateRangeName)
.filter(queryQueryDefinitionReportQueryFilter)
.forecast(QueryQueryDefinitionReportQueryForecastArgs.builder()
.timeForecastEnded(queryQueryDefinitionReportQueryForecastTimeForecastEnded)
.forecastType(queryQueryDefinitionReportQueryForecastForecastType)
.timeForecastStarted(queryQueryDefinitionReportQueryForecastTimeForecastStarted)
.build())
.groupBies(queryQueryDefinitionReportQueryGroupBy)
.groupByTags(QueryQueryDefinitionReportQueryGroupByTagArgs.builder()
.key(queryQueryDefinitionReportQueryGroupByTagKey)
.namespace(queryQueryDefinitionReportQueryGroupByTagNamespace)
.value(queryQueryDefinitionReportQueryGroupByTagValue)
.build())
.isAggregateByTime(queryQueryDefinitionReportQueryIsAggregateByTime)
.queryType(queryQueryDefinitionReportQueryQueryType)
.timeUsageEnded(queryQueryDefinitionReportQueryTimeUsageEnded)
.timeUsageStarted(queryQueryDefinitionReportQueryTimeUsageStarted)
.build())
.version(queryQueryDefinitionVersion)
.build())
.build());
}
}
resources:
testQuery:
type: oci:MeteringComputation:Query
name: test_query
properties:
compartmentId: ${compartmentId}
queryDefinition:
costAnalysisUi:
graph: ${queryQueryDefinitionCostAnalysisUiGraph}
isCumulativeGraph: ${queryQueryDefinitionCostAnalysisUiIsCumulativeGraph}
displayName: ${queryQueryDefinitionDisplayName}
reportQuery:
granularity: ${queryQueryDefinitionReportQueryGranularity}
tenantId: ${testTenant.id}
compartmentDepth: ${queryQueryDefinitionReportQueryCompartmentDepth}
dateRangeName: ${queryQueryDefinitionReportQueryDateRangeName}
filter: ${queryQueryDefinitionReportQueryFilter}
forecast:
timeForecastEnded: ${queryQueryDefinitionReportQueryForecastTimeForecastEnded}
forecastType: ${queryQueryDefinitionReportQueryForecastForecastType}
timeForecastStarted: ${queryQueryDefinitionReportQueryForecastTimeForecastStarted}
groupBies: ${queryQueryDefinitionReportQueryGroupBy}
groupByTags:
- key: ${queryQueryDefinitionReportQueryGroupByTagKey}
namespace: ${queryQueryDefinitionReportQueryGroupByTagNamespace}
value: ${queryQueryDefinitionReportQueryGroupByTagValue}
isAggregateByTime: ${queryQueryDefinitionReportQueryIsAggregateByTime}
queryType: ${queryQueryDefinitionReportQueryQueryType}
timeUsageEnded: ${queryQueryDefinitionReportQueryTimeUsageEnded}
timeUsageStarted: ${queryQueryDefinitionReportQueryTimeUsageStarted}
version: ${queryQueryDefinitionVersion}
Create Query Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Query(name: string, args: QueryArgs, opts?: CustomResourceOptions);
@overload
def Query(resource_name: str,
args: QueryArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Query(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
query_definition: Optional[_meteringcomputation.QueryQueryDefinitionArgs] = None)
func NewQuery(ctx *Context, name string, args QueryArgs, opts ...ResourceOption) (*Query, error)
public Query(string name, QueryArgs args, CustomResourceOptions? opts = null)
type: oci:MeteringComputation:Query
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 QueryArgs
- 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 QueryArgs
- 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 QueryArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args QueryArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args QueryArgs
- 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 queryResource = new Oci.MeteringComputation.Query("queryResource", new()
{
CompartmentId = "string",
QueryDefinition = new Oci.MeteringComputation.Inputs.QueryQueryDefinitionArgs
{
CostAnalysisUi = new Oci.MeteringComputation.Inputs.QueryQueryDefinitionCostAnalysisUiArgs
{
Graph = "string",
IsCumulativeGraph = false,
},
DisplayName = "string",
ReportQuery = new Oci.MeteringComputation.Inputs.QueryQueryDefinitionReportQueryArgs
{
Granularity = "string",
TenantId = "string",
CompartmentDepth = 0,
DateRangeName = "string",
Filter = "string",
Forecast = new Oci.MeteringComputation.Inputs.QueryQueryDefinitionReportQueryForecastArgs
{
TimeForecastEnded = "string",
ForecastType = "string",
TimeForecastStarted = "string",
},
GroupBies = new[]
{
"string",
},
GroupByTags = new[]
{
new Oci.MeteringComputation.Inputs.QueryQueryDefinitionReportQueryGroupByTagArgs
{
Key = "string",
Namespace = "string",
Value = "string",
},
},
IsAggregateByTime = false,
QueryType = "string",
TimeUsageEnded = "string",
TimeUsageStarted = "string",
},
Version = 0,
},
});
example, err := MeteringComputation.NewQuery(ctx, "queryResource", &MeteringComputation.QueryArgs{
CompartmentId: pulumi.String("string"),
QueryDefinition: &meteringcomputation.QueryQueryDefinitionArgs{
CostAnalysisUi: &meteringcomputation.QueryQueryDefinitionCostAnalysisUiArgs{
Graph: pulumi.String("string"),
IsCumulativeGraph: pulumi.Bool(false),
},
DisplayName: pulumi.String("string"),
ReportQuery: &meteringcomputation.QueryQueryDefinitionReportQueryArgs{
Granularity: pulumi.String("string"),
TenantId: pulumi.String("string"),
CompartmentDepth: pulumi.Float64(0),
DateRangeName: pulumi.String("string"),
Filter: pulumi.String("string"),
Forecast: &meteringcomputation.QueryQueryDefinitionReportQueryForecastArgs{
TimeForecastEnded: pulumi.String("string"),
ForecastType: pulumi.String("string"),
TimeForecastStarted: pulumi.String("string"),
},
GroupBies: pulumi.StringArray{
pulumi.String("string"),
},
GroupByTags: meteringcomputation.QueryQueryDefinitionReportQueryGroupByTagArray{
&meteringcomputation.QueryQueryDefinitionReportQueryGroupByTagArgs{
Key: pulumi.String("string"),
Namespace: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
IsAggregateByTime: pulumi.Bool(false),
QueryType: pulumi.String("string"),
TimeUsageEnded: pulumi.String("string"),
TimeUsageStarted: pulumi.String("string"),
},
Version: pulumi.Float64(0),
},
})
var queryResource = new Query("queryResource", QueryArgs.builder()
.compartmentId("string")
.queryDefinition(QueryQueryDefinitionArgs.builder()
.costAnalysisUi(QueryQueryDefinitionCostAnalysisUiArgs.builder()
.graph("string")
.isCumulativeGraph(false)
.build())
.displayName("string")
.reportQuery(QueryQueryDefinitionReportQueryArgs.builder()
.granularity("string")
.tenantId("string")
.compartmentDepth(0)
.dateRangeName("string")
.filter("string")
.forecast(QueryQueryDefinitionReportQueryForecastArgs.builder()
.timeForecastEnded("string")
.forecastType("string")
.timeForecastStarted("string")
.build())
.groupBies("string")
.groupByTags(QueryQueryDefinitionReportQueryGroupByTagArgs.builder()
.key("string")
.namespace("string")
.value("string")
.build())
.isAggregateByTime(false)
.queryType("string")
.timeUsageEnded("string")
.timeUsageStarted("string")
.build())
.version(0)
.build())
.build());
query_resource = oci.metering_computation.Query("queryResource",
compartment_id="string",
query_definition=oci.metering_computation.QueryQueryDefinitionArgs(
cost_analysis_ui=oci.metering_computation.QueryQueryDefinitionCostAnalysisUiArgs(
graph="string",
is_cumulative_graph=False,
),
display_name="string",
report_query=oci.metering_computation.QueryQueryDefinitionReportQueryArgs(
granularity="string",
tenant_id="string",
compartment_depth=0,
date_range_name="string",
filter="string",
forecast=oci.metering_computation.QueryQueryDefinitionReportQueryForecastArgs(
time_forecast_ended="string",
forecast_type="string",
time_forecast_started="string",
),
group_bies=["string"],
group_by_tags=[oci.metering_computation.QueryQueryDefinitionReportQueryGroupByTagArgs(
key="string",
namespace="string",
value="string",
)],
is_aggregate_by_time=False,
query_type="string",
time_usage_ended="string",
time_usage_started="string",
),
version=0,
))
const queryResource = new oci.meteringcomputation.Query("queryResource", {
compartmentId: "string",
queryDefinition: {
costAnalysisUi: {
graph: "string",
isCumulativeGraph: false,
},
displayName: "string",
reportQuery: {
granularity: "string",
tenantId: "string",
compartmentDepth: 0,
dateRangeName: "string",
filter: "string",
forecast: {
timeForecastEnded: "string",
forecastType: "string",
timeForecastStarted: "string",
},
groupBies: ["string"],
groupByTags: [{
key: "string",
namespace: "string",
value: "string",
}],
isAggregateByTime: false,
queryType: "string",
timeUsageEnded: "string",
timeUsageStarted: "string",
},
version: 0,
},
});
type: oci:MeteringComputation:Query
properties:
compartmentId: string
queryDefinition:
costAnalysisUi:
graph: string
isCumulativeGraph: false
displayName: string
reportQuery:
compartmentDepth: 0
dateRangeName: string
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
version: 0
Query Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Query resource accepts the following input properties:
- Compartment
Id string - The compartment OCID.
- Query
Definition QueryQuery Definition - (Updatable) The common fields for queries.
- Compartment
Id string - The compartment OCID.
- Query
Definition QueryQuery Definition Args - (Updatable) The common fields for queries.
- compartment
Id String - The compartment OCID.
- query
Definition QueryQuery Definition - (Updatable) The common fields for queries.
- compartment
Id string - The compartment OCID.
- query
Definition QueryQuery Definition - (Updatable) The common fields for queries.
- compartment_
id str - The compartment OCID.
- query_
definition meteringcomputation.Query Query Definition Args - (Updatable) The common fields for queries.
- compartment
Id String - The compartment OCID.
- query
Definition Property Map - (Updatable) The common fields for queries.
Outputs
All input properties are implicitly available as output properties. Additionally, the Query resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing Query Resource
Get an existing Query 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?: QueryState, opts?: CustomResourceOptions): Query
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
query_definition: Optional[_meteringcomputation.QueryQueryDefinitionArgs] = None) -> Query
func GetQuery(ctx *Context, name string, id IDInput, state *QueryState, opts ...ResourceOption) (*Query, error)
public static Query Get(string name, Input<string> id, QueryState? state, CustomResourceOptions? opts = null)
public static Query get(String name, Output<String> id, QueryState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Compartment
Id string - The compartment OCID.
- Query
Definition QueryQuery Definition - (Updatable) The common fields for queries.
- Compartment
Id string - The compartment OCID.
- Query
Definition QueryQuery Definition Args - (Updatable) The common fields for queries.
- compartment
Id String - The compartment OCID.
- query
Definition QueryQuery Definition - (Updatable) The common fields for queries.
- compartment
Id string - The compartment OCID.
- query
Definition QueryQuery Definition - (Updatable) The common fields for queries.
- compartment_
id str - The compartment OCID.
- query_
definition meteringcomputation.Query Query Definition Args - (Updatable) The common fields for queries.
- compartment
Id String - The compartment OCID.
- query
Definition Property Map - (Updatable) The common fields for queries.
Supporting Types
QueryQueryDefinition, QueryQueryDefinitionArgs
- Cost
Analysis QueryUi Query Definition Cost Analysis Ui - (Updatable) The common fields for Cost Analysis UI rendering.
- Display
Name string - (Updatable) The query display name. Avoid entering confidential information.
- Report
Query QueryQuery Definition Report Query - (Updatable) The request of the generated Cost Analysis report.
- Version double
(Updatable) The saved query version.
** 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
- Cost
Analysis QueryUi Query Definition Cost Analysis Ui - (Updatable) The common fields for Cost Analysis UI rendering.
- Display
Name string - (Updatable) The query display name. Avoid entering confidential information.
- Report
Query QueryQuery Definition Report Query - (Updatable) The request of the generated Cost Analysis report.
- Version float64
(Updatable) The saved query version.
** 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
- cost
Analysis QueryUi Query Definition Cost Analysis Ui - (Updatable) The common fields for Cost Analysis UI rendering.
- display
Name String - (Updatable) The query display name. Avoid entering confidential information.
- report
Query QueryQuery Definition Report Query - (Updatable) The request of the generated Cost Analysis report.
- version Double
(Updatable) The saved query version.
** 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
- cost
Analysis QueryUi Query Definition Cost Analysis Ui - (Updatable) The common fields for Cost Analysis UI rendering.
- display
Name string - (Updatable) The query display name. Avoid entering confidential information.
- report
Query QueryQuery Definition Report Query - (Updatable) The request of the generated Cost Analysis report.
- version number
(Updatable) The saved query version.
** 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
- cost_
analysis_ meteringcomputation.ui Query Query Definition Cost Analysis Ui - (Updatable) The common fields for Cost Analysis UI rendering.
- display_
name str - (Updatable) The query display name. Avoid entering confidential information.
- report_
query meteringcomputation.Query Query Definition Report Query - (Updatable) The request of the generated Cost Analysis report.
- version float
(Updatable) The saved query version.
** 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
- cost
Analysis Property MapUi - (Updatable) The common fields for Cost Analysis UI rendering.
- display
Name String - (Updatable) The query display name. Avoid entering confidential information.
- report
Query Property Map - (Updatable) The request of the generated Cost Analysis report.
- version Number
(Updatable) The saved query version.
** 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
QueryQueryDefinitionCostAnalysisUi, QueryQueryDefinitionCostAnalysisUiArgs
- Graph string
- (Updatable) The graph type.
- Is
Cumulative boolGraph - (Updatable) A cumulative graph.
- Graph string
- (Updatable) The graph type.
- Is
Cumulative boolGraph - (Updatable) A cumulative graph.
- graph String
- (Updatable) The graph type.
- is
Cumulative BooleanGraph - (Updatable) A cumulative graph.
- graph string
- (Updatable) The graph type.
- is
Cumulative booleanGraph - (Updatable) A cumulative graph.
- graph str
- (Updatable) The graph type.
- is_
cumulative_ boolgraph - (Updatable) A cumulative graph.
- graph String
- (Updatable) The graph type.
- is
Cumulative BooleanGraph - (Updatable) A cumulative graph.
QueryQueryDefinitionReportQuery, QueryQueryDefinitionReportQueryArgs
- Granularity string
- (Updatable) The usage granularity. HOURLY - Hourly data aggregation. DAILY - Daily data aggregation. MONTHLY - Monthly data aggregation. TOTAL - Not yet supported.
- Tenant
Id string - (Updatable) Tenant ID.
- Compartment
Depth double - (Updatable) The compartment depth level.
- Date
Range stringName - (Updatable) The UI date range, for example, LAST_THREE_MONTHS. Conflicts with timeUsageStarted and timeUsageEnded.
- Filter string
- (Updatable) The filter object for query usage.
- Forecast
Query
Query Definition Report Query Forecast - (Updatable) Forecast configuration of usage/cost.
- Group
Bies List<string> - (Updatable) Aggregate the result by. example:
["tagNamespace", "tagKey", "tagValue", "service", "skuName", "skuPartNumber", "unit", "compartmentName", "compartmentPath", "compartmentId", "platform", "region", "logicalAd", "resourceId", "tenantId", "tenantName"]
- List<Query
Query Definition Report Query Group By Tag> - (Updatable) 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 - (Updatable) Whether aggregated by time. If isAggregateByTime is true, all usage/cost over the query time period will be added up.
- Query
Type string - (Updatable) 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
- Time
Usage stringEnded - (Updatable) The usage end time.
- Time
Usage stringStarted - (Updatable) The usage start time.
- Granularity string
- (Updatable) The usage granularity. HOURLY - Hourly data aggregation. DAILY - Daily data aggregation. MONTHLY - Monthly data aggregation. TOTAL - Not yet supported.
- Tenant
Id string - (Updatable) Tenant ID.
- Compartment
Depth float64 - (Updatable) The compartment depth level.
- Date
Range stringName - (Updatable) The UI date range, for example, LAST_THREE_MONTHS. Conflicts with timeUsageStarted and timeUsageEnded.
- Filter string
- (Updatable) The filter object for query usage.
- Forecast
Query
Query Definition Report Query Forecast - (Updatable) Forecast configuration of usage/cost.
- Group
Bies []string - (Updatable) Aggregate the result by. example:
["tagNamespace", "tagKey", "tagValue", "service", "skuName", "skuPartNumber", "unit", "compartmentName", "compartmentPath", "compartmentId", "platform", "region", "logicalAd", "resourceId", "tenantId", "tenantName"]
- []Query
Query Definition Report Query Group By Tag - (Updatable) 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 - (Updatable) Whether aggregated by time. If isAggregateByTime is true, all usage/cost over the query time period will be added up.
- Query
Type string - (Updatable) 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
- Time
Usage stringEnded - (Updatable) The usage end time.
- Time
Usage stringStarted - (Updatable) The usage start time.
- granularity String
- (Updatable) The usage granularity. HOURLY - Hourly data aggregation. DAILY - Daily data aggregation. MONTHLY - Monthly data aggregation. TOTAL - Not yet supported.
- tenant
Id String - (Updatable) Tenant ID.
- compartment
Depth Double - (Updatable) The compartment depth level.
- date
Range StringName - (Updatable) The UI date range, for example, LAST_THREE_MONTHS. Conflicts with timeUsageStarted and timeUsageEnded.
- filter String
- (Updatable) The filter object for query usage.
- forecast
Query
Query Definition Report Query Forecast - (Updatable) Forecast configuration of usage/cost.
- group
Bies List<String> - (Updatable) Aggregate the result by. example:
["tagNamespace", "tagKey", "tagValue", "service", "skuName", "skuPartNumber", "unit", "compartmentName", "compartmentPath", "compartmentId", "platform", "region", "logicalAd", "resourceId", "tenantId", "tenantName"]
- List<Query
Query Definition Report Query Group By Tag> - (Updatable) 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 BooleanBy Time - (Updatable) Whether aggregated by time. If isAggregateByTime is true, all usage/cost over the query time period will be added up.
- query
Type String - (Updatable) 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
- time
Usage StringEnded - (Updatable) The usage end time.
- time
Usage StringStarted - (Updatable) The usage start time.
- granularity string
- (Updatable) The usage granularity. HOURLY - Hourly data aggregation. DAILY - Daily data aggregation. MONTHLY - Monthly data aggregation. TOTAL - Not yet supported.
- tenant
Id string - (Updatable) Tenant ID.
- compartment
Depth number - (Updatable) The compartment depth level.
- date
Range stringName - (Updatable) The UI date range, for example, LAST_THREE_MONTHS. Conflicts with timeUsageStarted and timeUsageEnded.
- filter string
- (Updatable) The filter object for query usage.
- forecast
Query
Query Definition Report Query Forecast - (Updatable) Forecast configuration of usage/cost.
- group
Bies string[] - (Updatable) Aggregate the result by. example:
["tagNamespace", "tagKey", "tagValue", "service", "skuName", "skuPartNumber", "unit", "compartmentName", "compartmentPath", "compartmentId", "platform", "region", "logicalAd", "resourceId", "tenantId", "tenantName"]
- Query
Query Definition Report Query Group By Tag[] - (Updatable) 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 booleanBy Time - (Updatable) Whether aggregated by time. If isAggregateByTime is true, all usage/cost over the query time period will be added up.
- query
Type string - (Updatable) 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
- time
Usage stringEnded - (Updatable) The usage end time.
- time
Usage stringStarted - (Updatable) The usage start time.
- granularity str
- (Updatable) The usage granularity. HOURLY - Hourly data aggregation. DAILY - Daily data aggregation. MONTHLY - Monthly data aggregation. TOTAL - Not yet supported.
- tenant_
id str - (Updatable) Tenant ID.
- compartment_
depth float - (Updatable) The compartment depth level.
- date_
range_ strname - (Updatable) The UI date range, for example, LAST_THREE_MONTHS. Conflicts with timeUsageStarted and timeUsageEnded.
- filter str
- (Updatable) The filter object for query usage.
- forecast
meteringcomputation.
Query Query Definition Report Query Forecast - (Updatable) Forecast configuration of usage/cost.
- group_
bies Sequence[str] - (Updatable) Aggregate the result by. example:
["tagNamespace", "tagKey", "tagValue", "service", "skuName", "skuPartNumber", "unit", "compartmentName", "compartmentPath", "compartmentId", "platform", "region", "logicalAd", "resourceId", "tenantId", "tenantName"]
- Sequence[meteringcomputation.
Query Query Definition Report Query Group By Tag] - (Updatable) 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 - (Updatable) Whether aggregated by time. If isAggregateByTime is true, all usage/cost over the query time period will be added up.
- query_
type str - (Updatable) 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
- time_
usage_ strended - (Updatable) The usage end time.
- time_
usage_ strstarted - (Updatable) The usage start time.
- granularity String
- (Updatable) The usage granularity. HOURLY - Hourly data aggregation. DAILY - Daily data aggregation. MONTHLY - Monthly data aggregation. TOTAL - Not yet supported.
- tenant
Id String - (Updatable) Tenant ID.
- compartment
Depth Number - (Updatable) The compartment depth level.
- date
Range StringName - (Updatable) The UI date range, for example, LAST_THREE_MONTHS. Conflicts with timeUsageStarted and timeUsageEnded.
- filter String
- (Updatable) The filter object for query usage.
- forecast Property Map
- (Updatable) Forecast configuration of usage/cost.
- group
Bies List<String> - (Updatable) Aggregate the result by. example:
["tagNamespace", "tagKey", "tagValue", "service", "skuName", "skuPartNumber", "unit", "compartmentName", "compartmentPath", "compartmentId", "platform", "region", "logicalAd", "resourceId", "tenantId", "tenantName"]
- List<Property Map>
- (Updatable) 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 BooleanBy Time - (Updatable) Whether aggregated by time. If isAggregateByTime is true, all usage/cost over the query time period will be added up.
- query
Type String - (Updatable) 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
- time
Usage StringEnded - (Updatable) The usage end time.
- time
Usage StringStarted - (Updatable) The usage start time.
QueryQueryDefinitionReportQueryForecast, QueryQueryDefinitionReportQueryForecastArgs
- Time
Forecast stringEnded - (Updatable) The forecast end time.
- Forecast
Type string - (Updatable) 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 stringStarted - (Updatable) The forecast start time. Defaults to UTC-1 if not specified.
- Time
Forecast stringEnded - (Updatable) The forecast end time.
- Forecast
Type string - (Updatable) 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 stringStarted - (Updatable) The forecast start time. Defaults to UTC-1 if not specified.
- time
Forecast StringEnded - (Updatable) The forecast end time.
- forecast
Type String - (Updatable) 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 StringStarted - (Updatable) The forecast start time. Defaults to UTC-1 if not specified.
- time
Forecast stringEnded - (Updatable) The forecast end time.
- forecast
Type string - (Updatable) 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 stringStarted - (Updatable) The forecast start time. Defaults to UTC-1 if not specified.
- time_
forecast_ strended - (Updatable) The forecast end time.
- forecast_
type str - (Updatable) 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 - (Updatable) The forecast start time. Defaults to UTC-1 if not specified.
- time
Forecast StringEnded - (Updatable) The forecast end time.
- forecast
Type String - (Updatable) 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 StringStarted - (Updatable) The forecast start time. Defaults to UTC-1 if not specified.
QueryQueryDefinitionReportQueryGroupByTag, QueryQueryDefinitionReportQueryGroupByTagArgs
Import
Queries can be imported using the id
, e.g.
$ pulumi import oci:MeteringComputation/query:Query test_query "id"
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
oci
Terraform Provider.