import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Provides a Datadog CloudInventorySyncConfig resource. This can be used to create and manage Datadog cloud_inventory_sync_config. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as datadog from "@pulumi/datadog"; * * // AWS Cloud Inventory Sync Config * const awsExample = new datadog.CloudInventorySyncConfig("aws_example", { * cloudProvider: "aws", * aws: [{ * awsAccountId: "123456789012", * destinationBucketName: "my-inventory-bucket", * destinationBucketRegion: "us-east-1", * destinationPrefix: "inventory/", * }], * }); * // Azure Cloud Inventory Sync Config * const azureExample = new datadog.CloudInventorySyncConfig("azure_example", { * cloudProvider: "azure", * azure: [{ * clientId: "00000000-0000-0000-0000-000000000000", * tenantId: "00000000-0000-0000-0000-000000000000", * subscriptionId: "00000000-0000-0000-0000-000000000000", * resourceGroup: "my-resource-group", * storageAccount: "mystorageaccount", * container: "inventory", * }], * }); * // GCP Cloud Inventory Sync Config * const gcpExample = new datadog.CloudInventorySyncConfig("gcp_example", { * cloudProvider: "gcp", * gcp: [{ * projectId: "my-gcp-project", * destinationBucketName: "my-inventory-bucket", * sourceBucketName: "my-source-bucket", * serviceAccountEmail: "sa@my-gcp-project.iam.gserviceaccount.com", * }], * }); * ``` * * ## Import * * The `pulumi import` command can be used, for example: * * Import using the sync config ID returned by the API * * ```sh * $ pulumi import datadog:index/cloudInventorySyncConfig:CloudInventorySyncConfig example "" * ``` */ export declare class CloudInventorySyncConfig extends pulumi.CustomResource { /** * Get an existing CloudInventorySyncConfig 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?: CloudInventorySyncConfigState, opts?: pulumi.CustomResourceOptions): CloudInventorySyncConfig; /** * Returns true if the given object is an instance of CloudInventorySyncConfig. 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 CloudInventorySyncConfig; /** * AWS-specific configuration. Required when cloudProvider is `aws`. */ readonly aws: pulumi.Output; /** * Azure-specific configuration. Required when cloudProvider is `azure`. */ readonly azure: pulumi.Output; /** * The cloud provider type. Valid values are `aws`, `azure`, `gcp`. */ readonly cloudProvider: pulumi.Output; /** * GCP-specific configuration. Required when cloudProvider is `gcp`. */ readonly gcp: pulumi.Output; /** * Create a CloudInventorySyncConfig 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: CloudInventorySyncConfigArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering CloudInventorySyncConfig resources. */ export interface CloudInventorySyncConfigState { /** * AWS-specific configuration. Required when cloudProvider is `aws`. */ aws?: pulumi.Input; /** * Azure-specific configuration. Required when cloudProvider is `azure`. */ azure?: pulumi.Input; /** * The cloud provider type. Valid values are `aws`, `azure`, `gcp`. */ cloudProvider?: pulumi.Input; /** * GCP-specific configuration. Required when cloudProvider is `gcp`. */ gcp?: pulumi.Input; } /** * The set of arguments for constructing a CloudInventorySyncConfig resource. */ export interface CloudInventorySyncConfigArgs { /** * AWS-specific configuration. Required when cloudProvider is `aws`. */ aws?: pulumi.Input; /** * Azure-specific configuration. Required when cloudProvider is `azure`. */ azure?: pulumi.Input; /** * The cloud provider type. Valid values are `aws`, `azure`, `gcp`. */ cloudProvider: pulumi.Input; /** * GCP-specific configuration. Required when cloudProvider is `gcp`. */ gcp?: pulumi.Input; }