@pulumi/oci 4.5.0-alpha.1774893405 → 4.5.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/artifacts/containerRepository.d.ts +1 -1
- package/artifacts/containerRepository.js +1 -1
- package/cloudmigrations/getMigration.d.ts +9 -0
- package/cloudmigrations/getMigration.js.map +1 -1
- package/cloudmigrations/getMigrationAsset.d.ts +11 -0
- package/cloudmigrations/getMigrationAsset.js.map +1 -1
- package/cloudmigrations/migration.d.ts +30 -0
- package/cloudmigrations/migration.js +8 -0
- package/cloudmigrations/migration.js.map +1 -1
- package/cloudmigrations/migrationAsset.d.ts +26 -0
- package/cloudmigrations/migrationAsset.js +4 -0
- package/cloudmigrations/migrationAsset.js.map +1 -1
- package/cloudmigrations/targetAsset.d.ts +13 -5
- package/cloudmigrations/targetAsset.js +5 -11
- package/cloudmigrations/targetAsset.js.map +1 -1
- package/filestorage/getOutboundConnector.d.ts +8 -0
- package/filestorage/getOutboundConnector.js.map +1 -1
- package/filestorage/mountTarget.d.ts +22 -8
- package/filestorage/mountTarget.js +2 -0
- package/filestorage/mountTarget.js.map +1 -1
- package/filestorage/outboundConnector.d.ts +35 -9
- package/filestorage/outboundConnector.js +6 -0
- package/filestorage/outboundConnector.js.map +1 -1
- package/networkloadbalancer/backend.d.ts +3 -3
- package/networkloadbalancer/backendSet.d.ts +6 -6
- package/networkloadbalancer/getBackendSet.d.ts +3 -3
- package/networkloadbalancer/getNetworkLoadBalancer.d.ts +1 -1
- package/networkloadbalancer/networkLoadBalancer.d.ts +4 -4
- package/networkloadbalancer/networkLoadBalancersBackendSetsUnified.d.ts +6 -6
- package/oci/getSelfPartnerSubscriptions.d.ts +86 -0
- package/oci/getSelfPartnerSubscriptions.js +60 -0
- package/oci/getSelfPartnerSubscriptions.js.map +1 -0
- package/oci/getSelfSubscription.d.ts +146 -0
- package/oci/getSelfSubscription.js +54 -0
- package/oci/getSelfSubscription.js.map +1 -0
- package/oci/getSelfSubscriptionToken.d.ts +88 -0
- package/oci/getSelfSubscriptionToken.js +54 -0
- package/oci/getSelfSubscriptionToken.js.map +1 -0
- package/oci/getSelfSubscriptions.d.ts +115 -0
- package/oci/getSelfSubscriptions.js +72 -0
- package/oci/getSelfSubscriptions.js.map +1 -0
- package/oci/index.d.ts +15 -0
- package/oci/index.js +19 -2
- package/oci/index.js.map +1 -1
- package/oci/selfSubscription.d.ts +341 -0
- package/oci/selfSubscription.js +175 -0
- package/oci/selfSubscription.js.map +1 -0
- package/package.json +2 -2
- package/types/input.d.ts +284 -14
- package/types/output.d.ts +915 -23
|
@@ -38,7 +38,7 @@ import * as outputs from "../types/output";
|
|
|
38
38
|
* ContainerRepositories can be imported using the `id`, e.g.
|
|
39
39
|
*
|
|
40
40
|
* ```sh
|
|
41
|
-
* $ pulumi import oci:Artifacts/containerRepository:ContainerRepository test_container_repository "
|
|
41
|
+
* $ pulumi import oci:Artifacts/containerRepository:ContainerRepository test_container_repository "{repositoryId}"
|
|
42
42
|
* ```
|
|
43
43
|
*/
|
|
44
44
|
export declare class ContainerRepository extends pulumi.CustomResource {
|
|
@@ -42,7 +42,7 @@ const utilities = require("../utilities");
|
|
|
42
42
|
* ContainerRepositories can be imported using the `id`, e.g.
|
|
43
43
|
*
|
|
44
44
|
* ```sh
|
|
45
|
-
* $ pulumi import oci:Artifacts/containerRepository:ContainerRepository test_container_repository "
|
|
45
|
+
* $ pulumi import oci:Artifacts/containerRepository:ContainerRepository test_container_repository "{repositoryId}"
|
|
46
46
|
* ```
|
|
47
47
|
*/
|
|
48
48
|
class ContainerRepository extends pulumi.CustomResource {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "../types/output";
|
|
2
3
|
/**
|
|
3
4
|
* This data source provides details about a specific Migration resource in Oracle Cloud Infrastructure Cloud Migrations service.
|
|
4
5
|
*
|
|
@@ -61,7 +62,15 @@ export interface GetMigrationResult {
|
|
|
61
62
|
* A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in Failed state.
|
|
62
63
|
*/
|
|
63
64
|
readonly lifecycleDetails: string;
|
|
65
|
+
/**
|
|
66
|
+
* Configuration for a Migration Project.
|
|
67
|
+
*/
|
|
68
|
+
readonly migrationConfigs: outputs.CloudMigrations.GetMigrationMigrationConfig[];
|
|
64
69
|
readonly migrationId: string;
|
|
70
|
+
/**
|
|
71
|
+
* Type of migration project (OCI/OLVM). This determines the target environment for the migration.
|
|
72
|
+
*/
|
|
73
|
+
readonly migrationType: string;
|
|
65
74
|
/**
|
|
66
75
|
* Replication schedule identifier
|
|
67
76
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getMigration.js","sourceRoot":"","sources":["../../cloudmigrations/getMigration.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"getMigration.js","sourceRoot":"","sources":["../../cloudmigrations/getMigration.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,YAAY,CAAC,IAAsB,EAAE,IAA2B;IAC5E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,+CAA+C,EAAE;QAC1E,aAAa,EAAE,IAAI,CAAC,WAAW;KAClC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,oCAKC;AA0ED;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAAiC;IAC9F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,+CAA+C,EAAE;QAChF,aAAa,EAAE,IAAI,CAAC,WAAW;KAClC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,gDAKC"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "../types/output";
|
|
2
3
|
/**
|
|
3
4
|
* This data source provides details about a specific Migration Asset resource in Oracle Cloud Infrastructure Cloud Migrations service.
|
|
4
5
|
*
|
|
@@ -41,6 +42,12 @@ export interface GetMigrationAssetResult {
|
|
|
41
42
|
* List of migration assets that depend on the asset.
|
|
42
43
|
*/
|
|
43
44
|
readonly dependedOnBies: string[];
|
|
45
|
+
/**
|
|
46
|
+
* Mapping of source disk id to destination disk details
|
|
47
|
+
*/
|
|
48
|
+
readonly destinationDisks: {
|
|
49
|
+
[key: string]: string;
|
|
50
|
+
};
|
|
44
51
|
/**
|
|
45
52
|
* A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
|
46
53
|
*/
|
|
@@ -72,6 +79,10 @@ export interface GetMigrationAssetResult {
|
|
|
72
79
|
* Replication compartment identifier
|
|
73
80
|
*/
|
|
74
81
|
readonly replicationCompartmentId: string;
|
|
82
|
+
/**
|
|
83
|
+
* Replication location detail where the snapshots reside
|
|
84
|
+
*/
|
|
85
|
+
readonly replicationLocationDetails: outputs.CloudMigrations.GetMigrationAssetReplicationLocationDetail[];
|
|
75
86
|
/**
|
|
76
87
|
* Replication schedule identifier
|
|
77
88
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getMigrationAsset.js","sourceRoot":"","sources":["../../cloudmigrations/getMigrationAsset.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"getMigrationAsset.js","sourceRoot":"","sources":["../../cloudmigrations/getMigrationAsset.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAA2B;IACtF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,yDAAyD,EAAE;QACpF,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;KAC5C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,8CAKC;AAwGD;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,uBAAuB,CAAC,IAAiC,EAAE,IAAiC;IACxG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,yDAAyD,EAAE;QAC1F,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;KAC5C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,0DAKC"}
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "../types/input";
|
|
3
|
+
import * as outputs from "../types/output";
|
|
2
4
|
/**
|
|
3
5
|
* This resource provides the Migration resource in Oracle Cloud Infrastructure Cloud Migrations service.
|
|
4
6
|
* Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/ocm/latest/Migration
|
|
@@ -23,6 +25,10 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
23
25
|
* "bar-key": "value",
|
|
24
26
|
* },
|
|
25
27
|
* isCompleted: migrationIsCompleted,
|
|
28
|
+
* migrationConfig: {
|
|
29
|
+
* subnetId: testSubnet.id,
|
|
30
|
+
* },
|
|
31
|
+
* migrationType: migrationMigrationType,
|
|
26
32
|
* replicationScheduleId: testReplicationSchedule.id,
|
|
27
33
|
* });
|
|
28
34
|
* ```
|
|
@@ -79,6 +85,14 @@ export declare class Migration extends pulumi.CustomResource {
|
|
|
79
85
|
* A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in Failed state.
|
|
80
86
|
*/
|
|
81
87
|
readonly lifecycleDetails: pulumi.Output<string>;
|
|
88
|
+
/**
|
|
89
|
+
* (Updatable) Configuration for a Migration Project.
|
|
90
|
+
*/
|
|
91
|
+
readonly migrationConfig: pulumi.Output<outputs.CloudMigrations.MigrationMigrationConfig>;
|
|
92
|
+
/**
|
|
93
|
+
* (Updatable) Type of migration project (OCI/OLVM). This determines the target environment for the migration.
|
|
94
|
+
*/
|
|
95
|
+
readonly migrationType: pulumi.Output<string>;
|
|
82
96
|
/**
|
|
83
97
|
* (Updatable) Replication schedule identifier
|
|
84
98
|
*
|
|
@@ -146,6 +160,14 @@ export interface MigrationState {
|
|
|
146
160
|
* A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in Failed state.
|
|
147
161
|
*/
|
|
148
162
|
lifecycleDetails?: pulumi.Input<string>;
|
|
163
|
+
/**
|
|
164
|
+
* (Updatable) Configuration for a Migration Project.
|
|
165
|
+
*/
|
|
166
|
+
migrationConfig?: pulumi.Input<inputs.CloudMigrations.MigrationMigrationConfig>;
|
|
167
|
+
/**
|
|
168
|
+
* (Updatable) Type of migration project (OCI/OLVM). This determines the target environment for the migration.
|
|
169
|
+
*/
|
|
170
|
+
migrationType?: pulumi.Input<string>;
|
|
149
171
|
/**
|
|
150
172
|
* (Updatable) Replication schedule identifier
|
|
151
173
|
*
|
|
@@ -201,6 +223,14 @@ export interface MigrationArgs {
|
|
|
201
223
|
* (Updatable) Indicates whether migration is marked as complete.
|
|
202
224
|
*/
|
|
203
225
|
isCompleted?: pulumi.Input<boolean>;
|
|
226
|
+
/**
|
|
227
|
+
* (Updatable) Configuration for a Migration Project.
|
|
228
|
+
*/
|
|
229
|
+
migrationConfig?: pulumi.Input<inputs.CloudMigrations.MigrationMigrationConfig>;
|
|
230
|
+
/**
|
|
231
|
+
* (Updatable) Type of migration project (OCI/OLVM). This determines the target environment for the migration.
|
|
232
|
+
*/
|
|
233
|
+
migrationType?: pulumi.Input<string>;
|
|
204
234
|
/**
|
|
205
235
|
* (Updatable) Replication schedule identifier
|
|
206
236
|
*
|
|
@@ -29,6 +29,10 @@ const utilities = require("../utilities");
|
|
|
29
29
|
* "bar-key": "value",
|
|
30
30
|
* },
|
|
31
31
|
* isCompleted: migrationIsCompleted,
|
|
32
|
+
* migrationConfig: {
|
|
33
|
+
* subnetId: testSubnet.id,
|
|
34
|
+
* },
|
|
35
|
+
* migrationType: migrationMigrationType,
|
|
32
36
|
* replicationScheduleId: testReplicationSchedule.id,
|
|
33
37
|
* });
|
|
34
38
|
* ```
|
|
@@ -75,6 +79,8 @@ class Migration extends pulumi.CustomResource {
|
|
|
75
79
|
resourceInputs["freeformTags"] = state?.freeformTags;
|
|
76
80
|
resourceInputs["isCompleted"] = state?.isCompleted;
|
|
77
81
|
resourceInputs["lifecycleDetails"] = state?.lifecycleDetails;
|
|
82
|
+
resourceInputs["migrationConfig"] = state?.migrationConfig;
|
|
83
|
+
resourceInputs["migrationType"] = state?.migrationType;
|
|
78
84
|
resourceInputs["replicationScheduleId"] = state?.replicationScheduleId;
|
|
79
85
|
resourceInputs["state"] = state?.state;
|
|
80
86
|
resourceInputs["systemTags"] = state?.systemTags;
|
|
@@ -94,6 +100,8 @@ class Migration extends pulumi.CustomResource {
|
|
|
94
100
|
resourceInputs["displayName"] = args?.displayName;
|
|
95
101
|
resourceInputs["freeformTags"] = args?.freeformTags;
|
|
96
102
|
resourceInputs["isCompleted"] = args?.isCompleted;
|
|
103
|
+
resourceInputs["migrationConfig"] = args?.migrationConfig;
|
|
104
|
+
resourceInputs["migrationType"] = args?.migrationType;
|
|
97
105
|
resourceInputs["replicationScheduleId"] = args?.replicationScheduleId;
|
|
98
106
|
resourceInputs["lifecycleDetails"] = undefined /*out*/;
|
|
99
107
|
resourceInputs["state"] = undefined /*out*/;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"migration.js","sourceRoot":"","sources":["../../cloudmigrations/migration.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"migration.js","sourceRoot":"","sources":["../../cloudmigrations/migration.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "../types/input";
|
|
3
|
+
import * as outputs from "../types/output";
|
|
2
4
|
/**
|
|
3
5
|
* This resource provides the Migration Asset resource in Oracle Cloud Infrastructure Cloud Migrations service.
|
|
4
6
|
* Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/ocm/latest/MigrationAsset
|
|
@@ -43,6 +45,12 @@ export declare class MigrationAsset extends pulumi.CustomResource {
|
|
|
43
45
|
* List of migration assets that depend on the asset.
|
|
44
46
|
*/
|
|
45
47
|
readonly dependedOnBies: pulumi.Output<string[]>;
|
|
48
|
+
/**
|
|
49
|
+
* Mapping of source disk id to destination disk details
|
|
50
|
+
*/
|
|
51
|
+
readonly destinationDisks: pulumi.Output<{
|
|
52
|
+
[key: string]: string;
|
|
53
|
+
}>;
|
|
46
54
|
/**
|
|
47
55
|
* (Updatable) A user-friendly name. If empty, then source asset name will be used. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
|
48
56
|
*/
|
|
@@ -72,6 +80,10 @@ export declare class MigrationAsset extends pulumi.CustomResource {
|
|
|
72
80
|
* Replication compartment identifier
|
|
73
81
|
*/
|
|
74
82
|
readonly replicationCompartmentId: pulumi.Output<string>;
|
|
83
|
+
/**
|
|
84
|
+
* Replication location detail where the snapshots reside
|
|
85
|
+
*/
|
|
86
|
+
readonly replicationLocationDetail: pulumi.Output<outputs.CloudMigrations.MigrationAssetReplicationLocationDetail>;
|
|
75
87
|
/**
|
|
76
88
|
* (Updatable) Replication schedule identifier
|
|
77
89
|
*/
|
|
@@ -139,6 +151,12 @@ export interface MigrationAssetState {
|
|
|
139
151
|
* List of migration assets that depend on the asset.
|
|
140
152
|
*/
|
|
141
153
|
dependedOnBies?: pulumi.Input<pulumi.Input<string>[]>;
|
|
154
|
+
/**
|
|
155
|
+
* Mapping of source disk id to destination disk details
|
|
156
|
+
*/
|
|
157
|
+
destinationDisks?: pulumi.Input<{
|
|
158
|
+
[key: string]: pulumi.Input<string>;
|
|
159
|
+
}>;
|
|
142
160
|
/**
|
|
143
161
|
* (Updatable) A user-friendly name. If empty, then source asset name will be used. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
|
144
162
|
*/
|
|
@@ -168,6 +186,10 @@ export interface MigrationAssetState {
|
|
|
168
186
|
* Replication compartment identifier
|
|
169
187
|
*/
|
|
170
188
|
replicationCompartmentId?: pulumi.Input<string>;
|
|
189
|
+
/**
|
|
190
|
+
* Replication location detail where the snapshots reside
|
|
191
|
+
*/
|
|
192
|
+
replicationLocationDetail?: pulumi.Input<inputs.CloudMigrations.MigrationAssetReplicationLocationDetail>;
|
|
171
193
|
/**
|
|
172
194
|
* (Updatable) Replication schedule identifier
|
|
173
195
|
*/
|
|
@@ -236,6 +258,10 @@ export interface MigrationAssetArgs {
|
|
|
236
258
|
* Replication compartment identifier
|
|
237
259
|
*/
|
|
238
260
|
replicationCompartmentId: pulumi.Input<string>;
|
|
261
|
+
/**
|
|
262
|
+
* Replication location detail where the snapshots reside
|
|
263
|
+
*/
|
|
264
|
+
replicationLocationDetail?: pulumi.Input<inputs.CloudMigrations.MigrationAssetReplicationLocationDetail>;
|
|
239
265
|
/**
|
|
240
266
|
* (Updatable) Replication schedule identifier
|
|
241
267
|
*/
|
|
@@ -52,6 +52,7 @@ class MigrationAsset extends pulumi.CustomResource {
|
|
|
52
52
|
resourceInputs["availabilityDomain"] = state?.availabilityDomain;
|
|
53
53
|
resourceInputs["compartmentId"] = state?.compartmentId;
|
|
54
54
|
resourceInputs["dependedOnBies"] = state?.dependedOnBies;
|
|
55
|
+
resourceInputs["destinationDisks"] = state?.destinationDisks;
|
|
55
56
|
resourceInputs["displayName"] = state?.displayName;
|
|
56
57
|
resourceInputs["inventoryAssetId"] = state?.inventoryAssetId;
|
|
57
58
|
resourceInputs["lifecycleDetails"] = state?.lifecycleDetails;
|
|
@@ -60,6 +61,7 @@ class MigrationAsset extends pulumi.CustomResource {
|
|
|
60
61
|
resourceInputs["notifications"] = state?.notifications;
|
|
61
62
|
resourceInputs["parentSnapshot"] = state?.parentSnapshot;
|
|
62
63
|
resourceInputs["replicationCompartmentId"] = state?.replicationCompartmentId;
|
|
64
|
+
resourceInputs["replicationLocationDetail"] = state?.replicationLocationDetail;
|
|
63
65
|
resourceInputs["replicationScheduleId"] = state?.replicationScheduleId;
|
|
64
66
|
resourceInputs["snapShotBucketName"] = state?.snapShotBucketName;
|
|
65
67
|
resourceInputs["snapshots"] = state?.snapshots;
|
|
@@ -93,10 +95,12 @@ class MigrationAsset extends pulumi.CustomResource {
|
|
|
93
95
|
resourceInputs["migrationAssetDependsOns"] = args?.migrationAssetDependsOns;
|
|
94
96
|
resourceInputs["migrationId"] = args?.migrationId;
|
|
95
97
|
resourceInputs["replicationCompartmentId"] = args?.replicationCompartmentId;
|
|
98
|
+
resourceInputs["replicationLocationDetail"] = args?.replicationLocationDetail;
|
|
96
99
|
resourceInputs["replicationScheduleId"] = args?.replicationScheduleId;
|
|
97
100
|
resourceInputs["snapShotBucketName"] = args?.snapShotBucketName;
|
|
98
101
|
resourceInputs["compartmentId"] = undefined /*out*/;
|
|
99
102
|
resourceInputs["dependedOnBies"] = undefined /*out*/;
|
|
103
|
+
resourceInputs["destinationDisks"] = undefined /*out*/;
|
|
100
104
|
resourceInputs["lifecycleDetails"] = undefined /*out*/;
|
|
101
105
|
resourceInputs["notifications"] = undefined /*out*/;
|
|
102
106
|
resourceInputs["parentSnapshot"] = undefined /*out*/;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"migrationAsset.js","sourceRoot":"","sources":["../../cloudmigrations/migrationAsset.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"migrationAsset.js","sourceRoot":"","sources":["../../cloudmigrations/migrationAsset.ts"],"names":[],"mappings":"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"}
|
|
@@ -18,8 +18,10 @@ import * as outputs from "../types/output";
|
|
|
18
18
|
* const testTargetAsset = new oci.cloudmigrations.TargetAsset("test_target_asset", {
|
|
19
19
|
* isExcludedFromExecution: targetAssetIsExcludedFromExecution,
|
|
20
20
|
* migrationPlanId: testMigrationPlan.id,
|
|
21
|
-
* preferredShapeType: targetAssetPreferredShapeType,
|
|
22
21
|
* type: targetAssetType,
|
|
22
|
+
* blockVolumesPerformance: targetAssetBlockVolumesPerformance,
|
|
23
|
+
* msLicense: targetAssetMsLicense,
|
|
24
|
+
* preferredShapeType: targetAssetPreferredShapeType,
|
|
23
25
|
* userSpec: {
|
|
24
26
|
* agentConfig: {
|
|
25
27
|
* areAllPluginsDisabled: targetAssetUserSpecAgentConfigAreAllPluginsDisabled,
|
|
@@ -86,8 +88,6 @@ import * as outputs from "../types/output";
|
|
|
86
88
|
* kmsKeyId: testKey.id,
|
|
87
89
|
* },
|
|
88
90
|
* },
|
|
89
|
-
* blockVolumesPerformance: targetAssetBlockVolumesPerformance,
|
|
90
|
-
* msLicense: targetAssetMsLicense,
|
|
91
91
|
* });
|
|
92
92
|
* ```
|
|
93
93
|
*
|
|
@@ -312,7 +312,15 @@ export interface TargetAssetArgs {
|
|
|
312
312
|
/**
|
|
313
313
|
* (Updatable) Preferred VM shape type that you provide.
|
|
314
314
|
*/
|
|
315
|
-
preferredShapeType
|
|
315
|
+
preferredShapeType?: pulumi.Input<string>;
|
|
316
|
+
/**
|
|
317
|
+
* Instance launch details. Use the `sourceDetails` parameter to specify whether a boot volume or an image should be used to launch a new instance.
|
|
318
|
+
*/
|
|
319
|
+
recommendedSpecs?: pulumi.Input<pulumi.Input<inputs.CloudMigrations.TargetAssetRecommendedSpec>[]>;
|
|
320
|
+
/**
|
|
321
|
+
* Instance launch details. Use the `sourceDetails` parameter to specify whether a boot volume or an image should be used to launch a new instance.
|
|
322
|
+
*/
|
|
323
|
+
testSpecs?: pulumi.Input<pulumi.Input<inputs.CloudMigrations.TargetAssetTestSpec>[]>;
|
|
316
324
|
/**
|
|
317
325
|
* (Updatable) The type of target asset.
|
|
318
326
|
*/
|
|
@@ -320,5 +328,5 @@ export interface TargetAssetArgs {
|
|
|
320
328
|
/**
|
|
321
329
|
* (Updatable) Instance launch details. Use the `sourceDetails` parameter to specify whether a boot volume or an image should be used to launch a new instance.
|
|
322
330
|
*/
|
|
323
|
-
userSpec
|
|
331
|
+
userSpec?: pulumi.Input<inputs.CloudMigrations.TargetAssetUserSpec>;
|
|
324
332
|
}
|
|
@@ -22,8 +22,10 @@ const utilities = require("../utilities");
|
|
|
22
22
|
* const testTargetAsset = new oci.cloudmigrations.TargetAsset("test_target_asset", {
|
|
23
23
|
* isExcludedFromExecution: targetAssetIsExcludedFromExecution,
|
|
24
24
|
* migrationPlanId: testMigrationPlan.id,
|
|
25
|
-
* preferredShapeType: targetAssetPreferredShapeType,
|
|
26
25
|
* type: targetAssetType,
|
|
26
|
+
* blockVolumesPerformance: targetAssetBlockVolumesPerformance,
|
|
27
|
+
* msLicense: targetAssetMsLicense,
|
|
28
|
+
* preferredShapeType: targetAssetPreferredShapeType,
|
|
27
29
|
* userSpec: {
|
|
28
30
|
* agentConfig: {
|
|
29
31
|
* areAllPluginsDisabled: targetAssetUserSpecAgentConfigAreAllPluginsDisabled,
|
|
@@ -90,8 +92,6 @@ const utilities = require("../utilities");
|
|
|
90
92
|
* kmsKeyId: testKey.id,
|
|
91
93
|
* },
|
|
92
94
|
* },
|
|
93
|
-
* blockVolumesPerformance: targetAssetBlockVolumesPerformance,
|
|
94
|
-
* msLicense: targetAssetMsLicense,
|
|
95
95
|
* });
|
|
96
96
|
* ```
|
|
97
97
|
*
|
|
@@ -160,20 +160,16 @@ class TargetAsset extends pulumi.CustomResource {
|
|
|
160
160
|
if (args?.migrationPlanId === undefined && !opts.urn) {
|
|
161
161
|
throw new Error("Missing required property 'migrationPlanId'");
|
|
162
162
|
}
|
|
163
|
-
if (args?.preferredShapeType === undefined && !opts.urn) {
|
|
164
|
-
throw new Error("Missing required property 'preferredShapeType'");
|
|
165
|
-
}
|
|
166
163
|
if (args?.type === undefined && !opts.urn) {
|
|
167
164
|
throw new Error("Missing required property 'type'");
|
|
168
165
|
}
|
|
169
|
-
if (args?.userSpec === undefined && !opts.urn) {
|
|
170
|
-
throw new Error("Missing required property 'userSpec'");
|
|
171
|
-
}
|
|
172
166
|
resourceInputs["blockVolumesPerformance"] = args?.blockVolumesPerformance;
|
|
173
167
|
resourceInputs["isExcludedFromExecution"] = args?.isExcludedFromExecution;
|
|
174
168
|
resourceInputs["migrationPlanId"] = args?.migrationPlanId;
|
|
175
169
|
resourceInputs["msLicense"] = args?.msLicense;
|
|
176
170
|
resourceInputs["preferredShapeType"] = args?.preferredShapeType;
|
|
171
|
+
resourceInputs["recommendedSpecs"] = args?.recommendedSpecs;
|
|
172
|
+
resourceInputs["testSpecs"] = args?.testSpecs;
|
|
177
173
|
resourceInputs["type"] = args?.type;
|
|
178
174
|
resourceInputs["userSpec"] = args?.userSpec;
|
|
179
175
|
resourceInputs["compartmentId"] = undefined /*out*/;
|
|
@@ -183,9 +179,7 @@ class TargetAsset extends pulumi.CustomResource {
|
|
|
183
179
|
resourceInputs["estimatedCosts"] = undefined /*out*/;
|
|
184
180
|
resourceInputs["lifecycleDetails"] = undefined /*out*/;
|
|
185
181
|
resourceInputs["migrationAssets"] = undefined /*out*/;
|
|
186
|
-
resourceInputs["recommendedSpecs"] = undefined /*out*/;
|
|
187
182
|
resourceInputs["state"] = undefined /*out*/;
|
|
188
|
-
resourceInputs["testSpecs"] = undefined /*out*/;
|
|
189
183
|
resourceInputs["timeAssessed"] = undefined /*out*/;
|
|
190
184
|
resourceInputs["timeCreated"] = undefined /*out*/;
|
|
191
185
|
resourceInputs["timeUpdated"] = undefined /*out*/;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"targetAsset.js","sourceRoot":"","sources":["../../cloudmigrations/targetAsset.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiGG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;IAClD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwB,EAAE,IAAmC;QACtH,OAAO,IAAI,WAAW,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAClE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,WAAW,CAAC,YAAY,CAAC;IAC5D,CAAC;IA2FD,YAAY,IAAY,EAAE,WAAgD,EAAE,IAAmC;QAC3G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA2C,CAAC;YAC1D,cAAc,CAAC,yBAAyB,CAAC,GAAG,KAAK,EAAE,uBAAuB,CAAC;YAC3E,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,EAAE,aAAa,CAAC;YACvD,cAAc,CAAC,uBAAuB,CAAC,GAAG,KAAK,EAAE,qBAAqB,CAAC;YACvE,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,EAAE,iBAAiB,CAAC;YAC/D,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,yBAAyB,CAAC,GAAG,KAAK,EAAE,uBAAuB,CAAC;YAC3E,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,EAAE,gBAAgB,CAAC;YAC7D,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,EAAE,eAAe,CAAC;YAC3D,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,EAAE,eAAe,CAAC;YAC3D,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,EAAE,kBAAkB,CAAC;YACjE,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,EAAE,gBAAgB,CAAC;YAC7D,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;YACvC,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;SAChD;aAAM;YACH,MAAM,IAAI,GAAG,WAA0C,CAAC;YACxD,IAAI,IAAI,EAAE,uBAAuB,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC1D,MAAM,IAAI,KAAK,CAAC,qDAAqD,CAAC,CAAC;aAC1E;YACD,IAAI,IAAI,EAAE,eAAe,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAClD,MAAM,IAAI,KAAK,CAAC,6CAA6C,CAAC,CAAC;aAClE;YACD,IAAI,IAAI,EAAE,
|
|
1
|
+
{"version":3,"file":"targetAsset.js","sourceRoot":"","sources":["../../cloudmigrations/targetAsset.ts"],"names":[],"mappings":"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"}
|
|
@@ -98,6 +98,14 @@ export interface GetOutboundConnectorResult {
|
|
|
98
98
|
* The date and time the outbound connector was created in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
|
99
99
|
*/
|
|
100
100
|
readonly timeCreated: string;
|
|
101
|
+
/**
|
|
102
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the trusted certificate for the LDAP server in the Vault .
|
|
103
|
+
*/
|
|
104
|
+
readonly trustedCertificateSecretId: string;
|
|
105
|
+
/**
|
|
106
|
+
* Version of the trusted certificate secret in the Vault to use.
|
|
107
|
+
*/
|
|
108
|
+
readonly trustedCertificateSecretVersion: number;
|
|
101
109
|
}
|
|
102
110
|
/**
|
|
103
111
|
* This data source provides details about a specific Outbound Connector resource in Oracle Cloud Infrastructure File Storage service.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getOutboundConnector.js","sourceRoot":"","sources":["../../filestorage/getOutboundConnector.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAC5F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2DAA2D,EAAE;QACtF,qBAAqB,EAAE,IAAI,CAAC,mBAAmB;KAClD,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,oDAKC;
|
|
1
|
+
{"version":3,"file":"getOutboundConnector.js","sourceRoot":"","sources":["../../filestorage/getOutboundConnector.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAC5F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2DAA2D,EAAE;QACtF,qBAAqB,EAAE,IAAI,CAAC,mBAAmB;KAClD,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,oDAKC;AAuFD;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,0BAA0B,CAAC,IAAoC,EAAE,IAAiC;IAC9G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,2DAA2D,EAAE;QAC5F,qBAAqB,EAAE,IAAI,CAAC,mBAAmB;KAClD,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,gEAKC"}
|
|
@@ -145,9 +145,11 @@ export declare class MountTarget extends pulumi.CustomResource {
|
|
|
145
145
|
/**
|
|
146
146
|
* The hostname for the mount target's IP address, used for DNS resolution. The value is the hostname portion of the private IP address's fully qualified domain name (FQDN). For example, `files-1` in the FQDN `files-1.subnet123.vcn1.oraclevcn.com`. Must be unique across all VNICs in the subnet and comply with [RFC 952](https://tools.ietf.org/html/rfc952) and [RFC 1123](https://tools.ietf.org/html/rfc1123).
|
|
147
147
|
*
|
|
148
|
-
*
|
|
148
|
+
* If the IP address is IPv4, this attribute value is stored in the [PrivateIp](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/20160918/PrivateIp/) resource, not in the `mountTarget` resource. To update the `hostnameLabel`, use `GetMountTarget` to obtain the [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the mount target's private IPs (`privateIpIds`). Then, you can use [UpdatePrivateIp](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/20160918/PrivateIp/UpdatePrivateIp) to update the `hostnameLabel` value.
|
|
149
149
|
*
|
|
150
|
-
*
|
|
150
|
+
* If the IP address is IPv6, it is stored in the [Ipv6] (https://docs.oracle.com/en-us/iaas/api/#/en/iaas/20160918/Ipv6) resource To update the `hostnameLabel`, use `GetMountTarget` to obtain the [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the mount target's IPv6 address (`mountTargetIpv6Ids`). Then, you can use [UpdateIpv6](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/20160918/Ipv6/UpdateIpv6) to update the `hostnameLabel` value.
|
|
151
|
+
*
|
|
152
|
+
* For more information, see [DNS in Your Virtual Cloud Network](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm).
|
|
151
153
|
*
|
|
152
154
|
* Example: `files-1`
|
|
153
155
|
*/
|
|
@@ -180,6 +182,10 @@ export declare class MountTarget extends pulumi.CustomResource {
|
|
|
180
182
|
* Locks associated with this resource.
|
|
181
183
|
*/
|
|
182
184
|
readonly locks: pulumi.Output<outputs.FileStorage.MountTargetLock[]>;
|
|
185
|
+
/**
|
|
186
|
+
* The OCIDs of the IPv6 addresses associated with this mount target.
|
|
187
|
+
*/
|
|
188
|
+
readonly mountTargetIpv6ids: pulumi.Output<string[]>;
|
|
183
189
|
/**
|
|
184
190
|
* (Updatable) A list of Network Security Group [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with this mount target. A maximum of 5 is allowed. Setting this to an empty array after the list is created removes the mount target from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm).
|
|
185
191
|
*/
|
|
@@ -225,7 +231,7 @@ export declare class MountTarget extends pulumi.CustomResource {
|
|
|
225
231
|
[key: string]: string;
|
|
226
232
|
}>;
|
|
227
233
|
/**
|
|
228
|
-
* The date and time the mount target current billing cycle will end, expressed in
|
|
234
|
+
* The date and time the mount target current billing cycle will end, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Once a cycle ends, it is updated automatically to next timestamp which is after 30 days. Example: `2016-08-25T21:10:29.600Z`
|
|
229
235
|
*/
|
|
230
236
|
readonly timeBillingCycleEnd: pulumi.Output<string>;
|
|
231
237
|
/**
|
|
@@ -276,9 +282,11 @@ export interface MountTargetState {
|
|
|
276
282
|
/**
|
|
277
283
|
* The hostname for the mount target's IP address, used for DNS resolution. The value is the hostname portion of the private IP address's fully qualified domain name (FQDN). For example, `files-1` in the FQDN `files-1.subnet123.vcn1.oraclevcn.com`. Must be unique across all VNICs in the subnet and comply with [RFC 952](https://tools.ietf.org/html/rfc952) and [RFC 1123](https://tools.ietf.org/html/rfc1123).
|
|
278
284
|
*
|
|
279
|
-
*
|
|
285
|
+
* If the IP address is IPv4, this attribute value is stored in the [PrivateIp](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/20160918/PrivateIp/) resource, not in the `mountTarget` resource. To update the `hostnameLabel`, use `GetMountTarget` to obtain the [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the mount target's private IPs (`privateIpIds`). Then, you can use [UpdatePrivateIp](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/20160918/PrivateIp/UpdatePrivateIp) to update the `hostnameLabel` value.
|
|
286
|
+
*
|
|
287
|
+
* If the IP address is IPv6, it is stored in the [Ipv6] (https://docs.oracle.com/en-us/iaas/api/#/en/iaas/20160918/Ipv6) resource To update the `hostnameLabel`, use `GetMountTarget` to obtain the [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the mount target's IPv6 address (`mountTargetIpv6Ids`). Then, you can use [UpdateIpv6](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/20160918/Ipv6/UpdateIpv6) to update the `hostnameLabel` value.
|
|
280
288
|
*
|
|
281
|
-
*
|
|
289
|
+
* For more information, see [DNS in Your Virtual Cloud Network](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm).
|
|
282
290
|
*
|
|
283
291
|
* Example: `files-1`
|
|
284
292
|
*/
|
|
@@ -311,6 +319,10 @@ export interface MountTargetState {
|
|
|
311
319
|
* Locks associated with this resource.
|
|
312
320
|
*/
|
|
313
321
|
locks?: pulumi.Input<pulumi.Input<inputs.FileStorage.MountTargetLock>[]>;
|
|
322
|
+
/**
|
|
323
|
+
* The OCIDs of the IPv6 addresses associated with this mount target.
|
|
324
|
+
*/
|
|
325
|
+
mountTargetIpv6ids?: pulumi.Input<pulumi.Input<string>[]>;
|
|
314
326
|
/**
|
|
315
327
|
* (Updatable) A list of Network Security Group [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with this mount target. A maximum of 5 is allowed. Setting this to an empty array after the list is created removes the mount target from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm).
|
|
316
328
|
*/
|
|
@@ -356,7 +368,7 @@ export interface MountTargetState {
|
|
|
356
368
|
[key: string]: pulumi.Input<string>;
|
|
357
369
|
}>;
|
|
358
370
|
/**
|
|
359
|
-
* The date and time the mount target current billing cycle will end, expressed in
|
|
371
|
+
* The date and time the mount target current billing cycle will end, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Once a cycle ends, it is updated automatically to next timestamp which is after 30 days. Example: `2016-08-25T21:10:29.600Z`
|
|
360
372
|
*/
|
|
361
373
|
timeBillingCycleEnd?: pulumi.Input<string>;
|
|
362
374
|
/**
|
|
@@ -395,9 +407,11 @@ export interface MountTargetArgs {
|
|
|
395
407
|
/**
|
|
396
408
|
* The hostname for the mount target's IP address, used for DNS resolution. The value is the hostname portion of the private IP address's fully qualified domain name (FQDN). For example, `files-1` in the FQDN `files-1.subnet123.vcn1.oraclevcn.com`. Must be unique across all VNICs in the subnet and comply with [RFC 952](https://tools.ietf.org/html/rfc952) and [RFC 1123](https://tools.ietf.org/html/rfc1123).
|
|
397
409
|
*
|
|
398
|
-
*
|
|
410
|
+
* If the IP address is IPv4, this attribute value is stored in the [PrivateIp](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/20160918/PrivateIp/) resource, not in the `mountTarget` resource. To update the `hostnameLabel`, use `GetMountTarget` to obtain the [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the mount target's private IPs (`privateIpIds`). Then, you can use [UpdatePrivateIp](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/20160918/PrivateIp/UpdatePrivateIp) to update the `hostnameLabel` value.
|
|
411
|
+
*
|
|
412
|
+
* If the IP address is IPv6, it is stored in the [Ipv6] (https://docs.oracle.com/en-us/iaas/api/#/en/iaas/20160918/Ipv6) resource To update the `hostnameLabel`, use `GetMountTarget` to obtain the [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the mount target's IPv6 address (`mountTargetIpv6Ids`). Then, you can use [UpdateIpv6](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/20160918/Ipv6/UpdateIpv6) to update the `hostnameLabel` value.
|
|
399
413
|
*
|
|
400
|
-
*
|
|
414
|
+
* For more information, see [DNS in Your Virtual Cloud Network](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm).
|
|
401
415
|
*
|
|
402
416
|
* Example: `files-1`
|
|
403
417
|
*/
|
|
@@ -144,6 +144,7 @@ class MountTarget extends pulumi.CustomResource {
|
|
|
144
144
|
resourceInputs["ldapIdmap"] = state?.ldapIdmap;
|
|
145
145
|
resourceInputs["lifecycleDetails"] = state?.lifecycleDetails;
|
|
146
146
|
resourceInputs["locks"] = state?.locks;
|
|
147
|
+
resourceInputs["mountTargetIpv6ids"] = state?.mountTargetIpv6ids;
|
|
147
148
|
resourceInputs["nsgIds"] = state?.nsgIds;
|
|
148
149
|
resourceInputs["observedThroughput"] = state?.observedThroughput;
|
|
149
150
|
resourceInputs["privateIpIds"] = state?.privateIpIds;
|
|
@@ -185,6 +186,7 @@ class MountTarget extends pulumi.CustomResource {
|
|
|
185
186
|
resourceInputs["subnetId"] = args?.subnetId;
|
|
186
187
|
resourceInputs["exportSetId"] = undefined /*out*/;
|
|
187
188
|
resourceInputs["lifecycleDetails"] = undefined /*out*/;
|
|
189
|
+
resourceInputs["mountTargetIpv6ids"] = undefined /*out*/;
|
|
188
190
|
resourceInputs["observedThroughput"] = undefined /*out*/;
|
|
189
191
|
resourceInputs["privateIpIds"] = undefined /*out*/;
|
|
190
192
|
resourceInputs["reservedStorageCapacity"] = undefined /*out*/;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mountTarget.js","sourceRoot":"","sources":["../../filestorage/mountTarget.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgGG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;IAClD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwB,EAAE,IAAmC;QACtH,OAAO,IAAI,WAAW,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAClE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,WAAW,CAAC,YAAY,CAAC;IAC5D,CAAC;
|
|
1
|
+
{"version":3,"file":"mountTarget.js","sourceRoot":"","sources":["../../filestorage/mountTarget.ts"],"names":[],"mappings":"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"}
|