UNPKG

@pulumi/harness

Version:

A Pulumi package for creating and managing Harness resources.

144 lines 5.93 kB
"use strict"; // *** WARNING: this file was generated by pulumi-language-nodejs. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.AzureCloudCostConnector = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Resource for creating an Azure Cloud Cost connector in Harness. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const example = new harness.platform.AzureCloudCostConnector("example", { * identifier: "identifier", * name: "name", * description: "example", * tags: ["foo:bar"], * featuresEnableds: [ * "BILLING", * "VISIBILITY", * "OPTIMIZATION", * "GOVERNANCE", * ], * tenantId: "tenant_id", * subscriptionId: "subscription_id", * billingExportSpec: { * storageAccountName: "storage_account_name", * containerName: "container_name", * directoryName: "directory_name", * reportName: "report_name", * subscriptionId: "subscription_id", * billingType: "billing_type", * }, * billingExportSpec2: { * storageAccountName: "storage_account_name", * containerName: "container_name", * directoryName: "directory_name", * reportName: "report_name", * subscriptionId: "subscription_id", * billingType: "billing_type", * }, * }); * ``` * * ## Import * * The `pulumi import` command can be used, for example: * * Import account level azure cloud cost connector * * ```sh * $ pulumi import harness:platform/azureCloudCostConnector:AzureCloudCostConnector example <connector_id> * ``` * * Import org level azure cloud cost connector * * ```sh * $ pulumi import harness:platform/azureCloudCostConnector:AzureCloudCostConnector example <ord_id>/<connector_id> * ``` * * Import project level azure cloud cost connector * * ```sh * $ pulumi import harness:platform/azureCloudCostConnector:AzureCloudCostConnector example <org_id>/<project_id>/<connector_id> * ``` */ class AzureCloudCostConnector extends pulumi.CustomResource { /** * Get an existing AzureCloudCostConnector 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, id, state, opts) { return new AzureCloudCostConnector(name, state, { ...opts, id: id }); } /** * Returns true if the given object is an instance of AzureCloudCostConnector. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj) { if (obj === undefined || obj === null) { return false; } return obj['__pulumiType'] === AzureCloudCostConnector.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["billingExportSpec"] = state?.billingExportSpec; resourceInputs["billingExportSpec2"] = state?.billingExportSpec2; resourceInputs["description"] = state?.description; resourceInputs["featuresEnableds"] = state?.featuresEnableds; resourceInputs["identifier"] = state?.identifier; resourceInputs["name"] = state?.name; resourceInputs["orgId"] = state?.orgId; resourceInputs["projectId"] = state?.projectId; resourceInputs["subscriptionId"] = state?.subscriptionId; resourceInputs["tags"] = state?.tags; resourceInputs["tenantId"] = state?.tenantId; } else { const args = argsOrState; if (args?.featuresEnableds === undefined && !opts.urn) { throw new Error("Missing required property 'featuresEnableds'"); } if (args?.identifier === undefined && !opts.urn) { throw new Error("Missing required property 'identifier'"); } if (args?.subscriptionId === undefined && !opts.urn) { throw new Error("Missing required property 'subscriptionId'"); } if (args?.tenantId === undefined && !opts.urn) { throw new Error("Missing required property 'tenantId'"); } resourceInputs["billingExportSpec"] = args?.billingExportSpec; resourceInputs["billingExportSpec2"] = args?.billingExportSpec2; resourceInputs["description"] = args?.description; resourceInputs["featuresEnableds"] = args?.featuresEnableds; resourceInputs["identifier"] = args?.identifier; resourceInputs["name"] = args?.name; resourceInputs["orgId"] = args?.orgId; resourceInputs["projectId"] = args?.projectId; resourceInputs["subscriptionId"] = args?.subscriptionId; resourceInputs["tags"] = args?.tags; resourceInputs["tenantId"] = args?.tenantId; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(AzureCloudCostConnector.__pulumiType, name, resourceInputs, opts); } } exports.AzureCloudCostConnector = AzureCloudCostConnector; /** @internal */ AzureCloudCostConnector.__pulumiType = 'harness:platform/azureCloudCostConnector:AzureCloudCostConnector'; //# sourceMappingURL=azureCloudCostConnector.js.map