UNPKG

@gtheocrwd/pulumi-crowdstrike

Version:

A Pulumi package for creating and managing Crowdstrike resources. Based on terraform-provider-crowdstrike: version v0.0.5

106 lines (105 loc) 3.94 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * This resource allows management of a FileVantage rule group. A FileVantage rule group is a collection of file integrity rules that can be assigned to a FileVantge policy. * * ## API Scopes * * The following API scopes are required: * * - Falcon FileVantage | Read & Write * * ## Import * * filevantage rule group can be imported by specifying the policy id. * * ```sh * $ pulumi import crowdstrike:index/filevantageRuleGroup:FilevantageRuleGroup example 7fb858a949034a0cbca175f660f1e769 * ``` */ export declare class FilevantageRuleGroup extends pulumi.CustomResource { /** * Get an existing FilevantageRuleGroup 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?: FilevantageRuleGroupState, opts?: pulumi.CustomResourceOptions): FilevantageRuleGroup; /** * Returns true if the given object is an instance of FilevantageRuleGroup. 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 FilevantageRuleGroup; /** * Description of the filevantage rule group. */ readonly description: pulumi.Output<string | undefined>; readonly lastUpdated: pulumi.Output<string>; /** * Name of the filevantage rule group. */ readonly name: pulumi.Output<string>; /** * Rules to be associated with the rule group. Precedence is determined by the order of the rules in the list. */ readonly rules: pulumi.Output<outputs.FilevantageRuleGroupRule[] | undefined>; /** * The type of filevantage rule group. */ readonly type: pulumi.Output<string | undefined>; /** * Create a FilevantageRuleGroup 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?: FilevantageRuleGroupArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering FilevantageRuleGroup resources. */ export interface FilevantageRuleGroupState { /** * Description of the filevantage rule group. */ description?: pulumi.Input<string>; lastUpdated?: pulumi.Input<string>; /** * Name of the filevantage rule group. */ name?: pulumi.Input<string>; /** * Rules to be associated with the rule group. Precedence is determined by the order of the rules in the list. */ rules?: pulumi.Input<pulumi.Input<inputs.FilevantageRuleGroupRule>[]>; /** * The type of filevantage rule group. */ type?: pulumi.Input<string>; } /** * The set of arguments for constructing a FilevantageRuleGroup resource. */ export interface FilevantageRuleGroupArgs { /** * Description of the filevantage rule group. */ description?: pulumi.Input<string>; /** * Name of the filevantage rule group. */ name?: pulumi.Input<string>; /** * Rules to be associated with the rule group. Precedence is determined by the order of the rules in the list. */ rules?: pulumi.Input<pulumi.Input<inputs.FilevantageRuleGroupRule>[]>; /** * The type of filevantage rule group. */ type?: pulumi.Input<string>; }