@pulumiverse/dynatrace
Version:
A Pulumi package for creating and managing Dynatrace cloud resources.
99 lines (98 loc) • 3.72 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
export declare class OneagentFeatures extends pulumi.CustomResource {
/**
* Get an existing OneagentFeatures 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?: OneagentFeaturesState, opts?: pulumi.CustomResourceOptions): OneagentFeatures;
/**
* Returns true if the given object is an instance of OneagentFeatures. 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 OneagentFeatures;
readonly _restore_: pulumi.Output<string>;
/**
* This setting is enabled (`true`) or disabled (`false`)
*/
readonly enabled: pulumi.Output<boolean>;
/**
* Activate this feature also in OneAgents only fulfilling the minimum Opt-In version
*/
readonly forcible: pulumi.Output<boolean | undefined>;
/**
* Instrumentation enabled (change needs a process restart)
*/
readonly instrumentation: pulumi.Output<boolean | undefined>;
/**
* Feature
*/
readonly key: pulumi.Output<string>;
/**
* The scope of this setting (PROCESS*GROUP*INSTANCE, PROCESS_GROUP). Omit this property if you want to cover the whole environment.
*/
readonly scope: pulumi.Output<string | undefined>;
/**
* Create a OneagentFeatures 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: OneagentFeaturesArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering OneagentFeatures resources.
*/
export interface OneagentFeaturesState {
_restore_?: pulumi.Input<string>;
/**
* This setting is enabled (`true`) or disabled (`false`)
*/
enabled?: pulumi.Input<boolean>;
/**
* Activate this feature also in OneAgents only fulfilling the minimum Opt-In version
*/
forcible?: pulumi.Input<boolean>;
/**
* Instrumentation enabled (change needs a process restart)
*/
instrumentation?: pulumi.Input<boolean>;
/**
* Feature
*/
key?: pulumi.Input<string>;
/**
* The scope of this setting (PROCESS*GROUP*INSTANCE, PROCESS_GROUP). Omit this property if you want to cover the whole environment.
*/
scope?: pulumi.Input<string>;
}
/**
* The set of arguments for constructing a OneagentFeatures resource.
*/
export interface OneagentFeaturesArgs {
/**
* This setting is enabled (`true`) or disabled (`false`)
*/
enabled: pulumi.Input<boolean>;
/**
* Activate this feature also in OneAgents only fulfilling the minimum Opt-In version
*/
forcible?: pulumi.Input<boolean>;
/**
* Instrumentation enabled (change needs a process restart)
*/
instrumentation?: pulumi.Input<boolean>;
/**
* Feature
*/
key: pulumi.Input<string>;
/**
* The scope of this setting (PROCESS*GROUP*INSTANCE, PROCESS_GROUP). Omit this property if you want to cover the whole environment.
*/
scope?: pulumi.Input<string>;
}