rhizo-co-terraform-provider-oci
Version:
Prebuilt oci Provider for Terraform CDK (cdktf)
348 lines (347 loc) • 20.2 kB
TypeScript
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface OsManagementHubManagedInstanceConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/os_management_hub_managed_instance#description OsManagementHubManagedInstance#description}
*/
readonly description?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/os_management_hub_managed_instance#id OsManagementHubManagedInstance#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;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/os_management_hub_managed_instance#managed_instance_id OsManagementHubManagedInstance#managed_instance_id}
*/
readonly managedInstanceId: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/os_management_hub_managed_instance#notification_topic_id OsManagementHubManagedInstance#notification_topic_id}
*/
readonly notificationTopicId?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/os_management_hub_managed_instance#primary_management_station_id OsManagementHubManagedInstance#primary_management_station_id}
*/
readonly primaryManagementStationId?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/os_management_hub_managed_instance#secondary_management_station_id OsManagementHubManagedInstance#secondary_management_station_id}
*/
readonly secondaryManagementStationId?: string;
/**
* autonomous_settings block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/os_management_hub_managed_instance#autonomous_settings OsManagementHubManagedInstance#autonomous_settings}
*/
readonly autonomousSettings?: OsManagementHubManagedInstanceAutonomousSettings;
/**
* timeouts block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/os_management_hub_managed_instance#timeouts OsManagementHubManagedInstance#timeouts}
*/
readonly timeouts?: OsManagementHubManagedInstanceTimeouts;
}
export interface OsManagementHubManagedInstanceLifecycleEnvironment {
}
export declare function osManagementHubManagedInstanceLifecycleEnvironmentToTerraform(struct?: OsManagementHubManagedInstanceLifecycleEnvironment): any;
export declare function osManagementHubManagedInstanceLifecycleEnvironmentToHclTerraform(struct?: OsManagementHubManagedInstanceLifecycleEnvironment): any;
export declare class OsManagementHubManagedInstanceLifecycleEnvironmentOutputReference extends cdktf.ComplexObject {
private isEmptyObject;
/**
* @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(): OsManagementHubManagedInstanceLifecycleEnvironment | undefined;
set internalValue(value: OsManagementHubManagedInstanceLifecycleEnvironment | undefined);
get displayName(): string;
get id(): string;
}
export declare class OsManagementHubManagedInstanceLifecycleEnvironmentList extends cdktf.ComplexList {
protected terraformResource: cdktf.IInterpolatingParent;
protected terraformAttribute: string;
protected wrapsSet: boolean;
/**
* @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): OsManagementHubManagedInstanceLifecycleEnvironmentOutputReference;
}
export interface OsManagementHubManagedInstanceLifecycleStage {
}
export declare function osManagementHubManagedInstanceLifecycleStageToTerraform(struct?: OsManagementHubManagedInstanceLifecycleStage): any;
export declare function osManagementHubManagedInstanceLifecycleStageToHclTerraform(struct?: OsManagementHubManagedInstanceLifecycleStage): any;
export declare class OsManagementHubManagedInstanceLifecycleStageOutputReference extends cdktf.ComplexObject {
private isEmptyObject;
/**
* @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(): OsManagementHubManagedInstanceLifecycleStage | undefined;
set internalValue(value: OsManagementHubManagedInstanceLifecycleStage | undefined);
get displayName(): string;
get id(): string;
}
export declare class OsManagementHubManagedInstanceLifecycleStageList extends cdktf.ComplexList {
protected terraformResource: cdktf.IInterpolatingParent;
protected terraformAttribute: string;
protected wrapsSet: boolean;
/**
* @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): OsManagementHubManagedInstanceLifecycleStageOutputReference;
}
export interface OsManagementHubManagedInstanceManagedInstanceGroup {
}
export declare function osManagementHubManagedInstanceManagedInstanceGroupToTerraform(struct?: OsManagementHubManagedInstanceManagedInstanceGroup): any;
export declare function osManagementHubManagedInstanceManagedInstanceGroupToHclTerraform(struct?: OsManagementHubManagedInstanceManagedInstanceGroup): any;
export declare class OsManagementHubManagedInstanceManagedInstanceGroupOutputReference extends cdktf.ComplexObject {
private isEmptyObject;
/**
* @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(): OsManagementHubManagedInstanceManagedInstanceGroup | undefined;
set internalValue(value: OsManagementHubManagedInstanceManagedInstanceGroup | undefined);
get displayName(): string;
get id(): string;
}
export declare class OsManagementHubManagedInstanceManagedInstanceGroupList extends cdktf.ComplexList {
protected terraformResource: cdktf.IInterpolatingParent;
protected terraformAttribute: string;
protected wrapsSet: boolean;
/**
* @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): OsManagementHubManagedInstanceManagedInstanceGroupOutputReference;
}
export interface OsManagementHubManagedInstanceSoftwareSources {
}
export declare function osManagementHubManagedInstanceSoftwareSourcesToTerraform(struct?: OsManagementHubManagedInstanceSoftwareSources): any;
export declare function osManagementHubManagedInstanceSoftwareSourcesToHclTerraform(struct?: OsManagementHubManagedInstanceSoftwareSources): any;
export declare class OsManagementHubManagedInstanceSoftwareSourcesOutputReference extends cdktf.ComplexObject {
private isEmptyObject;
/**
* @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(): OsManagementHubManagedInstanceSoftwareSources | undefined;
set internalValue(value: OsManagementHubManagedInstanceSoftwareSources | undefined);
get description(): string;
get displayName(): string;
get id(): string;
get isMandatoryForAutonomousLinux(): cdktf.IResolvable;
get softwareSourceType(): string;
}
export declare class OsManagementHubManagedInstanceSoftwareSourcesList extends cdktf.ComplexList {
protected terraformResource: cdktf.IInterpolatingParent;
protected terraformAttribute: string;
protected wrapsSet: boolean;
/**
* @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): OsManagementHubManagedInstanceSoftwareSourcesOutputReference;
}
export interface OsManagementHubManagedInstanceAutonomousSettings {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/os_management_hub_managed_instance#is_data_collection_authorized OsManagementHubManagedInstance#is_data_collection_authorized}
*/
readonly isDataCollectionAuthorized?: boolean | cdktf.IResolvable;
}
export declare function osManagementHubManagedInstanceAutonomousSettingsToTerraform(struct?: OsManagementHubManagedInstanceAutonomousSettingsOutputReference | OsManagementHubManagedInstanceAutonomousSettings): any;
export declare function osManagementHubManagedInstanceAutonomousSettingsToHclTerraform(struct?: OsManagementHubManagedInstanceAutonomousSettingsOutputReference | OsManagementHubManagedInstanceAutonomousSettings): any;
export declare class OsManagementHubManagedInstanceAutonomousSettingsOutputReference 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(): OsManagementHubManagedInstanceAutonomousSettings | undefined;
set internalValue(value: OsManagementHubManagedInstanceAutonomousSettings | undefined);
private _isDataCollectionAuthorized?;
get isDataCollectionAuthorized(): boolean | cdktf.IResolvable;
set isDataCollectionAuthorized(value: boolean | cdktf.IResolvable);
resetIsDataCollectionAuthorized(): void;
get isDataCollectionAuthorizedInput(): boolean | cdktf.IResolvable | undefined;
get scheduledJobId(): string;
}
export interface OsManagementHubManagedInstanceTimeouts {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/os_management_hub_managed_instance#create OsManagementHubManagedInstance#create}
*/
readonly create?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/os_management_hub_managed_instance#delete OsManagementHubManagedInstance#delete}
*/
readonly delete?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/os_management_hub_managed_instance#update OsManagementHubManagedInstance#update}
*/
readonly update?: string;
}
export declare function osManagementHubManagedInstanceTimeoutsToTerraform(struct?: OsManagementHubManagedInstanceTimeouts | cdktf.IResolvable): any;
export declare function osManagementHubManagedInstanceTimeoutsToHclTerraform(struct?: OsManagementHubManagedInstanceTimeouts | cdktf.IResolvable): any;
export declare class OsManagementHubManagedInstanceTimeoutsOutputReference 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(): OsManagementHubManagedInstanceTimeouts | cdktf.IResolvable | undefined;
set internalValue(value: OsManagementHubManagedInstanceTimeouts | 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/os_management_hub_managed_instance oci_os_management_hub_managed_instance}
*/
export declare class OsManagementHubManagedInstance extends cdktf.TerraformResource {
static readonly tfResourceType = "oci_os_management_hub_managed_instance";
/**
* Generates CDKTF code for importing a OsManagementHubManagedInstance 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 OsManagementHubManagedInstance to import
* @param importFromId The id of the existing OsManagementHubManagedInstance that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/os_management_hub_managed_instance#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the OsManagementHubManagedInstance 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/os_management_hub_managed_instance oci_os_management_hub_managed_instance} 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 OsManagementHubManagedInstanceConfig
*/
constructor(scope: Construct, id: string, config: OsManagementHubManagedInstanceConfig);
get architecture(): string;
get bugUpdatesAvailable(): number;
get compartmentId(): string;
private _description?;
get description(): string;
set description(value: string);
resetDescription(): void;
get descriptionInput(): string | undefined;
get displayName(): string;
get enhancementUpdatesAvailable(): number;
private _id?;
get id(): string;
set id(value: string);
resetId(): void;
get idInput(): string | undefined;
get installedPackages(): number;
get installedWindowsUpdates(): number;
get isManagedByAutonomousLinux(): cdktf.IResolvable;
get isManagementStation(): cdktf.IResolvable;
get isRebootRequired(): cdktf.IResolvable;
get kspliceEffectiveKernelVersion(): string;
private _lifecycleEnvironment;
get lifecycleEnvironment(): OsManagementHubManagedInstanceLifecycleEnvironmentList;
private _lifecycleStage;
get lifecycleStage(): OsManagementHubManagedInstanceLifecycleStageList;
get location(): string;
private _managedInstanceGroup;
get managedInstanceGroup(): OsManagementHubManagedInstanceManagedInstanceGroupList;
private _managedInstanceId?;
get managedInstanceId(): string;
set managedInstanceId(value: string);
get managedInstanceIdInput(): string | undefined;
private _notificationTopicId?;
get notificationTopicId(): string;
set notificationTopicId(value: string);
resetNotificationTopicId(): void;
get notificationTopicIdInput(): string | undefined;
get osFamily(): string;
get osKernelVersion(): string;
get osName(): string;
get osVersion(): string;
get otherUpdatesAvailable(): number;
private _primaryManagementStationId?;
get primaryManagementStationId(): string;
set primaryManagementStationId(value: string);
resetPrimaryManagementStationId(): void;
get primaryManagementStationIdInput(): string | undefined;
get profile(): string;
get scheduledJobCount(): number;
private _secondaryManagementStationId?;
get secondaryManagementStationId(): string;
set secondaryManagementStationId(value: string);
resetSecondaryManagementStationId(): void;
get secondaryManagementStationIdInput(): string | undefined;
get securityUpdatesAvailable(): number;
private _softwareSources;
get softwareSources(): OsManagementHubManagedInstanceSoftwareSourcesList;
get status(): string;
get tenancyId(): string;
get timeCreated(): string;
get timeLastBoot(): string;
get timeLastCheckin(): string;
get timeUpdated(): string;
get updatesAvailable(): number;
get workRequestCount(): number;
private _autonomousSettings;
get autonomousSettings(): OsManagementHubManagedInstanceAutonomousSettingsOutputReference;
putAutonomousSettings(value: OsManagementHubManagedInstanceAutonomousSettings): void;
resetAutonomousSettings(): void;
get autonomousSettingsInput(): OsManagementHubManagedInstanceAutonomousSettings | undefined;
private _timeouts;
get timeouts(): OsManagementHubManagedInstanceTimeoutsOutputReference;
putTimeouts(value: OsManagementHubManagedInstanceTimeouts): void;
resetTimeouts(): void;
get timeoutsInput(): cdktf.IResolvable | OsManagementHubManagedInstanceTimeouts | undefined;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}