@pulumi/oci 1.4.0-alpha.1689314978 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/containerengine/containerInstance.d.ts +55 -50
- package/containerengine/containerInstance.js +1 -2
- package/containerengine/containerInstance.js.map +1 -1
- package/containerinstances/getContainerInstance.d.ts +24 -24
- package/containerinstances/getContainerInstance.js +2 -2
- package/containerinstances/getContainerInstanceShapes.d.ts +4 -4
- package/containerinstances/getContainerInstanceShapes.js +2 -2
- package/containerinstances/getContainerInstances.d.ts +10 -10
- package/containerinstances/getContainerInstances.js +2 -2
- package/core/getInstance.d.ts +5 -1
- package/core/getInstance.js.map +1 -1
- package/core/getInstanceConfiguration.d.ts +1 -1
- package/core/getInstanceConfigurations.d.ts +1 -1
- package/core/getInstances.d.ts +1 -1
- package/core/instance.d.ts +18 -111
- package/core/instance.js +2 -108
- package/core/instance.js.map +1 -1
- package/core/instanceConfiguration.d.ts +166 -3
- package/core/instanceConfiguration.js +163 -0
- package/core/instanceConfiguration.js.map +1 -1
- package/disasterrecovery/drPlan.d.ts +7 -7
- package/disasterrecovery/drPlanExecution.d.ts +9 -9
- package/disasterrecovery/drProtectionGroup.d.ts +16 -5
- package/disasterrecovery/drProtectionGroup.js +11 -0
- package/disasterrecovery/drProtectionGroup.js.map +1 -1
- package/disasterrecovery/getDrPlan.d.ts +4 -4
- package/disasterrecovery/getDrPlanExecution.d.ts +5 -5
- package/disasterrecovery/getDrPlanExecutions.d.ts +1 -1
- package/disasterrecovery/getDrPlans.d.ts +1 -1
- package/disasterrecovery/getDrProtectionGroup.d.ts +3 -3
- package/disasterrecovery/getDrProtectionGroups.d.ts +15 -1
- package/disasterrecovery/getDrProtectionGroups.js +3 -0
- package/disasterrecovery/getDrProtectionGroups.js.map +1 -1
- package/filestorage/export.d.ts +15 -0
- package/filestorage/export.js +5 -0
- package/filestorage/export.js.map +1 -1
- package/filestorage/fileSystem.d.ts +2 -2
- package/filestorage/getOutboundConnector.d.ts +116 -0
- package/filestorage/getOutboundConnector.js +51 -0
- package/filestorage/getOutboundConnector.js.map +1 -0
- package/filestorage/getOutboundConnectors.d.ts +127 -0
- package/filestorage/getOutboundConnectors.js +64 -0
- package/filestorage/getOutboundConnectors.js.map +1 -0
- package/filestorage/getSnapshots.d.ts +6 -0
- package/filestorage/getSnapshots.js +6 -0
- package/filestorage/getSnapshots.js.map +1 -1
- package/filestorage/index.d.ts +9 -0
- package/filestorage/index.js +12 -1
- package/filestorage/index.js.map +1 -1
- package/filestorage/mountTarget.d.ts +56 -0
- package/filestorage/mountTarget.js +24 -0
- package/filestorage/mountTarget.js.map +1 -1
- package/filestorage/outboundConnector.d.ts +257 -0
- package/filestorage/outboundConnector.js +145 -0
- package/filestorage/outboundConnector.js.map +1 -0
- package/package.json +2 -2
- package/provider.js +1 -1
- package/provider.js.map +1 -1
- package/types/input.d.ts +971 -157
- package/types/output.d.ts +2844 -603
|
@@ -4,7 +4,7 @@ import * as outputs from "../types/output";
|
|
|
4
4
|
/**
|
|
5
5
|
* This data source provides the list of Container Instances in Oracle Cloud Infrastructure Container Instances service.
|
|
6
6
|
*
|
|
7
|
-
* Returns a list of
|
|
7
|
+
* Returns a list of container instances.
|
|
8
8
|
*
|
|
9
9
|
* ## Example Usage
|
|
10
10
|
*
|
|
@@ -30,7 +30,7 @@ export interface GetContainerInstancesArgs {
|
|
|
30
30
|
*/
|
|
31
31
|
availabilityDomain?: string;
|
|
32
32
|
/**
|
|
33
|
-
* The
|
|
33
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
|
|
34
34
|
*/
|
|
35
35
|
compartmentId: string;
|
|
36
36
|
/**
|
|
@@ -39,7 +39,7 @@ export interface GetContainerInstancesArgs {
|
|
|
39
39
|
displayName?: string;
|
|
40
40
|
filters?: inputs.ContainerInstances.GetContainerInstancesFilter[];
|
|
41
41
|
/**
|
|
42
|
-
* A filter to return
|
|
42
|
+
* A filter to only return resources that match the given lifecycle state.
|
|
43
43
|
*/
|
|
44
44
|
state?: string;
|
|
45
45
|
}
|
|
@@ -48,11 +48,11 @@ export interface GetContainerInstancesArgs {
|
|
|
48
48
|
*/
|
|
49
49
|
export interface GetContainerInstancesResult {
|
|
50
50
|
/**
|
|
51
|
-
*
|
|
51
|
+
* The availability domain to place the container instance.
|
|
52
52
|
*/
|
|
53
53
|
readonly availabilityDomain?: string;
|
|
54
54
|
/**
|
|
55
|
-
*
|
|
55
|
+
* The OCID of the compartment.
|
|
56
56
|
*/
|
|
57
57
|
readonly compartmentId: string;
|
|
58
58
|
/**
|
|
@@ -60,7 +60,7 @@ export interface GetContainerInstancesResult {
|
|
|
60
60
|
*/
|
|
61
61
|
readonly containerInstanceCollections: outputs.ContainerInstances.GetContainerInstancesContainerInstanceCollection[];
|
|
62
62
|
/**
|
|
63
|
-
*
|
|
63
|
+
* A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
|
64
64
|
*/
|
|
65
65
|
readonly displayName?: string;
|
|
66
66
|
readonly filters?: outputs.ContainerInstances.GetContainerInstancesFilter[];
|
|
@@ -69,14 +69,14 @@ export interface GetContainerInstancesResult {
|
|
|
69
69
|
*/
|
|
70
70
|
readonly id: string;
|
|
71
71
|
/**
|
|
72
|
-
* The current state of the
|
|
72
|
+
* The current state of the container instance.
|
|
73
73
|
*/
|
|
74
74
|
readonly state?: string;
|
|
75
75
|
}
|
|
76
76
|
/**
|
|
77
77
|
* This data source provides the list of Container Instances in Oracle Cloud Infrastructure Container Instances service.
|
|
78
78
|
*
|
|
79
|
-
* Returns a list of
|
|
79
|
+
* Returns a list of container instances.
|
|
80
80
|
*
|
|
81
81
|
* ## Example Usage
|
|
82
82
|
*
|
|
@@ -102,7 +102,7 @@ export interface GetContainerInstancesOutputArgs {
|
|
|
102
102
|
*/
|
|
103
103
|
availabilityDomain?: pulumi.Input<string>;
|
|
104
104
|
/**
|
|
105
|
-
* The
|
|
105
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
|
|
106
106
|
*/
|
|
107
107
|
compartmentId: pulumi.Input<string>;
|
|
108
108
|
/**
|
|
@@ -111,7 +111,7 @@ export interface GetContainerInstancesOutputArgs {
|
|
|
111
111
|
displayName?: pulumi.Input<string>;
|
|
112
112
|
filters?: pulumi.Input<pulumi.Input<inputs.ContainerInstances.GetContainerInstancesFilterArgs>[]>;
|
|
113
113
|
/**
|
|
114
|
-
* A filter to return
|
|
114
|
+
* A filter to only return resources that match the given lifecycle state.
|
|
115
115
|
*/
|
|
116
116
|
state?: pulumi.Input<string>;
|
|
117
117
|
}
|
|
@@ -8,7 +8,7 @@ const utilities = require("../utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* This data source provides the list of Container Instances in Oracle Cloud Infrastructure Container Instances service.
|
|
10
10
|
*
|
|
11
|
-
* Returns a list of
|
|
11
|
+
* Returns a list of container instances.
|
|
12
12
|
*
|
|
13
13
|
* ## Example Usage
|
|
14
14
|
*
|
|
@@ -38,7 +38,7 @@ exports.getContainerInstances = getContainerInstances;
|
|
|
38
38
|
/**
|
|
39
39
|
* This data source provides the list of Container Instances in Oracle Cloud Infrastructure Container Instances service.
|
|
40
40
|
*
|
|
41
|
-
* Returns a list of
|
|
41
|
+
* Returns a list of container instances.
|
|
42
42
|
*
|
|
43
43
|
* ## Example Usage
|
|
44
44
|
*
|
package/core/getInstance.d.ts
CHANGED
|
@@ -55,7 +55,7 @@ export interface GetInstanceResult {
|
|
|
55
55
|
*/
|
|
56
56
|
readonly capacityReservationId: string;
|
|
57
57
|
/**
|
|
58
|
-
* The OCID of the compartment
|
|
58
|
+
* The OCID of the compartment containing images to search
|
|
59
59
|
*/
|
|
60
60
|
readonly compartmentId: string;
|
|
61
61
|
readonly computeClusterId: string;
|
|
@@ -106,6 +106,10 @@ export interface GetInstanceResult {
|
|
|
106
106
|
* @deprecated The 'image' field has been deprecated. Please use 'source_details' instead. If both fields are specified, then 'source_details' will be used.
|
|
107
107
|
*/
|
|
108
108
|
readonly image: string;
|
|
109
|
+
/**
|
|
110
|
+
* The OCID of the Instance Configuration used to source launch details for this instance. Any other fields supplied in the instance launch request override the details stored in the Instance Configuration for this instance launch.
|
|
111
|
+
*/
|
|
112
|
+
readonly instanceConfigurationId: string;
|
|
109
113
|
readonly instanceId: string;
|
|
110
114
|
/**
|
|
111
115
|
* Optional mutable instance options
|
package/core/getInstance.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getInstance.js","sourceRoot":"","sources":["../../core/getInstance.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,WAAW,CAAC,IAAqB,EAAE,IAA2B;IAE1E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kCAAkC,EAAE;QAC7D,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,kCAMC;
|
|
1
|
+
{"version":3,"file":"getInstance.js","sourceRoot":"","sources":["../../core/getInstance.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,WAAW,CAAC,IAAqB,EAAE,IAA2B;IAE1E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kCAAkC,EAAE;QAC7D,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,kCAMC;AA2KD;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAA2B;IACtF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,WAAW,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACtE,CAAC;AAFD,8CAEC"}
|
|
@@ -31,7 +31,7 @@ export interface GetInstanceConfigurationArgs {
|
|
|
31
31
|
*/
|
|
32
32
|
export interface GetInstanceConfigurationResult {
|
|
33
33
|
/**
|
|
34
|
-
* The OCID of the compartment containing
|
|
34
|
+
* The OCID of the compartment containing images to search
|
|
35
35
|
*/
|
|
36
36
|
readonly compartmentId: string;
|
|
37
37
|
/**
|
|
@@ -33,7 +33,7 @@ export interface GetInstanceConfigurationsArgs {
|
|
|
33
33
|
*/
|
|
34
34
|
export interface GetInstanceConfigurationsResult {
|
|
35
35
|
/**
|
|
36
|
-
* The OCID of the compartment containing
|
|
36
|
+
* The OCID of the compartment containing images to search
|
|
37
37
|
*/
|
|
38
38
|
readonly compartmentId: string;
|
|
39
39
|
readonly filters?: outputs.Core.GetInstanceConfigurationsFilter[];
|
package/core/getInstances.d.ts
CHANGED
|
@@ -71,7 +71,7 @@ export interface GetInstancesResult {
|
|
|
71
71
|
*/
|
|
72
72
|
readonly capacityReservationId?: string;
|
|
73
73
|
/**
|
|
74
|
-
* The OCID of the compartment
|
|
74
|
+
* The OCID of the compartment containing images to search
|
|
75
75
|
*/
|
|
76
76
|
readonly compartmentId: string;
|
|
77
77
|
readonly computeClusterId?: string;
|
package/core/instance.d.ts
CHANGED
|
@@ -48,111 +48,6 @@ import * as outputs from "../types/output";
|
|
|
48
48
|
* use the [CreateComputeCapacityReport](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/ComputeCapacityReport/CreateComputeCapacityReport)
|
|
49
49
|
* operation.
|
|
50
50
|
*
|
|
51
|
-
* ## Example Usage
|
|
52
|
-
*
|
|
53
|
-
* ```typescript
|
|
54
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
55
|
-
* import * as oci from "@pulumi/oci";
|
|
56
|
-
*
|
|
57
|
-
* const testInstance = new oci.core.Instance("testInstance", {
|
|
58
|
-
* availabilityDomain: _var.instance_availability_domain,
|
|
59
|
-
* compartmentId: _var.compartment_id,
|
|
60
|
-
* shape: _var.instance_shape,
|
|
61
|
-
* agentConfig: {
|
|
62
|
-
* areAllPluginsDisabled: _var.instance_agent_config_are_all_plugins_disabled,
|
|
63
|
-
* isManagementDisabled: _var.instance_agent_config_is_management_disabled,
|
|
64
|
-
* isMonitoringDisabled: _var.instance_agent_config_is_monitoring_disabled,
|
|
65
|
-
* pluginsConfigs: [{
|
|
66
|
-
* desiredState: _var.instance_agent_config_plugins_config_desired_state,
|
|
67
|
-
* name: _var.instance_agent_config_plugins_config_name,
|
|
68
|
-
* }],
|
|
69
|
-
* },
|
|
70
|
-
* availabilityConfig: {
|
|
71
|
-
* isLiveMigrationPreferred: _var.instance_availability_config_is_live_migration_preferred,
|
|
72
|
-
* recoveryAction: _var.instance_availability_config_recovery_action,
|
|
73
|
-
* },
|
|
74
|
-
* computeClusterId: oci_core_compute_cluster.test_compute_cluster.id,
|
|
75
|
-
* createVnicDetails: {
|
|
76
|
-
* assignPrivateDnsRecord: _var.instance_create_vnic_details_assign_private_dns_record,
|
|
77
|
-
* assignPublicIp: _var.instance_create_vnic_details_assign_public_ip,
|
|
78
|
-
* definedTags: {
|
|
79
|
-
* "Operations.CostCenter": "42",
|
|
80
|
-
* },
|
|
81
|
-
* displayName: _var.instance_create_vnic_details_display_name,
|
|
82
|
-
* freeformTags: {
|
|
83
|
-
* Department: "Finance",
|
|
84
|
-
* },
|
|
85
|
-
* hostnameLabel: _var.instance_create_vnic_details_hostname_label,
|
|
86
|
-
* nsgIds: _var.instance_create_vnic_details_nsg_ids,
|
|
87
|
-
* privateIp: _var.instance_create_vnic_details_private_ip,
|
|
88
|
-
* skipSourceDestCheck: _var.instance_create_vnic_details_skip_source_dest_check,
|
|
89
|
-
* subnetId: oci_core_subnet.test_subnet.id,
|
|
90
|
-
* vlanId: oci_core_vlan.test_vlan.id,
|
|
91
|
-
* },
|
|
92
|
-
* dedicatedVmHostId: oci_core_dedicated_vm_host.test_dedicated_vm_host.id,
|
|
93
|
-
* definedTags: {
|
|
94
|
-
* "Operations.CostCenter": "42",
|
|
95
|
-
* },
|
|
96
|
-
* displayName: _var.instance_display_name,
|
|
97
|
-
* extendedMetadata: {
|
|
98
|
-
* some_string: "stringA",
|
|
99
|
-
* nested_object: "{\"some_string\": \"stringB\", \"object\": {\"some_string\": \"stringC\"}}",
|
|
100
|
-
* },
|
|
101
|
-
* faultDomain: _var.instance_fault_domain,
|
|
102
|
-
* freeformTags: {
|
|
103
|
-
* Department: "Finance",
|
|
104
|
-
* },
|
|
105
|
-
* hostnameLabel: _var.instance_hostname_label,
|
|
106
|
-
* instanceOptions: {
|
|
107
|
-
* areLegacyImdsEndpointsDisabled: _var.instance_instance_options_are_legacy_imds_endpoints_disabled,
|
|
108
|
-
* },
|
|
109
|
-
* ipxeScript: _var.instance_ipxe_script,
|
|
110
|
-
* isPvEncryptionInTransitEnabled: _var.instance_is_pv_encryption_in_transit_enabled,
|
|
111
|
-
* launchOptions: {
|
|
112
|
-
* bootVolumeType: _var.instance_launch_options_boot_volume_type,
|
|
113
|
-
* firmware: _var.instance_launch_options_firmware,
|
|
114
|
-
* isConsistentVolumeNamingEnabled: _var.instance_launch_options_is_consistent_volume_naming_enabled,
|
|
115
|
-
* isPvEncryptionInTransitEnabled: _var.instance_launch_options_is_pv_encryption_in_transit_enabled,
|
|
116
|
-
* networkType: _var.instance_launch_options_network_type,
|
|
117
|
-
* remoteDataVolumeType: _var.instance_launch_options_remote_data_volume_type,
|
|
118
|
-
* },
|
|
119
|
-
* metadata: _var.instance_metadata,
|
|
120
|
-
* platformConfig: {
|
|
121
|
-
* type: _var.instance_platform_config_type,
|
|
122
|
-
* areVirtualInstructionsEnabled: _var.instance_platform_config_are_virtual_instructions_enabled,
|
|
123
|
-
* isAccessControlServiceEnabled: _var.instance_platform_config_is_access_control_service_enabled,
|
|
124
|
-
* isInputOutputMemoryManagementUnitEnabled: _var.instance_platform_config_is_input_output_memory_management_unit_enabled,
|
|
125
|
-
* isMeasuredBootEnabled: _var.instance_platform_config_is_measured_boot_enabled,
|
|
126
|
-
* isMemoryEncryptionEnabled: _var.instance_platform_config_is_memory_encryption_enabled,
|
|
127
|
-
* isSecureBootEnabled: _var.instance_platform_config_is_secure_boot_enabled,
|
|
128
|
-
* isSymmetricMultiThreadingEnabled: _var.instance_platform_config_is_symmetric_multi_threading_enabled,
|
|
129
|
-
* isTrustedPlatformModuleEnabled: _var.instance_platform_config_is_trusted_platform_module_enabled,
|
|
130
|
-
* numaNodesPerSocket: _var.instance_platform_config_numa_nodes_per_socket,
|
|
131
|
-
* percentageOfCoresEnabled: _var.instance_platform_config_percentage_of_cores_enabled,
|
|
132
|
-
* },
|
|
133
|
-
* preemptibleInstanceConfig: {
|
|
134
|
-
* preemptionAction: {
|
|
135
|
-
* type: _var.instance_preemptible_instance_config_preemption_action_type,
|
|
136
|
-
* preserveBootVolume: _var.instance_preemptible_instance_config_preemption_action_preserve_boot_volume,
|
|
137
|
-
* },
|
|
138
|
-
* },
|
|
139
|
-
* shapeConfig: {
|
|
140
|
-
* baselineOcpuUtilization: _var.instance_shape_config_baseline_ocpu_utilization,
|
|
141
|
-
* memoryInGbs: _var.instance_shape_config_memory_in_gbs,
|
|
142
|
-
* nvmes: _var.instance_shape_config_nvmes,
|
|
143
|
-
* ocpus: _var.instance_shape_config_ocpus,
|
|
144
|
-
* },
|
|
145
|
-
* sourceDetails: {
|
|
146
|
-
* sourceId: oci_core_image.test_image.id,
|
|
147
|
-
* sourceType: "image",
|
|
148
|
-
* bootVolumeSizeInGbs: _var.instance_source_details_boot_volume_size_in_gbs,
|
|
149
|
-
* bootVolumeVpusPerGb: _var.instance_source_details_boot_volume_vpus_per_gb,
|
|
150
|
-
* kmsKeyId: oci_kms_key.test_key.id,
|
|
151
|
-
* },
|
|
152
|
-
* preserveBootVolume: false,
|
|
153
|
-
* });
|
|
154
|
-
* ```
|
|
155
|
-
*
|
|
156
51
|
* ## Import
|
|
157
52
|
*
|
|
158
53
|
* Instances can be imported using the `id`, e.g.
|
|
@@ -199,7 +94,7 @@ export declare class Instance extends pulumi.CustomResource {
|
|
|
199
94
|
*/
|
|
200
95
|
readonly capacityReservationId: pulumi.Output<string>;
|
|
201
96
|
/**
|
|
202
|
-
* (Updatable) The OCID of the compartment
|
|
97
|
+
* (Updatable) The OCID of the compartment containing images to search
|
|
203
98
|
*/
|
|
204
99
|
readonly compartmentId: pulumi.Output<string>;
|
|
205
100
|
/**
|
|
@@ -229,7 +124,7 @@ export declare class Instance extends pulumi.CustomResource {
|
|
|
229
124
|
*/
|
|
230
125
|
readonly extendedMetadata: pulumi.Output<{
|
|
231
126
|
[key: string]: any;
|
|
232
|
-
}
|
|
127
|
+
}>;
|
|
233
128
|
/**
|
|
234
129
|
* (Updatable) A fault domain is a grouping of hardware and infrastructure within an availability domain. Each availability domain contains three fault domains. Fault domains let you distribute your instances so that they are not on the same physical hardware within a single availability domain. A hardware failure or Compute hardware maintenance that affects one fault domain does not affect instances in other fault domains.
|
|
235
130
|
*
|
|
@@ -258,6 +153,10 @@ export declare class Instance extends pulumi.CustomResource {
|
|
|
258
153
|
* @deprecated The 'image' field has been deprecated. Please use 'source_details' instead. If both fields are specified, then 'source_details' will be used.
|
|
259
154
|
*/
|
|
260
155
|
readonly image: pulumi.Output<string>;
|
|
156
|
+
/**
|
|
157
|
+
* The OCID of the Instance Configuration containing instance launch details. Any other fields supplied in this instance launch request will override the details stored in the Instance Configuration for this instance launch.
|
|
158
|
+
*/
|
|
159
|
+
readonly instanceConfigurationId: pulumi.Output<string>;
|
|
261
160
|
/**
|
|
262
161
|
* (Updatable) Optional mutable instance options
|
|
263
162
|
*/
|
|
@@ -328,7 +227,7 @@ export declare class Instance extends pulumi.CustomResource {
|
|
|
328
227
|
*/
|
|
329
228
|
readonly metadata: pulumi.Output<{
|
|
330
229
|
[key: string]: any;
|
|
331
|
-
}
|
|
230
|
+
}>;
|
|
332
231
|
/**
|
|
333
232
|
* The platform configuration requested for the instance.
|
|
334
233
|
*
|
|
@@ -446,7 +345,7 @@ export interface InstanceState {
|
|
|
446
345
|
*/
|
|
447
346
|
capacityReservationId?: pulumi.Input<string>;
|
|
448
347
|
/**
|
|
449
|
-
* (Updatable) The OCID of the compartment
|
|
348
|
+
* (Updatable) The OCID of the compartment containing images to search
|
|
450
349
|
*/
|
|
451
350
|
compartmentId?: pulumi.Input<string>;
|
|
452
351
|
/**
|
|
@@ -505,6 +404,10 @@ export interface InstanceState {
|
|
|
505
404
|
* @deprecated The 'image' field has been deprecated. Please use 'source_details' instead. If both fields are specified, then 'source_details' will be used.
|
|
506
405
|
*/
|
|
507
406
|
image?: pulumi.Input<string>;
|
|
407
|
+
/**
|
|
408
|
+
* The OCID of the Instance Configuration containing instance launch details. Any other fields supplied in this instance launch request will override the details stored in the Instance Configuration for this instance launch.
|
|
409
|
+
*/
|
|
410
|
+
instanceConfigurationId?: pulumi.Input<string>;
|
|
508
411
|
/**
|
|
509
412
|
* (Updatable) Optional mutable instance options
|
|
510
413
|
*/
|
|
@@ -681,7 +584,7 @@ export interface InstanceArgs {
|
|
|
681
584
|
*/
|
|
682
585
|
capacityReservationId?: pulumi.Input<string>;
|
|
683
586
|
/**
|
|
684
|
-
* (Updatable) The OCID of the compartment
|
|
587
|
+
* (Updatable) The OCID of the compartment containing images to search
|
|
685
588
|
*/
|
|
686
589
|
compartmentId: pulumi.Input<string>;
|
|
687
590
|
/**
|
|
@@ -740,6 +643,10 @@ export interface InstanceArgs {
|
|
|
740
643
|
* @deprecated The 'image' field has been deprecated. Please use 'source_details' instead. If both fields are specified, then 'source_details' will be used.
|
|
741
644
|
*/
|
|
742
645
|
image?: pulumi.Input<string>;
|
|
646
|
+
/**
|
|
647
|
+
* The OCID of the Instance Configuration containing instance launch details. Any other fields supplied in this instance launch request will override the details stored in the Instance Configuration for this instance launch.
|
|
648
|
+
*/
|
|
649
|
+
instanceConfigurationId?: pulumi.Input<string>;
|
|
743
650
|
/**
|
|
744
651
|
* (Updatable) Optional mutable instance options
|
|
745
652
|
*/
|
|
@@ -828,7 +735,7 @@ export interface InstanceArgs {
|
|
|
828
735
|
*
|
|
829
736
|
* You can enumerate all available shapes by calling [ListShapes](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Shape/ListShapes).
|
|
830
737
|
*/
|
|
831
|
-
shape
|
|
738
|
+
shape?: pulumi.Input<string>;
|
|
832
739
|
/**
|
|
833
740
|
* (Updatable) The shape configuration requested for the instance.
|
|
834
741
|
*
|
package/core/instance.js
CHANGED
|
@@ -52,111 +52,6 @@ const utilities = require("../utilities");
|
|
|
52
52
|
* use the [CreateComputeCapacityReport](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/ComputeCapacityReport/CreateComputeCapacityReport)
|
|
53
53
|
* operation.
|
|
54
54
|
*
|
|
55
|
-
* ## Example Usage
|
|
56
|
-
*
|
|
57
|
-
* ```typescript
|
|
58
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
59
|
-
* import * as oci from "@pulumi/oci";
|
|
60
|
-
*
|
|
61
|
-
* const testInstance = new oci.core.Instance("testInstance", {
|
|
62
|
-
* availabilityDomain: _var.instance_availability_domain,
|
|
63
|
-
* compartmentId: _var.compartment_id,
|
|
64
|
-
* shape: _var.instance_shape,
|
|
65
|
-
* agentConfig: {
|
|
66
|
-
* areAllPluginsDisabled: _var.instance_agent_config_are_all_plugins_disabled,
|
|
67
|
-
* isManagementDisabled: _var.instance_agent_config_is_management_disabled,
|
|
68
|
-
* isMonitoringDisabled: _var.instance_agent_config_is_monitoring_disabled,
|
|
69
|
-
* pluginsConfigs: [{
|
|
70
|
-
* desiredState: _var.instance_agent_config_plugins_config_desired_state,
|
|
71
|
-
* name: _var.instance_agent_config_plugins_config_name,
|
|
72
|
-
* }],
|
|
73
|
-
* },
|
|
74
|
-
* availabilityConfig: {
|
|
75
|
-
* isLiveMigrationPreferred: _var.instance_availability_config_is_live_migration_preferred,
|
|
76
|
-
* recoveryAction: _var.instance_availability_config_recovery_action,
|
|
77
|
-
* },
|
|
78
|
-
* computeClusterId: oci_core_compute_cluster.test_compute_cluster.id,
|
|
79
|
-
* createVnicDetails: {
|
|
80
|
-
* assignPrivateDnsRecord: _var.instance_create_vnic_details_assign_private_dns_record,
|
|
81
|
-
* assignPublicIp: _var.instance_create_vnic_details_assign_public_ip,
|
|
82
|
-
* definedTags: {
|
|
83
|
-
* "Operations.CostCenter": "42",
|
|
84
|
-
* },
|
|
85
|
-
* displayName: _var.instance_create_vnic_details_display_name,
|
|
86
|
-
* freeformTags: {
|
|
87
|
-
* Department: "Finance",
|
|
88
|
-
* },
|
|
89
|
-
* hostnameLabel: _var.instance_create_vnic_details_hostname_label,
|
|
90
|
-
* nsgIds: _var.instance_create_vnic_details_nsg_ids,
|
|
91
|
-
* privateIp: _var.instance_create_vnic_details_private_ip,
|
|
92
|
-
* skipSourceDestCheck: _var.instance_create_vnic_details_skip_source_dest_check,
|
|
93
|
-
* subnetId: oci_core_subnet.test_subnet.id,
|
|
94
|
-
* vlanId: oci_core_vlan.test_vlan.id,
|
|
95
|
-
* },
|
|
96
|
-
* dedicatedVmHostId: oci_core_dedicated_vm_host.test_dedicated_vm_host.id,
|
|
97
|
-
* definedTags: {
|
|
98
|
-
* "Operations.CostCenter": "42",
|
|
99
|
-
* },
|
|
100
|
-
* displayName: _var.instance_display_name,
|
|
101
|
-
* extendedMetadata: {
|
|
102
|
-
* some_string: "stringA",
|
|
103
|
-
* nested_object: "{\"some_string\": \"stringB\", \"object\": {\"some_string\": \"stringC\"}}",
|
|
104
|
-
* },
|
|
105
|
-
* faultDomain: _var.instance_fault_domain,
|
|
106
|
-
* freeformTags: {
|
|
107
|
-
* Department: "Finance",
|
|
108
|
-
* },
|
|
109
|
-
* hostnameLabel: _var.instance_hostname_label,
|
|
110
|
-
* instanceOptions: {
|
|
111
|
-
* areLegacyImdsEndpointsDisabled: _var.instance_instance_options_are_legacy_imds_endpoints_disabled,
|
|
112
|
-
* },
|
|
113
|
-
* ipxeScript: _var.instance_ipxe_script,
|
|
114
|
-
* isPvEncryptionInTransitEnabled: _var.instance_is_pv_encryption_in_transit_enabled,
|
|
115
|
-
* launchOptions: {
|
|
116
|
-
* bootVolumeType: _var.instance_launch_options_boot_volume_type,
|
|
117
|
-
* firmware: _var.instance_launch_options_firmware,
|
|
118
|
-
* isConsistentVolumeNamingEnabled: _var.instance_launch_options_is_consistent_volume_naming_enabled,
|
|
119
|
-
* isPvEncryptionInTransitEnabled: _var.instance_launch_options_is_pv_encryption_in_transit_enabled,
|
|
120
|
-
* networkType: _var.instance_launch_options_network_type,
|
|
121
|
-
* remoteDataVolumeType: _var.instance_launch_options_remote_data_volume_type,
|
|
122
|
-
* },
|
|
123
|
-
* metadata: _var.instance_metadata,
|
|
124
|
-
* platformConfig: {
|
|
125
|
-
* type: _var.instance_platform_config_type,
|
|
126
|
-
* areVirtualInstructionsEnabled: _var.instance_platform_config_are_virtual_instructions_enabled,
|
|
127
|
-
* isAccessControlServiceEnabled: _var.instance_platform_config_is_access_control_service_enabled,
|
|
128
|
-
* isInputOutputMemoryManagementUnitEnabled: _var.instance_platform_config_is_input_output_memory_management_unit_enabled,
|
|
129
|
-
* isMeasuredBootEnabled: _var.instance_platform_config_is_measured_boot_enabled,
|
|
130
|
-
* isMemoryEncryptionEnabled: _var.instance_platform_config_is_memory_encryption_enabled,
|
|
131
|
-
* isSecureBootEnabled: _var.instance_platform_config_is_secure_boot_enabled,
|
|
132
|
-
* isSymmetricMultiThreadingEnabled: _var.instance_platform_config_is_symmetric_multi_threading_enabled,
|
|
133
|
-
* isTrustedPlatformModuleEnabled: _var.instance_platform_config_is_trusted_platform_module_enabled,
|
|
134
|
-
* numaNodesPerSocket: _var.instance_platform_config_numa_nodes_per_socket,
|
|
135
|
-
* percentageOfCoresEnabled: _var.instance_platform_config_percentage_of_cores_enabled,
|
|
136
|
-
* },
|
|
137
|
-
* preemptibleInstanceConfig: {
|
|
138
|
-
* preemptionAction: {
|
|
139
|
-
* type: _var.instance_preemptible_instance_config_preemption_action_type,
|
|
140
|
-
* preserveBootVolume: _var.instance_preemptible_instance_config_preemption_action_preserve_boot_volume,
|
|
141
|
-
* },
|
|
142
|
-
* },
|
|
143
|
-
* shapeConfig: {
|
|
144
|
-
* baselineOcpuUtilization: _var.instance_shape_config_baseline_ocpu_utilization,
|
|
145
|
-
* memoryInGbs: _var.instance_shape_config_memory_in_gbs,
|
|
146
|
-
* nvmes: _var.instance_shape_config_nvmes,
|
|
147
|
-
* ocpus: _var.instance_shape_config_ocpus,
|
|
148
|
-
* },
|
|
149
|
-
* sourceDetails: {
|
|
150
|
-
* sourceId: oci_core_image.test_image.id,
|
|
151
|
-
* sourceType: "image",
|
|
152
|
-
* bootVolumeSizeInGbs: _var.instance_source_details_boot_volume_size_in_gbs,
|
|
153
|
-
* bootVolumeVpusPerGb: _var.instance_source_details_boot_volume_vpus_per_gb,
|
|
154
|
-
* kmsKeyId: oci_kms_key.test_key.id,
|
|
155
|
-
* },
|
|
156
|
-
* preserveBootVolume: false,
|
|
157
|
-
* });
|
|
158
|
-
* ```
|
|
159
|
-
*
|
|
160
55
|
* ## Import
|
|
161
56
|
*
|
|
162
57
|
* Instances can be imported using the `id`, e.g.
|
|
@@ -210,6 +105,7 @@ class Instance extends pulumi.CustomResource {
|
|
|
210
105
|
resourceInputs["freeformTags"] = state ? state.freeformTags : undefined;
|
|
211
106
|
resourceInputs["hostnameLabel"] = state ? state.hostnameLabel : undefined;
|
|
212
107
|
resourceInputs["image"] = state ? state.image : undefined;
|
|
108
|
+
resourceInputs["instanceConfigurationId"] = state ? state.instanceConfigurationId : undefined;
|
|
213
109
|
resourceInputs["instanceOptions"] = state ? state.instanceOptions : undefined;
|
|
214
110
|
resourceInputs["ipxeScript"] = state ? state.ipxeScript : undefined;
|
|
215
111
|
resourceInputs["isCrossNumaNode"] = state ? state.isCrossNumaNode : undefined;
|
|
@@ -241,9 +137,6 @@ class Instance extends pulumi.CustomResource {
|
|
|
241
137
|
if ((!args || args.compartmentId === undefined) && !opts.urn) {
|
|
242
138
|
throw new Error("Missing required property 'compartmentId'");
|
|
243
139
|
}
|
|
244
|
-
if ((!args || args.shape === undefined) && !opts.urn) {
|
|
245
|
-
throw new Error("Missing required property 'shape'");
|
|
246
|
-
}
|
|
247
140
|
resourceInputs["agentConfig"] = args ? args.agentConfig : undefined;
|
|
248
141
|
resourceInputs["async"] = args ? args.async : undefined;
|
|
249
142
|
resourceInputs["availabilityConfig"] = args ? args.availabilityConfig : undefined;
|
|
@@ -260,6 +153,7 @@ class Instance extends pulumi.CustomResource {
|
|
|
260
153
|
resourceInputs["freeformTags"] = args ? args.freeformTags : undefined;
|
|
261
154
|
resourceInputs["hostnameLabel"] = args ? args.hostnameLabel : undefined;
|
|
262
155
|
resourceInputs["image"] = args ? args.image : undefined;
|
|
156
|
+
resourceInputs["instanceConfigurationId"] = args ? args.instanceConfigurationId : undefined;
|
|
263
157
|
resourceInputs["instanceOptions"] = args ? args.instanceOptions : undefined;
|
|
264
158
|
resourceInputs["ipxeScript"] = args ? args.ipxeScript : undefined;
|
|
265
159
|
resourceInputs["isPvEncryptionInTransitEnabled"] = args ? args.isPvEncryptionInTransitEnabled : undefined;
|
package/core/instance.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"instance.js","sourceRoot":"","sources":["../../core/instance.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"instance.js","sourceRoot":"","sources":["../../core/instance.ts"],"names":[],"mappings":"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"}
|