@pulumi/azure 6.6.0-alpha.1729199939 → 6.6.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/appconfiguration/configurationStore.d.ts +6 -6
- package/appinsights/insights.d.ts +3 -3
- package/compute/bastionHost.d.ts +18 -18
- package/compute/getBastionHost.d.ts +3 -0
- package/compute/getBastionHost.js.map +1 -1
- package/compute/linuxVirtualMachine.d.ts +3 -3
- package/containerapp/app.d.ts +12 -0
- package/containerapp/app.js +2 -0
- package/containerapp/app.js.map +1 -1
- package/containerapp/customDomain.d.ts +5 -2
- package/containerapp/customDomain.js +5 -2
- package/containerapp/customDomain.js.map +1 -1
- package/containerapp/getApp.d.ts +4 -0
- package/containerapp/getApp.js.map +1 -1
- package/containerservice/kubernetesCluster.d.ts +3 -3
- package/devcenter/attachedNetwork.d.ts +127 -0
- package/devcenter/attachedNetwork.js +114 -0
- package/devcenter/attachedNetwork.js.map +1 -0
- package/devcenter/index.d.ts +3 -0
- package/devcenter/index.js +6 -1
- package/devcenter/index.js.map +1 -1
- package/fluidrelay/server.d.ts +3 -0
- package/fluidrelay/server.js +2 -0
- package/fluidrelay/server.js.map +1 -1
- package/index.d.ts +2 -1
- package/index.js +4 -2
- package/index.js.map +1 -1
- package/monitoring/alertPrometheusRuleGroup.d.ts +3 -3
- package/network/virtualHub.d.ts +3 -3
- package/oracle/cloudVmCluster.d.ts +417 -0
- package/oracle/cloudVmCluster.js +207 -0
- package/oracle/cloudVmCluster.js.map +1 -0
- package/oracle/exadataInfrastructure.d.ts +209 -0
- package/oracle/exadataInfrastructure.js +120 -0
- package/oracle/exadataInfrastructure.js.map +1 -0
- package/oracle/getCloudVmCluster.d.ts +272 -0
- package/oracle/getCloudVmCluster.js +56 -0
- package/oracle/getCloudVmCluster.js.map +1 -0
- package/oracle/getDbServers.d.ts +77 -0
- package/oracle/getDbServers.js +56 -0
- package/oracle/getDbServers.js.map +1 -0
- package/oracle/getExadataInfrastructure.d.ts +207 -0
- package/oracle/getExadataInfrastructure.js +56 -0
- package/oracle/getExadataInfrastructure.js.map +1 -0
- package/oracle/index.d.ts +15 -0
- package/oracle/index.js +36 -0
- package/oracle/index.js.map +1 -0
- package/package.json +2 -2
- package/stack/hciLogicalNetwork.d.ts +0 -36
- package/stack/hciLogicalNetwork.js +0 -36
- package/stack/hciLogicalNetwork.js.map +1 -1
- package/types/input.d.ts +58 -6
- package/types/output.d.ts +237 -7
|
@@ -0,0 +1,209 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "../types/input";
|
|
3
|
+
import * as outputs from "../types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Manages a Cloud Exadata Infrastructure.
|
|
6
|
+
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as azure from "@pulumi/azure";
|
|
12
|
+
*
|
|
13
|
+
* const example = new azure.core.ResourceGroup("example", {
|
|
14
|
+
* name: "example-resources",
|
|
15
|
+
* location: "West Europe",
|
|
16
|
+
* });
|
|
17
|
+
* const exampleExadataInfrastructure = new azure.oracle.ExadataInfrastructure("example", {
|
|
18
|
+
* name: "example-exadata-infra",
|
|
19
|
+
* resourceGroupName: example.name,
|
|
20
|
+
* location: example.location,
|
|
21
|
+
* zones: ["1"],
|
|
22
|
+
* displayName: "example-exadata-infra",
|
|
23
|
+
* storageCount: 3,
|
|
24
|
+
* computeCount: 2,
|
|
25
|
+
* shape: "Exadata.X9M",
|
|
26
|
+
* });
|
|
27
|
+
* ```
|
|
28
|
+
*
|
|
29
|
+
* ## Import
|
|
30
|
+
*
|
|
31
|
+
* Cloud Exadata Infrastructures can be imported using the `resource id`, e.g.
|
|
32
|
+
*
|
|
33
|
+
* ```sh
|
|
34
|
+
* $ pulumi import azure:oracle/exadataInfrastructure:ExadataInfrastructure example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup/providers/Oracle.Database/cloudExadataInfrastructures/cloudExadataInfrastructures1
|
|
35
|
+
* ```
|
|
36
|
+
*/
|
|
37
|
+
export declare class ExadataInfrastructure extends pulumi.CustomResource {
|
|
38
|
+
/**
|
|
39
|
+
* Get an existing ExadataInfrastructure resource's state with the given name, ID, and optional extra
|
|
40
|
+
* properties used to qualify the lookup.
|
|
41
|
+
*
|
|
42
|
+
* @param name The _unique_ name of the resulting resource.
|
|
43
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
44
|
+
* @param state Any extra arguments used during the lookup.
|
|
45
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
46
|
+
*/
|
|
47
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ExadataInfrastructureState, opts?: pulumi.CustomResourceOptions): ExadataInfrastructure;
|
|
48
|
+
/**
|
|
49
|
+
* Returns true if the given object is an instance of ExadataInfrastructure. This is designed to work even
|
|
50
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
51
|
+
*/
|
|
52
|
+
static isInstance(obj: any): obj is ExadataInfrastructure;
|
|
53
|
+
/**
|
|
54
|
+
* The number of compute servers for the Cloud Exadata Infrastructure.
|
|
55
|
+
*/
|
|
56
|
+
readonly computeCount: pulumi.Output<number>;
|
|
57
|
+
/**
|
|
58
|
+
* The email address used by Oracle to send notifications regarding databases and infrastructure.
|
|
59
|
+
*/
|
|
60
|
+
readonly customerContacts: pulumi.Output<string[]>;
|
|
61
|
+
/**
|
|
62
|
+
* The user-friendly name for the Cloud Exadata Infrastructure resource. The name does not need to be unique.
|
|
63
|
+
*/
|
|
64
|
+
readonly displayName: pulumi.Output<string>;
|
|
65
|
+
/**
|
|
66
|
+
* The Azure Region where the Cloud Exadata Infrastructure should exist. Changing this forces a new Cloud Exadata Infrastructure to be created.
|
|
67
|
+
*/
|
|
68
|
+
readonly location: pulumi.Output<string>;
|
|
69
|
+
/**
|
|
70
|
+
* One or more `maintenanceWindow` blocks as defined below.
|
|
71
|
+
*/
|
|
72
|
+
readonly maintenanceWindows: pulumi.Output<outputs.oracle.ExadataInfrastructureMaintenanceWindow[]>;
|
|
73
|
+
/**
|
|
74
|
+
* The name which should be used for this Cloud Exadata Infrastructure.
|
|
75
|
+
*/
|
|
76
|
+
readonly name: pulumi.Output<string>;
|
|
77
|
+
/**
|
|
78
|
+
* The name of the Resource Group where the ODB@A Infrastructure should exist.
|
|
79
|
+
*/
|
|
80
|
+
readonly resourceGroupName: pulumi.Output<string>;
|
|
81
|
+
/**
|
|
82
|
+
* The shape of the ODB@A infrastructure resource.
|
|
83
|
+
*/
|
|
84
|
+
readonly shape: pulumi.Output<string>;
|
|
85
|
+
/**
|
|
86
|
+
* The number of storage servers for the Cloud Exadata Infrastructure.
|
|
87
|
+
*/
|
|
88
|
+
readonly storageCount: pulumi.Output<number>;
|
|
89
|
+
/**
|
|
90
|
+
* A mapping of tags which should be assigned to the Cloud Exadata Infrastructure.
|
|
91
|
+
*/
|
|
92
|
+
readonly tags: pulumi.Output<{
|
|
93
|
+
[key: string]: string;
|
|
94
|
+
} | undefined>;
|
|
95
|
+
/**
|
|
96
|
+
* Cloud Exadata Infrastructure zones.
|
|
97
|
+
*/
|
|
98
|
+
readonly zones: pulumi.Output<string[]>;
|
|
99
|
+
/**
|
|
100
|
+
* Create a ExadataInfrastructure resource with the given unique name, arguments, and options.
|
|
101
|
+
*
|
|
102
|
+
* @param name The _unique_ name of the resource.
|
|
103
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
104
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
105
|
+
*/
|
|
106
|
+
constructor(name: string, args: ExadataInfrastructureArgs, opts?: pulumi.CustomResourceOptions);
|
|
107
|
+
}
|
|
108
|
+
/**
|
|
109
|
+
* Input properties used for looking up and filtering ExadataInfrastructure resources.
|
|
110
|
+
*/
|
|
111
|
+
export interface ExadataInfrastructureState {
|
|
112
|
+
/**
|
|
113
|
+
* The number of compute servers for the Cloud Exadata Infrastructure.
|
|
114
|
+
*/
|
|
115
|
+
computeCount?: pulumi.Input<number>;
|
|
116
|
+
/**
|
|
117
|
+
* The email address used by Oracle to send notifications regarding databases and infrastructure.
|
|
118
|
+
*/
|
|
119
|
+
customerContacts?: pulumi.Input<pulumi.Input<string>[]>;
|
|
120
|
+
/**
|
|
121
|
+
* The user-friendly name for the Cloud Exadata Infrastructure resource. The name does not need to be unique.
|
|
122
|
+
*/
|
|
123
|
+
displayName?: pulumi.Input<string>;
|
|
124
|
+
/**
|
|
125
|
+
* The Azure Region where the Cloud Exadata Infrastructure should exist. Changing this forces a new Cloud Exadata Infrastructure to be created.
|
|
126
|
+
*/
|
|
127
|
+
location?: pulumi.Input<string>;
|
|
128
|
+
/**
|
|
129
|
+
* One or more `maintenanceWindow` blocks as defined below.
|
|
130
|
+
*/
|
|
131
|
+
maintenanceWindows?: pulumi.Input<pulumi.Input<inputs.oracle.ExadataInfrastructureMaintenanceWindow>[]>;
|
|
132
|
+
/**
|
|
133
|
+
* The name which should be used for this Cloud Exadata Infrastructure.
|
|
134
|
+
*/
|
|
135
|
+
name?: pulumi.Input<string>;
|
|
136
|
+
/**
|
|
137
|
+
* The name of the Resource Group where the ODB@A Infrastructure should exist.
|
|
138
|
+
*/
|
|
139
|
+
resourceGroupName?: pulumi.Input<string>;
|
|
140
|
+
/**
|
|
141
|
+
* The shape of the ODB@A infrastructure resource.
|
|
142
|
+
*/
|
|
143
|
+
shape?: pulumi.Input<string>;
|
|
144
|
+
/**
|
|
145
|
+
* The number of storage servers for the Cloud Exadata Infrastructure.
|
|
146
|
+
*/
|
|
147
|
+
storageCount?: pulumi.Input<number>;
|
|
148
|
+
/**
|
|
149
|
+
* A mapping of tags which should be assigned to the Cloud Exadata Infrastructure.
|
|
150
|
+
*/
|
|
151
|
+
tags?: pulumi.Input<{
|
|
152
|
+
[key: string]: pulumi.Input<string>;
|
|
153
|
+
}>;
|
|
154
|
+
/**
|
|
155
|
+
* Cloud Exadata Infrastructure zones.
|
|
156
|
+
*/
|
|
157
|
+
zones?: pulumi.Input<pulumi.Input<string>[]>;
|
|
158
|
+
}
|
|
159
|
+
/**
|
|
160
|
+
* The set of arguments for constructing a ExadataInfrastructure resource.
|
|
161
|
+
*/
|
|
162
|
+
export interface ExadataInfrastructureArgs {
|
|
163
|
+
/**
|
|
164
|
+
* The number of compute servers for the Cloud Exadata Infrastructure.
|
|
165
|
+
*/
|
|
166
|
+
computeCount: pulumi.Input<number>;
|
|
167
|
+
/**
|
|
168
|
+
* The email address used by Oracle to send notifications regarding databases and infrastructure.
|
|
169
|
+
*/
|
|
170
|
+
customerContacts?: pulumi.Input<pulumi.Input<string>[]>;
|
|
171
|
+
/**
|
|
172
|
+
* The user-friendly name for the Cloud Exadata Infrastructure resource. The name does not need to be unique.
|
|
173
|
+
*/
|
|
174
|
+
displayName: pulumi.Input<string>;
|
|
175
|
+
/**
|
|
176
|
+
* The Azure Region where the Cloud Exadata Infrastructure should exist. Changing this forces a new Cloud Exadata Infrastructure to be created.
|
|
177
|
+
*/
|
|
178
|
+
location?: pulumi.Input<string>;
|
|
179
|
+
/**
|
|
180
|
+
* One or more `maintenanceWindow` blocks as defined below.
|
|
181
|
+
*/
|
|
182
|
+
maintenanceWindows?: pulumi.Input<pulumi.Input<inputs.oracle.ExadataInfrastructureMaintenanceWindow>[]>;
|
|
183
|
+
/**
|
|
184
|
+
* The name which should be used for this Cloud Exadata Infrastructure.
|
|
185
|
+
*/
|
|
186
|
+
name?: pulumi.Input<string>;
|
|
187
|
+
/**
|
|
188
|
+
* The name of the Resource Group where the ODB@A Infrastructure should exist.
|
|
189
|
+
*/
|
|
190
|
+
resourceGroupName: pulumi.Input<string>;
|
|
191
|
+
/**
|
|
192
|
+
* The shape of the ODB@A infrastructure resource.
|
|
193
|
+
*/
|
|
194
|
+
shape: pulumi.Input<string>;
|
|
195
|
+
/**
|
|
196
|
+
* The number of storage servers for the Cloud Exadata Infrastructure.
|
|
197
|
+
*/
|
|
198
|
+
storageCount: pulumi.Input<number>;
|
|
199
|
+
/**
|
|
200
|
+
* A mapping of tags which should be assigned to the Cloud Exadata Infrastructure.
|
|
201
|
+
*/
|
|
202
|
+
tags?: pulumi.Input<{
|
|
203
|
+
[key: string]: pulumi.Input<string>;
|
|
204
|
+
}>;
|
|
205
|
+
/**
|
|
206
|
+
* Cloud Exadata Infrastructure zones.
|
|
207
|
+
*/
|
|
208
|
+
zones: pulumi.Input<pulumi.Input<string>[]>;
|
|
209
|
+
}
|
|
@@ -0,0 +1,120 @@
|
|
|
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.ExadataInfrastructure = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Manages a Cloud Exadata Infrastructure.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as azure from "@pulumi/azure";
|
|
16
|
+
*
|
|
17
|
+
* const example = new azure.core.ResourceGroup("example", {
|
|
18
|
+
* name: "example-resources",
|
|
19
|
+
* location: "West Europe",
|
|
20
|
+
* });
|
|
21
|
+
* const exampleExadataInfrastructure = new azure.oracle.ExadataInfrastructure("example", {
|
|
22
|
+
* name: "example-exadata-infra",
|
|
23
|
+
* resourceGroupName: example.name,
|
|
24
|
+
* location: example.location,
|
|
25
|
+
* zones: ["1"],
|
|
26
|
+
* displayName: "example-exadata-infra",
|
|
27
|
+
* storageCount: 3,
|
|
28
|
+
* computeCount: 2,
|
|
29
|
+
* shape: "Exadata.X9M",
|
|
30
|
+
* });
|
|
31
|
+
* ```
|
|
32
|
+
*
|
|
33
|
+
* ## Import
|
|
34
|
+
*
|
|
35
|
+
* Cloud Exadata Infrastructures can be imported using the `resource id`, e.g.
|
|
36
|
+
*
|
|
37
|
+
* ```sh
|
|
38
|
+
* $ pulumi import azure:oracle/exadataInfrastructure:ExadataInfrastructure example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup/providers/Oracle.Database/cloudExadataInfrastructures/cloudExadataInfrastructures1
|
|
39
|
+
* ```
|
|
40
|
+
*/
|
|
41
|
+
class ExadataInfrastructure extends pulumi.CustomResource {
|
|
42
|
+
constructor(name, argsOrState, opts) {
|
|
43
|
+
let resourceInputs = {};
|
|
44
|
+
opts = opts || {};
|
|
45
|
+
if (opts.id) {
|
|
46
|
+
const state = argsOrState;
|
|
47
|
+
resourceInputs["computeCount"] = state ? state.computeCount : undefined;
|
|
48
|
+
resourceInputs["customerContacts"] = state ? state.customerContacts : undefined;
|
|
49
|
+
resourceInputs["displayName"] = state ? state.displayName : undefined;
|
|
50
|
+
resourceInputs["location"] = state ? state.location : undefined;
|
|
51
|
+
resourceInputs["maintenanceWindows"] = state ? state.maintenanceWindows : undefined;
|
|
52
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
53
|
+
resourceInputs["resourceGroupName"] = state ? state.resourceGroupName : undefined;
|
|
54
|
+
resourceInputs["shape"] = state ? state.shape : undefined;
|
|
55
|
+
resourceInputs["storageCount"] = state ? state.storageCount : undefined;
|
|
56
|
+
resourceInputs["tags"] = state ? state.tags : undefined;
|
|
57
|
+
resourceInputs["zones"] = state ? state.zones : undefined;
|
|
58
|
+
}
|
|
59
|
+
else {
|
|
60
|
+
const args = argsOrState;
|
|
61
|
+
if ((!args || args.computeCount === undefined) && !opts.urn) {
|
|
62
|
+
throw new Error("Missing required property 'computeCount'");
|
|
63
|
+
}
|
|
64
|
+
if ((!args || args.displayName === undefined) && !opts.urn) {
|
|
65
|
+
throw new Error("Missing required property 'displayName'");
|
|
66
|
+
}
|
|
67
|
+
if ((!args || args.resourceGroupName === undefined) && !opts.urn) {
|
|
68
|
+
throw new Error("Missing required property 'resourceGroupName'");
|
|
69
|
+
}
|
|
70
|
+
if ((!args || args.shape === undefined) && !opts.urn) {
|
|
71
|
+
throw new Error("Missing required property 'shape'");
|
|
72
|
+
}
|
|
73
|
+
if ((!args || args.storageCount === undefined) && !opts.urn) {
|
|
74
|
+
throw new Error("Missing required property 'storageCount'");
|
|
75
|
+
}
|
|
76
|
+
if ((!args || args.zones === undefined) && !opts.urn) {
|
|
77
|
+
throw new Error("Missing required property 'zones'");
|
|
78
|
+
}
|
|
79
|
+
resourceInputs["computeCount"] = args ? args.computeCount : undefined;
|
|
80
|
+
resourceInputs["customerContacts"] = args ? args.customerContacts : undefined;
|
|
81
|
+
resourceInputs["displayName"] = args ? args.displayName : undefined;
|
|
82
|
+
resourceInputs["location"] = args ? args.location : undefined;
|
|
83
|
+
resourceInputs["maintenanceWindows"] = args ? args.maintenanceWindows : undefined;
|
|
84
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
85
|
+
resourceInputs["resourceGroupName"] = args ? args.resourceGroupName : undefined;
|
|
86
|
+
resourceInputs["shape"] = args ? args.shape : undefined;
|
|
87
|
+
resourceInputs["storageCount"] = args ? args.storageCount : undefined;
|
|
88
|
+
resourceInputs["tags"] = args ? args.tags : undefined;
|
|
89
|
+
resourceInputs["zones"] = args ? args.zones : undefined;
|
|
90
|
+
}
|
|
91
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
92
|
+
super(ExadataInfrastructure.__pulumiType, name, resourceInputs, opts);
|
|
93
|
+
}
|
|
94
|
+
/**
|
|
95
|
+
* Get an existing ExadataInfrastructure resource's state with the given name, ID, and optional extra
|
|
96
|
+
* properties used to qualify the lookup.
|
|
97
|
+
*
|
|
98
|
+
* @param name The _unique_ name of the resulting resource.
|
|
99
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
100
|
+
* @param state Any extra arguments used during the lookup.
|
|
101
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
102
|
+
*/
|
|
103
|
+
static get(name, id, state, opts) {
|
|
104
|
+
return new ExadataInfrastructure(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
105
|
+
}
|
|
106
|
+
/**
|
|
107
|
+
* Returns true if the given object is an instance of ExadataInfrastructure. This is designed to work even
|
|
108
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
109
|
+
*/
|
|
110
|
+
static isInstance(obj) {
|
|
111
|
+
if (obj === undefined || obj === null) {
|
|
112
|
+
return false;
|
|
113
|
+
}
|
|
114
|
+
return obj['__pulumiType'] === ExadataInfrastructure.__pulumiType;
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
exports.ExadataInfrastructure = ExadataInfrastructure;
|
|
118
|
+
/** @internal */
|
|
119
|
+
ExadataInfrastructure.__pulumiType = 'azure:oracle/exadataInfrastructure:ExadataInfrastructure';
|
|
120
|
+
//# sourceMappingURL=exadataInfrastructure.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"exadataInfrastructure.js","sourceRoot":"","sources":["../../oracle/exadataInfrastructure.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,272 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "../types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Use this data source to access information about an existing Cloud VM Cluster.
|
|
5
|
+
*
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
*
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as azure from "@pulumi/azure";
|
|
11
|
+
*
|
|
12
|
+
* const example = azure.oracle.getCloudVmCluster({
|
|
13
|
+
* name: "existing",
|
|
14
|
+
* resourceGroupName: "existing",
|
|
15
|
+
* });
|
|
16
|
+
* export const id = example.then(example => example.id);
|
|
17
|
+
* ```
|
|
18
|
+
*/
|
|
19
|
+
export declare function getCloudVmCluster(args: GetCloudVmClusterArgs, opts?: pulumi.InvokeOptions): Promise<GetCloudVmClusterResult>;
|
|
20
|
+
/**
|
|
21
|
+
* A collection of arguments for invoking getCloudVmCluster.
|
|
22
|
+
*/
|
|
23
|
+
export interface GetCloudVmClusterArgs {
|
|
24
|
+
/**
|
|
25
|
+
* The name of this Cloud VM Cluster.
|
|
26
|
+
*/
|
|
27
|
+
name: string;
|
|
28
|
+
/**
|
|
29
|
+
* The name of the Resource Group where the Cloud VM Cluster exists.
|
|
30
|
+
*/
|
|
31
|
+
resourceGroupName: string;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* A collection of values returned by getCloudVmCluster.
|
|
35
|
+
*/
|
|
36
|
+
export interface GetCloudVmClusterResult {
|
|
37
|
+
/**
|
|
38
|
+
* Client OCI backup subnet CIDR, default is `192.168.252.0/22`.
|
|
39
|
+
*/
|
|
40
|
+
readonly backupSubnetCidr: string;
|
|
41
|
+
/**
|
|
42
|
+
* The Cloud Exadata Infrastructure ID.
|
|
43
|
+
*/
|
|
44
|
+
readonly cloudExadataInfrastructureId: string;
|
|
45
|
+
/**
|
|
46
|
+
* The cluster name for Cloud VM Cluster.
|
|
47
|
+
*/
|
|
48
|
+
readonly clusterName: string;
|
|
49
|
+
/**
|
|
50
|
+
* The OCID of the compartment.
|
|
51
|
+
*/
|
|
52
|
+
readonly compartmentId: string;
|
|
53
|
+
/**
|
|
54
|
+
* A `computeNodes` block as defined below.
|
|
55
|
+
*/
|
|
56
|
+
readonly computeNodes: string[];
|
|
57
|
+
/**
|
|
58
|
+
* The number of CPU cores enabled on the Cloud VM Cluster.
|
|
59
|
+
*/
|
|
60
|
+
readonly cpuCoreCount: number;
|
|
61
|
+
/**
|
|
62
|
+
* A `dataCollectionOptions` block as defined below.
|
|
63
|
+
*/
|
|
64
|
+
readonly dataCollectionOptions: outputs.oracle.GetCloudVmClusterDataCollectionOption[];
|
|
65
|
+
/**
|
|
66
|
+
* The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are `35`, `40`, `60`, and 80. The default is `80` percent assigned to DATA storage. See [Storage Configuration](https://docs.oracle.com/en-us/iaas/exadatacloud/index.html#Exadata) in the Exadata documentation for details on the impact of the configuration settings on storage.
|
|
67
|
+
*/
|
|
68
|
+
readonly dataStoragePercentage: number;
|
|
69
|
+
/**
|
|
70
|
+
* The data disk group size to be allocated in TBs.
|
|
71
|
+
*/
|
|
72
|
+
readonly dataStorageSizeInTbs: number;
|
|
73
|
+
/**
|
|
74
|
+
* The local node storage to be allocated in GBs.
|
|
75
|
+
*/
|
|
76
|
+
readonly dbNodeStorageSizeInGbs: number;
|
|
77
|
+
/**
|
|
78
|
+
* A `dbServers` block as defined below.
|
|
79
|
+
*/
|
|
80
|
+
readonly dbServers: string[];
|
|
81
|
+
/**
|
|
82
|
+
* The type of redundancy configured for the Cloud Vm Cluster. `NORMAL` is 2-way redundancy. `HIGH` is 3-way redundancy.
|
|
83
|
+
*/
|
|
84
|
+
readonly diskRedundancy: string;
|
|
85
|
+
/**
|
|
86
|
+
* The user-friendly name for the Cloud VM Cluster. The name does not need to be unique.
|
|
87
|
+
*/
|
|
88
|
+
readonly displayName: string;
|
|
89
|
+
/**
|
|
90
|
+
* The domain name for the Cloud VM Cluster.
|
|
91
|
+
*/
|
|
92
|
+
readonly domain: string;
|
|
93
|
+
/**
|
|
94
|
+
* A valid Oracle Grid Infrastructure (GI) software version.
|
|
95
|
+
*/
|
|
96
|
+
readonly giVersion: string;
|
|
97
|
+
/**
|
|
98
|
+
* The hostname for the Cloud VM Cluster without suffix.
|
|
99
|
+
*/
|
|
100
|
+
readonly hostname: string;
|
|
101
|
+
/**
|
|
102
|
+
* The hostname for the Cloud VM Cluster with suffix.
|
|
103
|
+
*/
|
|
104
|
+
readonly hostnameActual: string;
|
|
105
|
+
/**
|
|
106
|
+
* The provider-assigned unique ID for this managed resource.
|
|
107
|
+
*/
|
|
108
|
+
readonly id: string;
|
|
109
|
+
/**
|
|
110
|
+
* A `iormConfigCache` block as defined below.
|
|
111
|
+
*/
|
|
112
|
+
readonly iormConfigCaches: outputs.oracle.GetCloudVmClusterIormConfigCach[];
|
|
113
|
+
/**
|
|
114
|
+
* The [OCID](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/identifiers.htm) of the last maintenance update history entry. This value is updated when a maintenance update starts.
|
|
115
|
+
*/
|
|
116
|
+
readonly lastUpdateHistoryEntryId: string;
|
|
117
|
+
/**
|
|
118
|
+
* The Oracle license model that applies to the Cloud VM Cluster.
|
|
119
|
+
*/
|
|
120
|
+
readonly licenseModel: string;
|
|
121
|
+
/**
|
|
122
|
+
* Additional information about the current `lifecycleState`.
|
|
123
|
+
*/
|
|
124
|
+
readonly lifecycleDetails: string;
|
|
125
|
+
/**
|
|
126
|
+
* The current state of IORM configuration for the Exadata DB system.
|
|
127
|
+
*/
|
|
128
|
+
readonly lifecycleState: string;
|
|
129
|
+
/**
|
|
130
|
+
* The port number configured for the listener on the Cloud VM Cluster.
|
|
131
|
+
*/
|
|
132
|
+
readonly listenerPort: number;
|
|
133
|
+
/**
|
|
134
|
+
* If true, database backup on local Exadata storage is configured for the Cloud VM Cluster. If false, database backup on local Exadata storage is not available in the Cloud VM Cluster.
|
|
135
|
+
*/
|
|
136
|
+
readonly localBackupEnabled: boolean;
|
|
137
|
+
/**
|
|
138
|
+
* The Azure Region where the Cloud VM Cluster exists.
|
|
139
|
+
*/
|
|
140
|
+
readonly location: string;
|
|
141
|
+
/**
|
|
142
|
+
* The memory to be allocated in GBs.
|
|
143
|
+
*/
|
|
144
|
+
readonly memorySizeInGbs: number;
|
|
145
|
+
readonly name: string;
|
|
146
|
+
/**
|
|
147
|
+
* The number of nodes in the Cloud VM Cluster.
|
|
148
|
+
*/
|
|
149
|
+
readonly nodeCount: number;
|
|
150
|
+
/**
|
|
151
|
+
* The list of [OCIDs](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/identifiers.htm) for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see [Security Rules](https://docs.oracle.com/en-us/iaas/Content/Network/Concepts/securityrules.htm). NsgIds restrictions:
|
|
152
|
+
* * A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
|
|
153
|
+
*/
|
|
154
|
+
readonly nsgUrl: string;
|
|
155
|
+
/**
|
|
156
|
+
* The URL of the resource in the OCI console.
|
|
157
|
+
*/
|
|
158
|
+
readonly ociUrl: string;
|
|
159
|
+
/**
|
|
160
|
+
* The [OCID](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/identifiers.htm) of the Cloud VM Cluster.
|
|
161
|
+
*/
|
|
162
|
+
readonly ocid: string;
|
|
163
|
+
/**
|
|
164
|
+
* The number of OCPU cores to enable on the Cloud VM Cluster. Only 1 decimal place is allowed for the fractional part.
|
|
165
|
+
*/
|
|
166
|
+
readonly ocpuCount: number;
|
|
167
|
+
readonly resourceGroupName: string;
|
|
168
|
+
/**
|
|
169
|
+
* The FQDN of the DNS record for the SCAN IP addresses that are associated with the Cloud VM Cluster.
|
|
170
|
+
*/
|
|
171
|
+
readonly scanDnsName: string;
|
|
172
|
+
/**
|
|
173
|
+
* The [OCID](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/identifiers.htm) of the DNS record for the SCAN IP addresses that are associated with the Cloud VM Cluster.
|
|
174
|
+
*/
|
|
175
|
+
readonly scanDnsRecordId: string;
|
|
176
|
+
/**
|
|
177
|
+
* A `scanIpIds` block as defined below.
|
|
178
|
+
*/
|
|
179
|
+
readonly scanIpIds: string[];
|
|
180
|
+
/**
|
|
181
|
+
* The TCP Single Client Access Name (SCAN) port. The default port is 1521.
|
|
182
|
+
*/
|
|
183
|
+
readonly scanListenerPortTcp: number;
|
|
184
|
+
/**
|
|
185
|
+
* The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
|
|
186
|
+
*/
|
|
187
|
+
readonly scanListenerPortTcpSsl: number;
|
|
188
|
+
/**
|
|
189
|
+
* The model name of the Exadata hardware running the Cloud VM Cluster.
|
|
190
|
+
*/
|
|
191
|
+
readonly shape: string;
|
|
192
|
+
/**
|
|
193
|
+
* If true, sparse disk group is configured for the Cloud VM Cluster. If false, sparse disk group is not created.
|
|
194
|
+
*/
|
|
195
|
+
readonly sparseDiskgroupEnabled: boolean;
|
|
196
|
+
/**
|
|
197
|
+
* The public key portion of one or more key pairs used for SSH access to the Cloud VM Cluster.
|
|
198
|
+
*/
|
|
199
|
+
readonly sshPublicKeys: string[];
|
|
200
|
+
/**
|
|
201
|
+
* The storage allocation for the disk group, in gigabytes (GB).
|
|
202
|
+
*/
|
|
203
|
+
readonly storageSizeInGbs: number;
|
|
204
|
+
/**
|
|
205
|
+
* The ID of the Azure Resource Manager subnet resource.
|
|
206
|
+
*/
|
|
207
|
+
readonly subnetId: string;
|
|
208
|
+
/**
|
|
209
|
+
* The [OCID](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/identifiers.htm) of the subnet associated with the Cloud VM Cluster.
|
|
210
|
+
*/
|
|
211
|
+
readonly subnetOcid: string;
|
|
212
|
+
/**
|
|
213
|
+
* Operating system version of the image.
|
|
214
|
+
*/
|
|
215
|
+
readonly systemVersion: string;
|
|
216
|
+
/**
|
|
217
|
+
* A mapping of tags assigned to the Cloud VM Cluster.
|
|
218
|
+
*/
|
|
219
|
+
readonly tags: {
|
|
220
|
+
[key: string]: string;
|
|
221
|
+
};
|
|
222
|
+
/**
|
|
223
|
+
* The date and time that the Cloud VM Cluster was created.
|
|
224
|
+
*/
|
|
225
|
+
readonly timeCreated: string;
|
|
226
|
+
/**
|
|
227
|
+
* The time zone of the Cloud VM Cluster. For details, see [Exadata Infrastructure Time Zones](https://docs.oracle.com/en-us/iaas/base-database/doc/manage-time-zone.html).
|
|
228
|
+
*/
|
|
229
|
+
readonly timeZone: string;
|
|
230
|
+
/**
|
|
231
|
+
* The [OCID](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) addresses associated with the Cloud VM Cluster. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the Cluster.
|
|
232
|
+
*/
|
|
233
|
+
readonly vipOds: string[];
|
|
234
|
+
/**
|
|
235
|
+
* The ID to an Azure Resource Manager Virtual Network resource.
|
|
236
|
+
*/
|
|
237
|
+
readonly virtualNetworkId: string;
|
|
238
|
+
/**
|
|
239
|
+
* The [OCID](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/identifiers.htm) of the zone the Cloud VM Cluster is associated with.
|
|
240
|
+
*/
|
|
241
|
+
readonly zoneId: string;
|
|
242
|
+
}
|
|
243
|
+
/**
|
|
244
|
+
* Use this data source to access information about an existing Cloud VM Cluster.
|
|
245
|
+
*
|
|
246
|
+
* ## Example Usage
|
|
247
|
+
*
|
|
248
|
+
* ```typescript
|
|
249
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
250
|
+
* import * as azure from "@pulumi/azure";
|
|
251
|
+
*
|
|
252
|
+
* const example = azure.oracle.getCloudVmCluster({
|
|
253
|
+
* name: "existing",
|
|
254
|
+
* resourceGroupName: "existing",
|
|
255
|
+
* });
|
|
256
|
+
* export const id = example.then(example => example.id);
|
|
257
|
+
* ```
|
|
258
|
+
*/
|
|
259
|
+
export declare function getCloudVmClusterOutput(args: GetCloudVmClusterOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetCloudVmClusterResult>;
|
|
260
|
+
/**
|
|
261
|
+
* A collection of arguments for invoking getCloudVmCluster.
|
|
262
|
+
*/
|
|
263
|
+
export interface GetCloudVmClusterOutputArgs {
|
|
264
|
+
/**
|
|
265
|
+
* The name of this Cloud VM Cluster.
|
|
266
|
+
*/
|
|
267
|
+
name: pulumi.Input<string>;
|
|
268
|
+
/**
|
|
269
|
+
* The name of the Resource Group where the Cloud VM Cluster exists.
|
|
270
|
+
*/
|
|
271
|
+
resourceGroupName: pulumi.Input<string>;
|
|
272
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
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.getCloudVmClusterOutput = exports.getCloudVmCluster = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Use this data source to access information about an existing Cloud VM Cluster.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as azure from "@pulumi/azure";
|
|
16
|
+
*
|
|
17
|
+
* const example = azure.oracle.getCloudVmCluster({
|
|
18
|
+
* name: "existing",
|
|
19
|
+
* resourceGroupName: "existing",
|
|
20
|
+
* });
|
|
21
|
+
* export const id = example.then(example => example.id);
|
|
22
|
+
* ```
|
|
23
|
+
*/
|
|
24
|
+
function getCloudVmCluster(args, opts) {
|
|
25
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
26
|
+
return pulumi.runtime.invoke("azure:oracle/getCloudVmCluster:getCloudVmCluster", {
|
|
27
|
+
"name": args.name,
|
|
28
|
+
"resourceGroupName": args.resourceGroupName,
|
|
29
|
+
}, opts);
|
|
30
|
+
}
|
|
31
|
+
exports.getCloudVmCluster = getCloudVmCluster;
|
|
32
|
+
/**
|
|
33
|
+
* Use this data source to access information about an existing Cloud VM Cluster.
|
|
34
|
+
*
|
|
35
|
+
* ## Example Usage
|
|
36
|
+
*
|
|
37
|
+
* ```typescript
|
|
38
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
39
|
+
* import * as azure from "@pulumi/azure";
|
|
40
|
+
*
|
|
41
|
+
* const example = azure.oracle.getCloudVmCluster({
|
|
42
|
+
* name: "existing",
|
|
43
|
+
* resourceGroupName: "existing",
|
|
44
|
+
* });
|
|
45
|
+
* export const id = example.then(example => example.id);
|
|
46
|
+
* ```
|
|
47
|
+
*/
|
|
48
|
+
function getCloudVmClusterOutput(args, opts) {
|
|
49
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
50
|
+
return pulumi.runtime.invokeOutput("azure:oracle/getCloudVmCluster:getCloudVmCluster", {
|
|
51
|
+
"name": args.name,
|
|
52
|
+
"resourceGroupName": args.resourceGroupName,
|
|
53
|
+
}, opts);
|
|
54
|
+
}
|
|
55
|
+
exports.getCloudVmClusterOutput = getCloudVmClusterOutput;
|
|
56
|
+
//# sourceMappingURL=getCloudVmCluster.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getCloudVmCluster.js","sourceRoot":"","sources":["../../oracle/getCloudVmCluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,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,kDAAkD,EAAE;QAC7E,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;KAC9C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,8CAMC;AAgOD;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,uBAAuB,CAAC,IAAiC,EAAE,IAA2B;IAClG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,kDAAkD,EAAE;QACnF,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;KAC9C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,0DAMC"}
|