UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

56 lines 2.38 kB
"use strict"; // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.financialRelationsOutput = exports.financialRelations = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Use this data source to query detailed information of financial relations * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@pulumi/volcengine"; * * const foo = volcengine.financial_relation.getFinancialRelations({ * accountIds: ["210026****"], * relations: ["1"], * statuses: ["200"], * }); * ``` */ /** @deprecated volcengine.financial_relation.FinancialRelations has been deprecated in favor of volcengine.financial_relation.getFinancialRelations */ function financialRelations(args, opts) { pulumi.log.warn("financialRelations is deprecated: volcengine.financial_relation.FinancialRelations has been deprecated in favor of volcengine.financial_relation.getFinancialRelations"); args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("volcengine:financial_relation/financialRelations:FinancialRelations", { "accountIds": args.accountIds, "outputFile": args.outputFile, "relations": args.relations, "statuses": args.statuses, }, opts); } exports.financialRelations = financialRelations; /** * Use this data source to query detailed information of financial relations * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@pulumi/volcengine"; * * const foo = volcengine.financial_relation.getFinancialRelations({ * accountIds: ["210026****"], * relations: ["1"], * statuses: ["200"], * }); * ``` */ /** @deprecated volcengine.financial_relation.FinancialRelations has been deprecated in favor of volcengine.financial_relation.getFinancialRelations */ function financialRelationsOutput(args, opts) { return pulumi.output(args).apply((a) => financialRelations(a, opts)); } exports.financialRelationsOutput = financialRelationsOutput; //# sourceMappingURL=financialRelations.js.map