@pulumi/sumologic
Version:
A Pulumi package for creating and managing sumologic cloud resources.
92 lines (91 loc) • 3.12 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Provides a Sumologic CSE Custom Match List Column.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sumologic from "@pulumi/sumologic";
*
* const customMatchListColumn = new sumologic.CseCustomMatchListColumn("custom_match_list_column", {
* name: "Custom Match List Column name",
* fields: ["srcDevice_ip"],
* });
* ```
*
* ## Import
*
* Custom Match List Column can be imported using the field id, e.g.:
*
* hcl
*
* ```sh
* $ pulumi import sumologic:index/cseCustomMatchListColumn:CseCustomMatchListColumn custom_match_list_column id
* ```
*/
export declare class CseCustomMatchListColumn extends pulumi.CustomResource {
/**
* Get an existing CseCustomMatchListColumn 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<pulumi.ID>, state?: CseCustomMatchListColumnState, opts?: pulumi.CustomResourceOptions): CseCustomMatchListColumn;
/**
* Returns true if the given object is an instance of CseCustomMatchListColumn. 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 CseCustomMatchListColumn;
/**
* Custom Match List Column fields.
*
* The following attributes are exported:
*/
readonly fields: pulumi.Output<string[]>;
/**
* Custom Match List Column name.
*/
readonly name: pulumi.Output<string>;
/**
* Create a CseCustomMatchListColumn 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: CseCustomMatchListColumnArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering CseCustomMatchListColumn resources.
*/
export interface CseCustomMatchListColumnState {
/**
* Custom Match List Column fields.
*
* The following attributes are exported:
*/
fields?: pulumi.Input<pulumi.Input<string>[]>;
/**
* Custom Match List Column name.
*/
name?: pulumi.Input<string>;
}
/**
* The set of arguments for constructing a CseCustomMatchListColumn resource.
*/
export interface CseCustomMatchListColumnArgs {
/**
* Custom Match List Column fields.
*
* The following attributes are exported:
*/
fields: pulumi.Input<pulumi.Input<string>[]>;
/**
* Custom Match List Column name.
*/
name?: pulumi.Input<string>;
}