@pulumi/oci 1.2.0 → 1.3.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.
Files changed (74) hide show
  1. package/apmsynthetics/config.d.ts +20 -9
  2. package/apmsynthetics/config.js +11 -0
  3. package/apmsynthetics/config.js.map +1 -1
  4. package/apmsynthetics/getMonitor.d.ts +5 -5
  5. package/apmsynthetics/getMonitors.d.ts +1 -1
  6. package/containerengine/clusterWorkloadMapping.d.ts +176 -0
  7. package/containerengine/clusterWorkloadMapping.js +104 -0
  8. package/containerengine/clusterWorkloadMapping.js.map +1 -0
  9. package/containerengine/getClusterWorkloadMapping.d.ts +109 -0
  10. package/containerengine/getClusterWorkloadMapping.js +54 -0
  11. package/containerengine/getClusterWorkloadMapping.js.map +1 -0
  12. package/containerengine/getClusterWorkloadMappings.d.ts +75 -0
  13. package/containerengine/getClusterWorkloadMappings.js +52 -0
  14. package/containerengine/getClusterWorkloadMappings.js.map +1 -0
  15. package/containerengine/index.d.ts +9 -0
  16. package/containerengine/index.js +12 -1
  17. package/containerengine/index.js.map +1 -1
  18. package/core/bootVolumeBackup.d.ts +5 -0
  19. package/core/bootVolumeBackup.js +2 -1
  20. package/core/bootVolumeBackup.js.map +1 -1
  21. package/core/volumeBackup.d.ts +5 -0
  22. package/core/volumeBackup.js +2 -1
  23. package/core/volumeBackup.js.map +1 -1
  24. package/database/autonomousDatabase.d.ts +3 -3
  25. package/database/cloudAutonomousVmCluster.d.ts +1 -1
  26. package/database/dbHome.d.ts +3 -3
  27. package/database/exadataInfrastructure.d.ts +12 -3
  28. package/database/exadataInfrastructure.js +3 -0
  29. package/database/exadataInfrastructure.js.map +1 -1
  30. package/database/getExadataInfrastructure.d.ts +5 -1
  31. package/database/getExadataInfrastructure.js.map +1 -1
  32. package/database/getOneoffPatch.d.ts +124 -0
  33. package/database/getOneoffPatch.js +51 -0
  34. package/database/getOneoffPatch.js.map +1 -0
  35. package/database/getOneoffPatches.d.ts +103 -0
  36. package/database/getOneoffPatches.js +58 -0
  37. package/database/getOneoffPatches.js.map +1 -0
  38. package/database/getVmClusterNetwork.d.ts +4 -0
  39. package/database/getVmClusterNetwork.js.map +1 -1
  40. package/database/getVmClusterRecommendedNetwork.d.ts +13 -0
  41. package/database/getVmClusterRecommendedNetwork.js +1 -0
  42. package/database/getVmClusterRecommendedNetwork.js.map +1 -1
  43. package/database/index.d.ts +9 -0
  44. package/database/index.js +13 -2
  45. package/database/index.js.map +1 -1
  46. package/database/oneoffPatch.d.ts +244 -0
  47. package/database/oneoffPatch.js +121 -0
  48. package/database/oneoffPatch.js.map +1 -0
  49. package/database/vmClusterNetwork.d.ts +17 -0
  50. package/database/vmClusterNetwork.js +7 -0
  51. package/database/vmClusterNetwork.js.map +1 -1
  52. package/databasemigration/migration.d.ts +2 -0
  53. package/databasemigration/migration.js +2 -0
  54. package/databasemigration/migration.js.map +1 -1
  55. package/ospgateway/addressActionVerification.d.ts +461 -0
  56. package/ospgateway/addressActionVerification.js +166 -0
  57. package/ospgateway/addressActionVerification.js.map +1 -0
  58. package/ospgateway/getAddress.d.ts +189 -0
  59. package/ospgateway/getAddress.js +57 -0
  60. package/ospgateway/getAddress.js.map +1 -0
  61. package/ospgateway/getAddressRule.d.ts +101 -0
  62. package/ospgateway/getAddressRule.js +57 -0
  63. package/ospgateway/getAddressRule.js.map +1 -0
  64. package/ospgateway/getSubscription.d.ts +9 -1
  65. package/ospgateway/getSubscription.js.map +1 -1
  66. package/ospgateway/index.d.ts +9 -0
  67. package/ospgateway/index.js +12 -1
  68. package/ospgateway/index.js.map +1 -1
  69. package/ospgateway/subscription.d.ts +18 -2
  70. package/ospgateway/subscription.js +4 -0
  71. package/ospgateway/subscription.js.map +1 -1
  72. package/package.json +2 -2
  73. package/types/input.d.ts +337 -15
  74. package/types/output.d.ts +1126 -119
