@pulumi/sumologic
Version:
A Pulumi package for creating and managing sumologic cloud resources.
183 lines (182 loc) • 6.2 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sumologic from "@pulumi/sumologic";
*
* const entityEntityGroupConfiguration = new sumologic.CseEntityEntityGroupConfiguration("entity_entity_group_configuration", {
* criticality: "HIGH",
* description: "Entity Group description",
* entityNamespace: "namespace",
* entityType: "_hostname",
* name: "Hostaname entity group configuration",
* suffix: "red.co",
* suppressed: true,
* tags: ["tag"],
* });
* ```
*
* ## Import
*
* Entity Entity Group Configuration can be imported using the field id, e.g.:
*
* hcl
*
* ```sh
* $ pulumi import sumologic:index/cseEntityEntityGroupConfiguration:CseEntityEntityGroupConfiguration entity_entity_group_configuration id
* ```
*/
export declare class CseEntityEntityGroupConfiguration extends pulumi.CustomResource {
/**
* Get an existing CseEntityEntityGroupConfiguration 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?: CseEntityEntityGroupConfigurationState, opts?: pulumi.CustomResourceOptions): CseEntityEntityGroupConfiguration;
/**
* Returns true if the given object is an instance of CseEntityEntityGroupConfiguration. 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 CseEntityEntityGroupConfiguration;
/**
* The entity group configuration criticality Examples: "HIGH", "CRITICALITY".
*/
readonly criticality: pulumi.Output<string | undefined>;
/**
* The entity group configuration description.
*/
readonly description: pulumi.Output<string | undefined>;
/**
* The entity namespace.
*/
readonly entityNamespace: pulumi.Output<string | undefined>;
/**
* The entity type Examples: "_ip", "_mac", "_username", "_hostname".
*/
readonly entityType: pulumi.Output<string | undefined>;
/**
* The entity group configuration name.
*/
readonly name: pulumi.Output<string>;
/**
* The entity group configuration network block value Example: "192.168.0.0/16".
*/
readonly networkBlock: pulumi.Output<string | undefined>;
/**
* The entity group configuration prefix value.
*/
readonly prefix: pulumi.Output<string | undefined>;
/**
* The entity group configuration suffix value.
*/
readonly suffix: pulumi.Output<string | undefined>;
readonly suppressed: pulumi.Output<boolean | undefined>;
/**
* The entity group configuration tags list.
*
* The following attributes are exported:
*/
readonly tags: pulumi.Output<string[] | undefined>;
/**
* Create a CseEntityEntityGroupConfiguration 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?: CseEntityEntityGroupConfigurationArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering CseEntityEntityGroupConfiguration resources.
*/
export interface CseEntityEntityGroupConfigurationState {
/**
* The entity group configuration criticality Examples: "HIGH", "CRITICALITY".
*/
criticality?: pulumi.Input<string>;
/**
* The entity group configuration description.
*/
description?: pulumi.Input<string>;
/**
* The entity namespace.
*/
entityNamespace?: pulumi.Input<string>;
/**
* The entity type Examples: "_ip", "_mac", "_username", "_hostname".
*/
entityType?: pulumi.Input<string>;
/**
* The entity group configuration name.
*/
name?: pulumi.Input<string>;
/**
* The entity group configuration network block value Example: "192.168.0.0/16".
*/
networkBlock?: pulumi.Input<string>;
/**
* The entity group configuration prefix value.
*/
prefix?: pulumi.Input<string>;
/**
* The entity group configuration suffix value.
*/
suffix?: pulumi.Input<string>;
suppressed?: pulumi.Input<boolean>;
/**
* The entity group configuration tags list.
*
* The following attributes are exported:
*/
tags?: pulumi.Input<pulumi.Input<string>[]>;
}
/**
* The set of arguments for constructing a CseEntityEntityGroupConfiguration resource.
*/
export interface CseEntityEntityGroupConfigurationArgs {
/**
* The entity group configuration criticality Examples: "HIGH", "CRITICALITY".
*/
criticality?: pulumi.Input<string>;
/**
* The entity group configuration description.
*/
description?: pulumi.Input<string>;
/**
* The entity namespace.
*/
entityNamespace?: pulumi.Input<string>;
/**
* The entity type Examples: "_ip", "_mac", "_username", "_hostname".
*/
entityType?: pulumi.Input<string>;
/**
* The entity group configuration name.
*/
name?: pulumi.Input<string>;
/**
* The entity group configuration network block value Example: "192.168.0.0/16".
*/
networkBlock?: pulumi.Input<string>;
/**
* The entity group configuration prefix value.
*/
prefix?: pulumi.Input<string>;
/**
* The entity group configuration suffix value.
*/
suffix?: pulumi.Input<string>;
suppressed?: pulumi.Input<boolean>;
/**
* The entity group configuration tags list.
*
* The following attributes are exported:
*/
tags?: pulumi.Input<pulumi.Input<string>[]>;
}