import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This resource provides the Bds Capacity Report resource in Oracle Cloud Infrastructure Big Data Service service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/bigdata/latest/BdsCapacityReport * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/big_data_service * * Create a detailed capacity report for BDS service * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testBdsCapacityReport = new oci.bigdataservice.BdsCapacityReport("test_bds_capacity_report", { * compartmentId: compartmentId, * shapeAvailabilities: [{ * shape: bdsCapacityReportShapeAvailabilitiesShape, * shapeConfig: { * memoryInGbs: Number(bdsCapacityReportShapeAvailabilitiesShapeConfigMemoryInGbs), * nvmes: Number(bdsCapacityReportShapeAvailabilitiesShapeConfigNvmes), * ocpus: Number(bdsCapacityReportShapeAvailabilitiesShapeConfigOcpus), * }, * }], * }); * ``` * * ## Import * * BdsCapacityReports can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:BigDataService/bdsCapacityReport:BdsCapacityReport test_bds_capacity_report "id" * ``` */ export declare class BdsCapacityReport extends pulumi.CustomResource { /** * Get an existing BdsCapacityReport resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: BdsCapacityReportState, opts?: pulumi.CustomResourceOptions): BdsCapacityReport; /** * Returns true if the given object is an instance of BdsCapacityReport. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is BdsCapacityReport; /** * The OCID for the compartment. This should always be the root compartment. */ readonly compartmentId: pulumi.Output; /** * Information about the shapes in the capacity report. */ readonly shapeAvailabilities: pulumi.Output; /** * The time the report was created, shown as an RFC 3339 formatted datetime string. */ readonly timeCreated: pulumi.Output; /** * Create a BdsCapacityReport resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: BdsCapacityReportArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering BdsCapacityReport resources. */ export interface BdsCapacityReportState { /** * The OCID for the compartment. This should always be the root compartment. */ compartmentId?: pulumi.Input; /** * Information about the shapes in the capacity report. */ shapeAvailabilities?: pulumi.Input[] | undefined>; /** * The time the report was created, shown as an RFC 3339 formatted datetime string. */ timeCreated?: pulumi.Input; } /** * The set of arguments for constructing a BdsCapacityReport resource. */ export interface BdsCapacityReportArgs { /** * The OCID for the compartment. This should always be the root compartment. */ compartmentId: pulumi.Input; /** * Information about the shapes in the capacity report. */ shapeAvailabilities: pulumi.Input[]>; } //# sourceMappingURL=bdsCapacityReport.d.ts.map