@@ -0,0 +1,124 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * This data source provides details about a specific Oneoff Patch resource in Oracle Cloud Infrastructure Database service.
4
+ *
5
+ * Gets information about the specified one-off patch.
6
+ *
7
+ * ## Example Usage
8
+ *
9
+ * ```typescript
10
+ * import * as pulumi from "@pulumi/pulumi";
11
+ * import * as oci from "@pulumi/oci";
12
+ *
13
+ * const testOneoffPatch = oci.Database.getOneoffPatch({
14
+ * oneoffPatchId: oci_database_oneoff_patch.test_oneoff_patch.id,
15
+ * });
16
+ * ```
17
+ */
18
+ export declare function getOneoffPatch(args: GetOneoffPatchArgs, opts?: pulumi.InvokeOptions): Promise<GetOneoffPatchResult>;
19
+ /**
20
+ * A collection of arguments for invoking getOneoffPatch.
21
+ */
22
+ export interface GetOneoffPatchArgs {
23
+ /**
24
+ * The one-off patch [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
25
+ */
26
+ oneoffPatchId: string;
27
+ }
28
+ /**
29
+ * A collection of values returned by getOneoffPatch.
30
+ */
31
+ export interface GetOneoffPatchResult {
32
+ /**
33
+ * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
34
+ */
35
+ readonly compartmentId: string;
36
+ /**
37
+ * A valid Oracle Database version. To get a list of supported versions, use the [ListDbVersions](https://docs.cloud.oracle.com/iaas/api/#/en/database/latest/DbVersionSummary/ListDbVersions) operation.
38
+ */
39
+ readonly dbVersion: string;
40
+ /**
41
+ * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
42
+ */
43
+ readonly definedTags: {
44
+ [key: string]: any;
45
+ };
46
+ /**
47
+ * One-off patch name.
48
+ */
49
+ readonly displayName: string;
50
+ readonly downloadOneoffPatchTrigger: number;
51
+ /**
52
+ * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
53
+ */
54
+ readonly freeformTags: {
55
+ [key: string]: any;
56
+ };
57
+ /**
58
+ * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the one-off patch.
59
+ */
60
+ readonly id: string;
61
+ /**
62
+ * Detailed message for the lifecycle state.
63
+ */
64
+ readonly lifecycleDetails: string;
65
+ /**
66
+ * List of one-off patches for Database Homes.
67
+ */
68
+ readonly oneOffPatches: string[];
69
+ readonly oneoffPatchId: string;
70
+ /**
71
+ * The PSU or PBP or Release Updates. To get a list of supported versions, use the [ListDbVersions](https://docs.cloud.oracle.com/iaas/api/#/en/database/latest/DbVersionSummary/ListDbVersions) operation.
72
+ */
73
+ readonly releaseUpdate: string;
74
+ /**
75
+ * SHA-256 checksum of the one-off patch.
76
+ */
77
+ readonly sha256sum: string;
78
+ /**
79
+ * The size of one-off patch in kilobytes.
80
+ */
81
+ readonly sizeInKbs: number;
82
+ /**
83
+ * The current state of the one-off patch.
84
+ */
85
+ readonly state: string;
86
+ /**
87
+ * The date and time one-off patch was created.
88
+ */
89
+ readonly timeCreated: string;
90
+ /**
91
+ * The date and time until which the one-off patch will be available for download.
92
+ */
93
+ readonly timeOfExpiration: string;
94
+ /**
95
+ * The date and time one-off patch was updated.
96
+ */
97
+ readonly timeUpdated: string;
98
+ }
99
+ /**
100
+ * This data source provides details about a specific Oneoff Patch resource in Oracle Cloud Infrastructure Database service.
101
+ *
102
+ * Gets information about the specified one-off patch.
103
+ *
104
+ * ## Example Usage
105
+ *
106
+ * ```typescript
107
+ * import * as pulumi from "@pulumi/pulumi";
108
+ * import * as oci from "@pulumi/oci";
109
+ *
110
+ * const testOneoffPatch = oci.Database.getOneoffPatch({
111
+ * oneoffPatchId: oci_database_oneoff_patch.test_oneoff_patch.id,
112
+ * });
113
+ * ```
114
+ */
115
+ export declare function getOneoffPatchOutput(args: GetOneoffPatchOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetOneoffPatchResult>;
116
+ /**
117
+ * A collection of arguments for invoking getOneoffPatch.
118
+ */
119
+ export interface GetOneoffPatchOutputArgs {
120
+ /**
121
+ * The one-off patch [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
122
+ */
123
+ oneoffPatchId: pulumi.Input<string>;
124
+ }
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.getOneoffPatchOutput = exports.getOneoffPatch = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * This data source provides details about a specific Oneoff Patch resource in Oracle Cloud Infrastructure Database service.
10
+ *
11
+ * Gets information about the specified one-off patch.
12
+ *
13
+ * ## Example Usage
14
+ *
15
+ * ```typescript
16
+ * import * as pulumi from "@pulumi/pulumi";
17
+ * import * as oci from "@pulumi/oci";
18
+ *
19
+ * const testOneoffPatch = oci.Database.getOneoffPatch({
20
+ * oneoffPatchId: oci_database_oneoff_patch.test_oneoff_patch.id,
21
+ * });
22
+ * ```
23
+ */
24
+ function getOneoffPatch(args, opts) {
25
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
26
+ return pulumi.runtime.invoke("oci:Database/getOneoffPatch:getOneoffPatch", {
27
+ "oneoffPatchId": args.oneoffPatchId,
28
+ }, opts);
29
+ }
30
+ exports.getOneoffPatch = getOneoffPatch;
31
+ /**
32
+ * This data source provides details about a specific Oneoff Patch resource in Oracle Cloud Infrastructure Database service.
33
+ *
34
+ * Gets information about the specified one-off patch.
35
+ *
36
+ * ## Example Usage
37
+ *
38
+ * ```typescript
39
+ * import * as pulumi from "@pulumi/pulumi";
40
+ * import * as oci from "@pulumi/oci";
41
+ *
42
+ * const testOneoffPatch = oci.Database.getOneoffPatch({
43
+ * oneoffPatchId: oci_database_oneoff_patch.test_oneoff_patch.id,
44
+ * });
45
+ * ```
46
+ */
47
+ function getOneoffPatchOutput(args, opts) {
48
+ return pulumi.output(args).apply((a) => getOneoffPatch(a, opts));
49
+ }
50
+ exports.getOneoffPatchOutput = getOneoffPatchOutput;
51
+ //# sourceMappingURL=getOneoffPatch.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getOneoffPatch.js","sourceRoot":"","sources":["../../database/getOneoffPatch.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAEhF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4CAA4C,EAAE;QACvE,eAAe,EAAE,IAAI,CAAC,aAAa;KACtC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,wCAMC;AA+ED;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAC5F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,cAAc,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACzE,CAAC;AAFD,oDAEC"}
@@ -0,0 +1,103 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "../types/input";
3
+ import * as outputs from "../types/output";
4
+ /**
5
+ * This data source provides the list of Oneoff Patches in Oracle Cloud Infrastructure Database service.
6
+ *
7
+ * Lists one-off patches in the specified compartment.
8
+ *
9
+ * ## Example Usage
10
+ *
11
+ * ```typescript
12
+ * import * as pulumi from "@pulumi/pulumi";
13
+ * import * as oci from "@pulumi/oci";
14
+ *
15
+ * const testOneoffPatches = oci.Database.getOneoffPatches({
16
+ * compartmentId: _var.compartment_id,
17
+ * displayName: _var.oneoff_patch_display_name,
18
+ * state: _var.oneoff_patch_state,
19
+ * });
20
+ * ```
21
+ */
22
+ export declare function getOneoffPatches(args: GetOneoffPatchesArgs, opts?: pulumi.InvokeOptions): Promise<GetOneoffPatchesResult>;
23
+ /**
24
+ * A collection of arguments for invoking getOneoffPatches.
25
+ */
26
+ export interface GetOneoffPatchesArgs {
27
+ /**
28
+ * (Updatable) The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
29
+ */
30
+ compartmentId: string;
31
+ /**
32
+ * A filter to return only resources that match the entire display name given. The match is not case sensitive.
33
+ */
34
+ displayName?: string;
35
+ filters?: inputs.Database.GetOneoffPatchesFilter[];
36
+ /**
37
+ * A filter to return only resources that match the given lifecycle state exactly
38
+ */
39
+ state?: string;
40
+ }
41
+ /**
42
+ * A collection of values returned by getOneoffPatches.
43
+ */
44
+ export interface GetOneoffPatchesResult {
45
+ /**
46
+ * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
47
+ */
48
+ readonly compartmentId: string;
49
+ /**
50
+ * One-off patch name.
51
+ */
52
+ readonly displayName?: string;
53
+ readonly filters?: outputs.Database.GetOneoffPatchesFilter[];
54
+ /**
55
+ * The provider-assigned unique ID for this managed resource.
56
+ */
57
+ readonly id: string;
58
+ /**
59
+ * The list of oneoff_patches.
60
+ */
61
+ readonly oneoffPatches: outputs.Database.GetOneoffPatchesOneoffPatch[];
62
+ /**
63
+ * The current state of the one-off patch.
64
+ */
65
+ readonly state?: string;
66
+ }
67
+ /**
68
+ * This data source provides the list of Oneoff Patches in Oracle Cloud Infrastructure Database service.
69
+ *
70
+ * Lists one-off patches in the specified compartment.
71
+ *
72
+ * ## Example Usage
73
+ *
74
+ * ```typescript
75
+ * import * as pulumi from "@pulumi/pulumi";
76
+ * import * as oci from "@pulumi/oci";
77
+ *
78
+ * const testOneoffPatches = oci.Database.getOneoffPatches({
79
+ * compartmentId: _var.compartment_id,
80
+ * displayName: _var.oneoff_patch_display_name,
81
+ * state: _var.oneoff_patch_state,
82
+ * });
83
+ * ```
84
+ */
85
+ export declare function getOneoffPatchesOutput(args: GetOneoffPatchesOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetOneoffPatchesResult>;
86
+ /**
87
+ * A collection of arguments for invoking getOneoffPatches.
88
+ */
89
+ export interface GetOneoffPatchesOutputArgs {
90
+ /**
91
+ * (Updatable) The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
92
+ */
93
+ compartmentId: pulumi.Input<string>;
94
+ /**
95
+ * A filter to return only resources that match the entire display name given. The match is not case sensitive.
96
+ */
97
+ displayName?: pulumi.Input<string>;
98
+ filters?: pulumi.Input<pulumi.Input<inputs.Database.GetOneoffPatchesFilterArgs>[]>;
99
+ /**
100
+ * A filter to return only resources that match the given lifecycle state exactly
101
+ */
102
+ state?: pulumi.Input<string>;
103
+ }
@@ -0,0 +1,58 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.getOneoffPatchesOutput = exports.getOneoffPatches = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * This data source provides the list of Oneoff Patches in Oracle Cloud Infrastructure Database service.
10
+ *
11
+ * Lists one-off patches in the specified compartment.
12
+ *
13
+ * ## Example Usage
14
+ *
15
+ * ```typescript
16
+ * import * as pulumi from "@pulumi/pulumi";
17
+ * import * as oci from "@pulumi/oci";
18
+ *
19
+ * const testOneoffPatches = oci.Database.getOneoffPatches({
20
+ * compartmentId: _var.compartment_id,
21
+ * displayName: _var.oneoff_patch_display_name,
22
+ * state: _var.oneoff_patch_state,
23
+ * });
24
+ * ```
25
+ */
26
+ function getOneoffPatches(args, opts) {
27
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
28
+ return pulumi.runtime.invoke("oci:Database/getOneoffPatches:getOneoffPatches", {
29
+ "compartmentId": args.compartmentId,
30
+ "displayName": args.displayName,
31
+ "filters": args.filters,
32
+ "state": args.state,
33
+ }, opts);
34
+ }
35
+ exports.getOneoffPatches = getOneoffPatches;
36
+ /**
37
+ * This data source provides the list of Oneoff Patches in Oracle Cloud Infrastructure Database service.
38
+ *
39
+ * Lists one-off patches in the specified compartment.
40
+ *
41
+ * ## Example Usage
42
+ *
43
+ * ```typescript
44
+ * import * as pulumi from "@pulumi/pulumi";
45
+ * import * as oci from "@pulumi/oci";
46
+ *
47
+ * const testOneoffPatches = oci.Database.getOneoffPatches({
48
+ * compartmentId: _var.compartment_id,
49
+ * displayName: _var.oneoff_patch_display_name,
50
+ * state: _var.oneoff_patch_state,
51
+ * });
52
+ * ```
53
+ */
54
+ function getOneoffPatchesOutput(args, opts) {
55
+ return pulumi.output(args).apply((a) => getOneoffPatches(a, opts));
56
+ }
57
+ exports.getOneoffPatchesOutput = getOneoffPatchesOutput;
58
+ //# sourceMappingURL=getOneoffPatches.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getOneoffPatches.js","sourceRoot":"","sources":["../../database/getOneoffPatches.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;GAiBG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAA2B;IAEpF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gDAAgD,EAAE;QAC3E,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,4CASC;AA+CD;;;;;;;;;;;;;;;;;GAiBG;AACH,SAAgB,sBAAsB,CAAC,IAAgC,EAAE,IAA2B;IAChG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,gBAAgB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC3E,CAAC;AAFD,wDAEC"}
@@ -55,6 +55,10 @@ export interface GetVmClusterNetworkResult {
55
55
  * The list of DNS server IP addresses. Maximum of 3 allowed.
56
56
  */
57
57
  readonly dns: string[];
58
+ /**
59
+ * The SCAN details for DR network
60
+ */
61
+ readonly drScans: outputs.Database.GetVmClusterNetworkDrScan[];
58
62
  /**
59
63
  * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata infrastructure.
60
64
  */
@@ -1 +1 @@
1
- {"version":3,"file":"getVmClusterNetwork.js","sourceRoot":"","sources":["../../database/getVmClusterNetwork.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;GAiBG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAA2B;IAE1F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sDAAsD,EAAE;QACjF,yBAAyB,EAAE,IAAI,CAAC,uBAAuB;QACvD,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;KAChD,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,kDAOC;AAgFD;;;;;;;;;;;;;;;;;GAiBG;AACH,SAAgB,yBAAyB,CAAC,IAAmC,EAAE,IAA2B;IACtG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC9E,CAAC;AAFD,8DAEC"}
1
+ {"version":3,"file":"getVmClusterNetwork.js","sourceRoot":"","sources":["../../database/getVmClusterNetwork.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;GAiBG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAA2B;IAE1F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sDAAsD,EAAE;QACjF,yBAAyB,EAAE,IAAI,CAAC,uBAAuB;QACvD,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;KAChD,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,kDAOC;AAoFD;;;;;;;;;;;;;;;;;GAiBG;AACH,SAAgB,yBAAyB,CAAC,IAAmC,EAAE,IAA2B;IACtG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC9E,CAAC;AAFD,8DAEC"}
@@ -33,6 +33,10 @@ export interface GetVmClusterRecommendedNetworkArgs {
33
33
  * The list of DNS server IP addresses. Maximum of 3 allowed.
34
34
  */
35
35
  dns?: string[];
36
+ /**
37
+ * The DR SCAN TCPIP port. Default is 1521.
38
+ */
39
+ drScanListenerPortTcp?: number;
36
40
  /**
37
41
  * The Exadata infrastructure [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
38
42
  */
@@ -83,6 +87,11 @@ export interface GetVmClusterRecommendedNetworkResult {
83
87
  * The list of DNS server IP addresses. Maximum of 3 allowed.
84
88
  */
85
89
  readonly dns: string[];
90
+ readonly drScanListenerPortTcp?: number;
91
+ /**
92
+ * The SCAN details for DR network
93
+ */
94
+ readonly drScans: outputs.Database.GetVmClusterRecommendedNetworkDrScan[];
86
95
  readonly exadataInfrastructureId: string;
87
96
  /**
88
97
  * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
@@ -148,6 +157,10 @@ export interface GetVmClusterRecommendedNetworkOutputArgs {
148
157
  * The list of DNS server IP addresses. Maximum of 3 allowed.
149
158
  */
150
159
  dns?: pulumi.Input<pulumi.Input<string>[]>;
160
+ /**
161
+ * The DR SCAN TCPIP port. Default is 1521.
162
+ */
163
+ drScanListenerPortTcp?: pulumi.Input<number>;
151
164
  /**
152
165
  * The Exadata infrastructure [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
153
166
  */
@@ -18,6 +18,7 @@ function getVmClusterRecommendedNetwork(args, opts) {
18
18
  "definedTags": args.definedTags,
19
19
  "displayName": args.displayName,
20
20
  "dns": args.dns,
21
+ "drScanListenerPortTcp": args.drScanListenerPortTcp,
21
22
  "exadataInfrastructureId": args.exadataInfrastructureId,
22
23
  "freeformTags": args.freeformTags,
23
24
  "networks": args.networks,
@@ -1 +1 @@
1
- {"version":3,"file":"getVmClusterRecommendedNetwork.js","sourceRoot":"","sources":["../../database/getVmClusterRecommendedNetwork.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;GAIG;AACH,SAAgB,8BAA8B,CAAC,IAAwC,EAAE,IAA2B;IAEhH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4EAA4E,EAAE;QACvG,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,yBAAyB,EAAE,IAAI,CAAC,uBAAuB;QACvD,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,qBAAqB,EAAE,IAAI,CAAC,mBAAmB;QAC/C,wBAAwB,EAAE,IAAI,CAAC,sBAAsB;KACxD,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAhBD,wEAgBC;AAwGD;;;;GAIG;AACH,SAAgB,oCAAoC,CAAC,IAA8C,EAAE,IAA2B;IAC5H,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,8BAA8B,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACzF,CAAC;AAFD,oFAEC"}
1
+ {"version":3,"file":"getVmClusterRecommendedNetwork.js","sourceRoot":"","sources":["../../database/getVmClusterRecommendedNetwork.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;GAIG;AACH,SAAgB,8BAA8B,CAAC,IAAwC,EAAE,IAA2B;IAEhH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4EAA4E,EAAE;QACvG,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,uBAAuB,EAAE,IAAI,CAAC,qBAAqB;QACnD,yBAAyB,EAAE,IAAI,CAAC,uBAAuB;QACvD,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,qBAAqB,EAAE,IAAI,CAAC,mBAAmB;QAC/C,wBAAwB,EAAE,IAAI,CAAC,sBAAsB;KACxD,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAjBD,wEAiBC;AAiHD;;;;GAIG;AACH,SAAgB,oCAAoC,CAAC,IAA8C,EAAE,IAA2B;IAC5H,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,8BAA8B,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACzF,CAAC;AAFD,oFAEC"}
@@ -414,6 +414,12 @@ export declare const getManagedPreferredCredentialOutput: typeof import("./getMa
414
414
  export { GetManagedPreferredCredentialsArgs, GetManagedPreferredCredentialsResult, GetManagedPreferredCredentialsOutputArgs } from "./getManagedPreferredCredentials";
415
415
  export declare const getManagedPreferredCredentials: typeof import("./getManagedPreferredCredentials").getManagedPreferredCredentials;
416
416
  export declare const getManagedPreferredCredentialsOutput: typeof import("./getManagedPreferredCredentials").getManagedPreferredCredentialsOutput;
417
+ export { GetOneoffPatchArgs, GetOneoffPatchResult, GetOneoffPatchOutputArgs } from "./getOneoffPatch";
418
+ export declare const getOneoffPatch: typeof import("./getOneoffPatch").getOneoffPatch;
419
+ export declare const getOneoffPatchOutput: typeof import("./getOneoffPatch").getOneoffPatchOutput;
420
+ export { GetOneoffPatchesArgs, GetOneoffPatchesResult, GetOneoffPatchesOutputArgs } from "./getOneoffPatches";
421
+ export declare const getOneoffPatches: typeof import("./getOneoffPatches").getOneoffPatches;
422
+ export declare const getOneoffPatchesOutput: typeof import("./getOneoffPatches").getOneoffPatchesOutput;
417
423
  export { GetPluggableDatabaseArgs, GetPluggableDatabaseResult, GetPluggableDatabaseOutputArgs } from "./getPluggableDatabase";
418
424
  export declare const getPluggableDatabase: typeof import("./getPluggableDatabase").getPluggableDatabase;
419
425
  export declare const getPluggableDatabaseOutput: typeof import("./getPluggableDatabase").getPluggableDatabaseOutput;
@@ -468,6 +474,9 @@ export declare const KeyStore: typeof import("./keyStore").KeyStore;
468
474
  export { MaintenanceRunArgs, MaintenanceRunState } from "./maintenanceRun";
469
475
  export type MaintenanceRun = import("./maintenanceRun").MaintenanceRun;
470
476
  export declare const MaintenanceRun: typeof import("./maintenanceRun").MaintenanceRun;
477
+ export { OneoffPatchArgs, OneoffPatchState } from "./oneoffPatch";
478
+ export type OneoffPatch = import("./oneoffPatch").OneoffPatch;
479
+ export declare const OneoffPatch: typeof import("./oneoffPatch").OneoffPatch;
471
480
  export { PluggableDatabaseArgs, PluggableDatabaseState } from "./pluggableDatabase";
472
481
  export type PluggableDatabase = import("./pluggableDatabase").PluggableDatabase;
473
482
  export declare const PluggableDatabase: typeof import("./pluggableDatabase").PluggableDatabase;
package/database/index.js CHANGED
@@ -6,8 +6,8 @@ exports.getAutonomousCharacterSetsOutput = exports.getAutonomousCharacterSets =
6
6
  exports.getAutonomousVirtualMachines = exports.getAutonomousVirtualMachineOutput = exports.getAutonomousVirtualMachine = exports.getAutonomousPatchOutput = exports.getAutonomousPatch = exports.getAutonomousExadataInfrastructuresOutput = exports.getAutonomousExadataInfrastructures = exports.getAutonomousExadataInfrastructureShapesOutput = exports.getAutonomousExadataInfrastructureShapes = exports.getAutonomousExadataInfrastructureOcpuOutput = exports.getAutonomousExadataInfrastructureOcpu = exports.getAutonomousExadataInfrastructureOutput = exports.getAutonomousExadataInfrastructure = exports.getAutonomousDbVersionsOutput = exports.getAutonomousDbVersions = exports.getAutonomousDbPreviewVersionsOutput = exports.getAutonomousDbPreviewVersions = exports.getAutonomousDatabasesClonesOutput = exports.getAutonomousDatabasesClones = exports.getAutonomousDatabasesOutput = exports.getAutonomousDatabases = exports.getAutonomousDatabaseWalletOutput = exports.getAutonomousDatabaseWallet = exports.getAutonomousDatabaseRegionalWalletManagement = exports.getAutonomousDatabaseRefreshableClonesOutput = exports.getAutonomousDatabaseRefreshableClones = exports.getAutonomousDatabaseInstanceWalletManagementOutput = exports.getAutonomousDatabaseInstanceWalletManagement = exports.getAutonomousDatabaseDataguardAssociationsOutput = exports.getAutonomousDatabaseDataguardAssociations = exports.getAutonomousDatabaseDataguardAssociationOutput = exports.getAutonomousDatabaseDataguardAssociation = exports.getAutonomousDatabaseBackupsOutput = exports.getAutonomousDatabaseBackups = exports.getAutonomousDatabaseBackupOutput = exports.getAutonomousDatabaseBackup = exports.getAutonomousDatabaseOutput = exports.getAutonomousDatabase = exports.getAutonomousContainerPatchesOutput = exports.getAutonomousContainerPatches = exports.getAutonomousContainerDatabasesOutput = exports.getAutonomousContainerDatabases = exports.getAutonomousContainerDatabaseVersionsOutput = exports.getAutonomousContainerDatabaseVersions = exports.getAutonomousContainerDatabaseDataguardAssociationsOutput = exports.getAutonomousContainerDatabaseDataguardAssociations = exports.getAutonomousContainerDatabaseDataguardAssociationOutput = exports.getAutonomousContainerDatabaseDataguardAssociation = exports.getAutonomousContainerDatabaseOutput = exports.getAutonomousContainerDatabase = void 0;
7
7
  exports.getDatabases = exports.getDatabaseUpgradeHistoryEntryOutput = exports.getDatabaseUpgradeHistoryEntry = exports.getDatabaseUpgradeHistoryEntriesOutput = exports.getDatabaseUpgradeHistoryEntries = exports.getDatabaseSoftwareImagesOutput = exports.getDatabaseSoftwareImages = exports.getDatabaseSoftwareImageOutput = exports.getDatabaseSoftwareImage = exports.getDatabasePdbConversionHistoryEntryOutput = exports.getDatabasePdbConversionHistoryEntry = exports.getDatabasePdbConversionHistoryEntriesOutput = exports.getDatabasePdbConversionHistoryEntries = exports.getDatabaseMaintenanceRunHistoryOutput = exports.getDatabaseMaintenanceRunHistory = exports.getDatabaseMaintenanceRunHistoriesOutput = exports.getDatabaseMaintenanceRunHistories = exports.getDatabaseOutput = exports.getDatabase = exports.getDataGuardAssociationsOutput = exports.getDataGuardAssociations = exports.getDataGuardAssociationOutput = exports.getDataGuardAssociation = exports.getCloudVmClustersOutput = exports.getCloudVmClusters = exports.getCloudVmClusterIormConfigOutput = exports.getCloudVmClusterIormConfig = exports.getCloudVmClusterOutput = exports.getCloudVmCluster = exports.getCloudExadataInfrastructuresOutput = exports.getCloudExadataInfrastructures = exports.getCloudExadataInfrastructureUnAllocatedResourceOutput = exports.getCloudExadataInfrastructureUnAllocatedResource = exports.getCloudExadataInfrastructureOutput = exports.getCloudExadataInfrastructure = exports.getCloudAutonomousVmClustersOutput = exports.getCloudAutonomousVmClusters = exports.getCloudAutonomousVmClusterOutput = exports.getCloudAutonomousVmCluster = exports.getBackupsOutput = exports.getBackups = exports.getBackupDestinationsOutput = exports.getBackupDestinations = exports.getBackupDestinationOutput = exports.getBackupDestination = exports.getAutonomousVmClustersOutput = exports.getAutonomousVmClusters = exports.getAutonomousVmClusterOutput = exports.getAutonomousVmCluster = exports.getAutonomousVirtualMachinesOutput = void 0;
8
8
  exports.getExternalContainerDatabase = exports.getExadataIormConfigOutput = exports.getExadataIormConfig = exports.getExadataInfrastructuresOutput = exports.getExadataInfrastructures = exports.getExadataInfrastructureUnAllocatedResourceOutput = exports.getExadataInfrastructureUnAllocatedResource = exports.getExadataInfrastructureDownloadConfigFileOutput = exports.getExadataInfrastructureDownloadConfigFile = exports.getExadataInfrastructureOutput = exports.getExadataInfrastructure = exports.getDbVersionsOutput = exports.getDbVersions = exports.getDbSystemsUpgradeHistoryEntryOutput = exports.getDbSystemsUpgradeHistoryEntry = exports.getDbSystemsUpgradeHistoryEntriesOutput = exports.getDbSystemsUpgradeHistoryEntries = exports.getDbSystemsOutput = exports.getDbSystems = exports.getDbSystemStoragePerformancesOutput = exports.getDbSystemStoragePerformances = exports.getDbSystemShapesOutput = exports.getDbSystemShapes = exports.getDbSystemPatchesOutput = exports.getDbSystemPatches = exports.getDbSystemHistoryEntriesOutput = exports.getDbSystemHistoryEntries = exports.getDbSystemComputePerformancesOutput = exports.getDbSystemComputePerformances = exports.getDbServersOutput = exports.getDbServers = exports.getDbServerOutput = exports.getDbServer = exports.getDbNodesOutput = exports.getDbNodes = exports.getDbNodeConsoleConnectionsOutput = exports.getDbNodeConsoleConnections = exports.getDbNodeConsoleConnectionOutput = exports.getDbNodeConsoleConnection = exports.getDbNodeOutput = exports.getDbNode = exports.getDbHomesOutput = exports.getDbHomes = exports.getDbHomePatchesOutput = exports.getDbHomePatches = exports.getDbHomePatchHistoryEntriesOutput = exports.getDbHomePatchHistoryEntries = exports.getDbHomeOutput = exports.getDbHome = exports.getDatabasesOutput = void 0;
9
- exports.getVmClusterPatchHistoryEntry = exports.getVmClusterPatchHistoryEntriesOutput = exports.getVmClusterPatchHistoryEntries = exports.getVmClusterPatchOutput = exports.getVmClusterPatch = exports.getVmClusterNetworksOutput = exports.getVmClusterNetworks = exports.getVmClusterNetworkDownloadConfigFileOutput = exports.getVmClusterNetworkDownloadConfigFile = exports.getVmClusterNetworkOutput = exports.getVmClusterNetwork = exports.getVmClusterOutput = exports.getVmCluster = exports.getPluggableDatabasesOutput = exports.getPluggableDatabases = exports.getPluggableDatabaseOutput = exports.getPluggableDatabase = exports.getManagedPreferredCredentialsOutput = exports.getManagedPreferredCredentials = exports.getManagedPreferredCredentialOutput = exports.getManagedPreferredCredential = exports.getMaintenanceRunsOutput = exports.getMaintenanceRuns = exports.getMaintenanceRunOutput = exports.getMaintenanceRun = exports.getKeyStoresOutput = exports.getKeyStores = exports.getKeyStoreOutput = exports.getKeyStore = exports.getInfrastructureTargetVersionOutput = exports.getInfrastructureTargetVersion = exports.getGiVersionsOutput = exports.getGiVersions = exports.getFlexComponentsOutput = exports.getFlexComponents = exports.getExternalPluggableDatabasesOutput = exports.getExternalPluggableDatabases = exports.getExternalPluggableDatabaseOutput = exports.getExternalPluggableDatabase = exports.getExternalNonContainerDatabasesOutput = exports.getExternalNonContainerDatabases = exports.getExternalNonContainerDatabaseOutput = exports.getExternalNonContainerDatabase = exports.getExternalDatabaseConnectorsOutput = exports.getExternalDatabaseConnectors = exports.getExternalDatabaseConnectorOutput = exports.getExternalDatabaseConnector = exports.getExternalContainerDatabasesOutput = exports.getExternalContainerDatabases = exports.getExternalContainerDatabaseOutput = void 0;
10
- exports.VmClusterRemoveVirtualMachine = exports.VmClusterNetwork = exports.VmClusterAddVirtualNetwork = exports.VmCluster = exports.PluggableDatabasesRemoteClone = exports.PluggableDatabasesLocalClone = exports.PluggableDatabaseManagementsManagement = exports.PluggableDatabase = exports.MaintenanceRun = exports.KeyStore = exports.getVmClustersOutput = exports.getVmClusters = exports.getVmClusterUpdatesOutput = exports.getVmClusterUpdates = exports.getVmClusterUpdateHistoryEntryOutput = exports.getVmClusterUpdateHistoryEntry = exports.getVmClusterUpdateHistoryEntriesOutput = exports.getVmClusterUpdateHistoryEntries = exports.getVmClusterUpdateOutput = exports.getVmClusterUpdate = exports.getVmClusterRecommendedNetworkOutput = exports.getVmClusterRecommendedNetwork = exports.getVmClusterPatchesOutput = exports.getVmClusterPatches = exports.getVmClusterPatchHistoryEntryOutput = void 0;
9
+ exports.getVmClusterPatch = exports.getVmClusterNetworksOutput = exports.getVmClusterNetworks = exports.getVmClusterNetworkDownloadConfigFileOutput = exports.getVmClusterNetworkDownloadConfigFile = exports.getVmClusterNetworkOutput = exports.getVmClusterNetwork = exports.getVmClusterOutput = exports.getVmCluster = exports.getPluggableDatabasesOutput = exports.getPluggableDatabases = exports.getPluggableDatabaseOutput = exports.getPluggableDatabase = exports.getOneoffPatchesOutput = exports.getOneoffPatches = exports.getOneoffPatchOutput = exports.getOneoffPatch = exports.getManagedPreferredCredentialsOutput = exports.getManagedPreferredCredentials = exports.getManagedPreferredCredentialOutput = exports.getManagedPreferredCredential = exports.getMaintenanceRunsOutput = exports.getMaintenanceRuns = exports.getMaintenanceRunOutput = exports.getMaintenanceRun = exports.getKeyStoresOutput = exports.getKeyStores = exports.getKeyStoreOutput = exports.getKeyStore = exports.getInfrastructureTargetVersionOutput = exports.getInfrastructureTargetVersion = exports.getGiVersionsOutput = exports.getGiVersions = exports.getFlexComponentsOutput = exports.getFlexComponents = exports.getExternalPluggableDatabasesOutput = exports.getExternalPluggableDatabases = exports.getExternalPluggableDatabaseOutput = exports.getExternalPluggableDatabase = exports.getExternalNonContainerDatabasesOutput = exports.getExternalNonContainerDatabases = exports.getExternalNonContainerDatabaseOutput = exports.getExternalNonContainerDatabase = exports.getExternalDatabaseConnectorsOutput = exports.getExternalDatabaseConnectors = exports.getExternalDatabaseConnectorOutput = exports.getExternalDatabaseConnector = exports.getExternalContainerDatabasesOutput = exports.getExternalContainerDatabases = exports.getExternalContainerDatabaseOutput = void 0;
10
+ exports.VmClusterRemoveVirtualMachine = exports.VmClusterNetwork = exports.VmClusterAddVirtualNetwork = exports.VmCluster = exports.PluggableDatabasesRemoteClone = exports.PluggableDatabasesLocalClone = exports.PluggableDatabaseManagementsManagement = exports.PluggableDatabase = exports.OneoffPatch = exports.MaintenanceRun = exports.KeyStore = exports.getVmClustersOutput = exports.getVmClusters = exports.getVmClusterUpdatesOutput = exports.getVmClusterUpdates = exports.getVmClusterUpdateHistoryEntryOutput = exports.getVmClusterUpdateHistoryEntry = exports.getVmClusterUpdateHistoryEntriesOutput = exports.getVmClusterUpdateHistoryEntries = exports.getVmClusterUpdateOutput = exports.getVmClusterUpdate = exports.getVmClusterRecommendedNetworkOutput = exports.getVmClusterRecommendedNetwork = exports.getVmClusterPatchesOutput = exports.getVmClusterPatches = exports.getVmClusterPatchHistoryEntryOutput = exports.getVmClusterPatchHistoryEntry = exports.getVmClusterPatchHistoryEntriesOutput = exports.getVmClusterPatchHistoryEntries = exports.getVmClusterPatchOutput = void 0;
11
11
  const pulumi = require("@pulumi/pulumi");
12
12
  const utilities = require("../utilities");
13
13
  exports.ApplicationVip = null;
@@ -382,6 +382,12 @@ utilities.lazyLoad(exports, ["getManagedPreferredCredential", "getManagedPreferr
382
382
  exports.getManagedPreferredCredentials = null;
383
383
  exports.getManagedPreferredCredentialsOutput = null;
384
384
  utilities.lazyLoad(exports, ["getManagedPreferredCredentials", "getManagedPreferredCredentialsOutput"], () => require("./getManagedPreferredCredentials"));
385
+ exports.getOneoffPatch = null;
386
+ exports.getOneoffPatchOutput = null;
387
+ utilities.lazyLoad(exports, ["getOneoffPatch", "getOneoffPatchOutput"], () => require("./getOneoffPatch"));
388
+ exports.getOneoffPatches = null;
389
+ exports.getOneoffPatchesOutput = null;
390
+ utilities.lazyLoad(exports, ["getOneoffPatches", "getOneoffPatchesOutput"], () => require("./getOneoffPatches"));
385
391
  exports.getPluggableDatabase = null;
386
392
  exports.getPluggableDatabaseOutput = null;
387
393
  utilities.lazyLoad(exports, ["getPluggableDatabase", "getPluggableDatabaseOutput"], () => require("./getPluggableDatabase"));
@@ -434,6 +440,8 @@ exports.KeyStore = null;
434
440
  utilities.lazyLoad(exports, ["KeyStore"], () => require("./keyStore"));
435
441
  exports.MaintenanceRun = null;
436
442
  utilities.lazyLoad(exports, ["MaintenanceRun"], () => require("./maintenanceRun"));
443
+ exports.OneoffPatch = null;
444
+ utilities.lazyLoad(exports, ["OneoffPatch"], () => require("./oneoffPatch"));
437
445
  exports.PluggableDatabase = null;
438
446
  utilities.lazyLoad(exports, ["PluggableDatabase"], () => require("./pluggableDatabase"));
439
447
  exports.PluggableDatabaseManagementsManagement = null;
@@ -546,6 +554,8 @@ const _module = {
546
554
  return new exports.KeyStore(name, undefined, { urn });
547
555
  case "oci:Database/maintenanceRun:MaintenanceRun":
548
556
  return new exports.MaintenanceRun(name, undefined, { urn });
557
+ case "oci:Database/oneoffPatch:OneoffPatch":
558
+ return new exports.OneoffPatch(name, undefined, { urn });
549
559
  case "oci:Database/pluggableDatabase:PluggableDatabase":
550
560
  return new exports.PluggableDatabase(name, undefined, { urn });
551
561
  case "oci:Database/pluggableDatabaseManagementsManagement:PluggableDatabaseManagementsManagement":
@@ -613,6 +623,7 @@ pulumi.runtime.registerResourceModule("oci", "Database/externalPluggableDatabase
613
623
  pulumi.runtime.registerResourceModule("oci", "Database/externalPluggableDatabasesStackMonitoring", _module);
614
624
  pulumi.runtime.registerResourceModule("oci", "Database/keyStore", _module);
615
625
  pulumi.runtime.registerResourceModule("oci", "Database/maintenanceRun", _module);
626
+ pulumi.runtime.registerResourceModule("oci", "Database/oneoffPatch", _module);
616
627
  pulumi.runtime.registerResourceModule("oci", "Database/pluggableDatabase", _module);
617
628
  pulumi.runtime.registerResourceModule("oci", "Database/pluggableDatabaseManagementsManagement", _module);
618
629
  pulumi.runtime.registerResourceModule("oci", "Database/pluggableDatabasesLocalClone", _module);