rhizo-co-terraform-provider-oci
Version:
Prebuilt oci Provider for Terraform CDK (cdktf)
257 lines (256 loc) • 13.4 kB
TypeScript
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface StackMonitoringProcessSetConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_process_set#compartment_id StackMonitoringProcessSet#compartment_id}
*/
readonly compartmentId: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_process_set#defined_tags StackMonitoringProcessSet#defined_tags}
*/
readonly definedTags?: {
[key: string]: string;
};
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_process_set#display_name StackMonitoringProcessSet#display_name}
*/
readonly displayName: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_process_set#freeform_tags StackMonitoringProcessSet#freeform_tags}
*/
readonly freeformTags?: {
[key: string]: string;
};
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_process_set#id StackMonitoringProcessSet#id}
*
* Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
* If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
*/
readonly id?: string;
/**
* specification block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_process_set#specification StackMonitoringProcessSet#specification}
*/
readonly specification: StackMonitoringProcessSetSpecification;
/**
* timeouts block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_process_set#timeouts StackMonitoringProcessSet#timeouts}
*/
readonly timeouts?: StackMonitoringProcessSetTimeouts;
}
export interface StackMonitoringProcessSetSpecificationItems {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_process_set#label StackMonitoringProcessSet#label}
*/
readonly label?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_process_set#process_command StackMonitoringProcessSet#process_command}
*/
readonly processCommand?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_process_set#process_line_regex_pattern StackMonitoringProcessSet#process_line_regex_pattern}
*/
readonly processLineRegexPattern?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_process_set#process_user StackMonitoringProcessSet#process_user}
*/
readonly processUser?: string;
}
export declare function stackMonitoringProcessSetSpecificationItemsToTerraform(struct?: StackMonitoringProcessSetSpecificationItems | cdktf.IResolvable): any;
export declare function stackMonitoringProcessSetSpecificationItemsToHclTerraform(struct?: StackMonitoringProcessSetSpecificationItems | cdktf.IResolvable): any;
export declare class StackMonitoringProcessSetSpecificationItemsOutputReference extends cdktf.ComplexObject {
private isEmptyObject;
private resolvableValue?;
/**
* @param terraformResource The parent resource
* @param terraformAttribute The attribute on the parent resource this class is referencing
* @param complexObjectIndex the index of this item in the list
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
*/
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
get internalValue(): StackMonitoringProcessSetSpecificationItems | cdktf.IResolvable | undefined;
set internalValue(value: StackMonitoringProcessSetSpecificationItems | cdktf.IResolvable | undefined);
private _label?;
get label(): string;
set label(value: string);
resetLabel(): void;
get labelInput(): string | undefined;
private _processCommand?;
get processCommand(): string;
set processCommand(value: string);
resetProcessCommand(): void;
get processCommandInput(): string | undefined;
private _processLineRegexPattern?;
get processLineRegexPattern(): string;
set processLineRegexPattern(value: string);
resetProcessLineRegexPattern(): void;
get processLineRegexPatternInput(): string | undefined;
private _processUser?;
get processUser(): string;
set processUser(value: string);
resetProcessUser(): void;
get processUserInput(): string | undefined;
}
export declare class StackMonitoringProcessSetSpecificationItemsList extends cdktf.ComplexList {
protected terraformResource: cdktf.IInterpolatingParent;
protected terraformAttribute: string;
protected wrapsSet: boolean;
internalValue?: StackMonitoringProcessSetSpecificationItems[] | cdktf.IResolvable;
/**
* @param terraformResource The parent resource
* @param terraformAttribute The attribute on the parent resource this class is referencing
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
*/
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
/**
* @param index the index of the item to return
*/
get(index: number): StackMonitoringProcessSetSpecificationItemsOutputReference;
}
export interface StackMonitoringProcessSetSpecification {
/**
* items block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_process_set#items StackMonitoringProcessSet#items}
*/
readonly items: StackMonitoringProcessSetSpecificationItems[] | cdktf.IResolvable;
}
export declare function stackMonitoringProcessSetSpecificationToTerraform(struct?: StackMonitoringProcessSetSpecificationOutputReference | StackMonitoringProcessSetSpecification): any;
export declare function stackMonitoringProcessSetSpecificationToHclTerraform(struct?: StackMonitoringProcessSetSpecificationOutputReference | StackMonitoringProcessSetSpecification): any;
export declare class StackMonitoringProcessSetSpecificationOutputReference extends cdktf.ComplexObject {
private isEmptyObject;
/**
* @param terraformResource The parent resource
* @param terraformAttribute The attribute on the parent resource this class is referencing
*/
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
get internalValue(): StackMonitoringProcessSetSpecification | undefined;
set internalValue(value: StackMonitoringProcessSetSpecification | undefined);
private _items;
get items(): StackMonitoringProcessSetSpecificationItemsList;
putItems(value: StackMonitoringProcessSetSpecificationItems[] | cdktf.IResolvable): void;
get itemsInput(): cdktf.IResolvable | StackMonitoringProcessSetSpecificationItems[] | undefined;
}
export interface StackMonitoringProcessSetTimeouts {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_process_set#create StackMonitoringProcessSet#create}
*/
readonly create?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_process_set#delete StackMonitoringProcessSet#delete}
*/
readonly delete?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_process_set#update StackMonitoringProcessSet#update}
*/
readonly update?: string;
}
export declare function stackMonitoringProcessSetTimeoutsToTerraform(struct?: StackMonitoringProcessSetTimeouts | cdktf.IResolvable): any;
export declare function stackMonitoringProcessSetTimeoutsToHclTerraform(struct?: StackMonitoringProcessSetTimeouts | cdktf.IResolvable): any;
export declare class StackMonitoringProcessSetTimeoutsOutputReference extends cdktf.ComplexObject {
private isEmptyObject;
private resolvableValue?;
/**
* @param terraformResource The parent resource
* @param terraformAttribute The attribute on the parent resource this class is referencing
*/
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
get internalValue(): StackMonitoringProcessSetTimeouts | cdktf.IResolvable | undefined;
set internalValue(value: StackMonitoringProcessSetTimeouts | cdktf.IResolvable | undefined);
private _create?;
get create(): string;
set create(value: string);
resetCreate(): void;
get createInput(): string | undefined;
private _delete?;
get delete(): string;
set delete(value: string);
resetDelete(): void;
get deleteInput(): string | undefined;
private _update?;
get update(): string;
set update(value: string);
resetUpdate(): void;
get updateInput(): string | undefined;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_process_set oci_stack_monitoring_process_set}
*/
export declare class StackMonitoringProcessSet extends cdktf.TerraformResource {
static readonly tfResourceType = "oci_stack_monitoring_process_set";
/**
* Generates CDKTF code for importing a StackMonitoringProcessSet resource upon running "cdktf plan <stack-name>"
* @param scope The scope in which to define this construct
* @param importToId The construct id used in the generated config for the StackMonitoringProcessSet to import
* @param importFromId The id of the existing StackMonitoringProcessSet that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_process_set#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the StackMonitoringProcessSet to import is found
*/
static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): cdktf.ImportableResource;
/**
* Create a new {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_process_set oci_stack_monitoring_process_set} Resource
*
* @param scope The scope in which to define this construct
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
* @param options StackMonitoringProcessSetConfig
*/
constructor(scope: Construct, id: string, config: StackMonitoringProcessSetConfig);
private _compartmentId?;
get compartmentId(): string;
set compartmentId(value: string);
get compartmentIdInput(): string | undefined;
private _definedTags?;
get definedTags(): {
[key: string]: string;
};
set definedTags(value: {
[key: string]: string;
});
resetDefinedTags(): void;
get definedTagsInput(): {
[key: string]: string;
} | undefined;
private _displayName?;
get displayName(): string;
set displayName(value: string);
get displayNameInput(): string | undefined;
private _freeformTags?;
get freeformTags(): {
[key: string]: string;
};
set freeformTags(value: {
[key: string]: string;
});
resetFreeformTags(): void;
get freeformTagsInput(): {
[key: string]: string;
} | undefined;
private _id?;
get id(): string;
set id(value: string);
resetId(): void;
get idInput(): string | undefined;
get revision(): string;
get state(): string;
private _systemTags;
get systemTags(): cdktf.StringMap;
get timeCreated(): string;
get timeUpdated(): string;
private _specification;
get specification(): StackMonitoringProcessSetSpecificationOutputReference;
putSpecification(value: StackMonitoringProcessSetSpecification): void;
get specificationInput(): StackMonitoringProcessSetSpecification | undefined;
private _timeouts;
get timeouts(): StackMonitoringProcessSetTimeoutsOutputReference;
putTimeouts(value: StackMonitoringProcessSetTimeouts): void;
resetTimeouts(): void;
get timeoutsInput(): cdktf.IResolvable | StackMonitoringProcessSetTimeouts | undefined;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}