@pulumi/gcp
Version:
A Pulumi package for creating and managing Google Cloud Platform resources.
72 lines (71 loc) • 2.67 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Use this data source to get information about a Folder Storage Intelligence config resource.
* See [the official documentation](https://cloud.google.com/storage/docs/storage-intelligence/overview#resource)
* and
* [API](https://cloud.google.com/storage/docs/json_api/v1/intelligenceConfig).
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
*
* const sample_config = gcp.storage.getControlFolderIntelligenceConfig({
* name: "123456789",
* });
* ```
*/
export declare function getControlFolderIntelligenceConfig(args: GetControlFolderIntelligenceConfigArgs, opts?: pulumi.InvokeOptions): Promise<GetControlFolderIntelligenceConfigResult>;
/**
* A collection of arguments for invoking getControlFolderIntelligenceConfig.
*/
export interface GetControlFolderIntelligenceConfigArgs {
/**
* The number of GCP folder.
*/
name: string;
}
/**
* A collection of values returned by getControlFolderIntelligenceConfig.
*/
export interface GetControlFolderIntelligenceConfigResult {
readonly editionConfig: string;
readonly effectiveIntelligenceConfigs: outputs.storage.GetControlFolderIntelligenceConfigEffectiveIntelligenceConfig[];
readonly filters: outputs.storage.GetControlFolderIntelligenceConfigFilter[];
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly name: string;
readonly trialConfigs: outputs.storage.GetControlFolderIntelligenceConfigTrialConfig[];
readonly updateTime: string;
}
/**
* Use this data source to get information about a Folder Storage Intelligence config resource.
* See [the official documentation](https://cloud.google.com/storage/docs/storage-intelligence/overview#resource)
* and
* [API](https://cloud.google.com/storage/docs/json_api/v1/intelligenceConfig).
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
*
* const sample_config = gcp.storage.getControlFolderIntelligenceConfig({
* name: "123456789",
* });
* ```
*/
export declare function getControlFolderIntelligenceConfigOutput(args: GetControlFolderIntelligenceConfigOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetControlFolderIntelligenceConfigResult>;
/**
* A collection of arguments for invoking getControlFolderIntelligenceConfig.
*/
export interface GetControlFolderIntelligenceConfigOutputArgs {
/**
* The number of GCP folder.
*/
name: pulumi.Input<string>;
}