@pulumi/azure 6.6.0-alpha.1729199939 → 6.6.0-alpha.1729620477

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 (53) hide show
  1. package/appconfiguration/configurationStore.d.ts +6 -6
  2. package/appinsights/insights.d.ts +3 -3
  3. package/compute/bastionHost.d.ts +18 -18
  4. package/compute/getBastionHost.d.ts +3 -0
  5. package/compute/getBastionHost.js.map +1 -1
  6. package/compute/linuxVirtualMachine.d.ts +3 -3
  7. package/containerapp/app.d.ts +12 -0
  8. package/containerapp/app.js +2 -0
  9. package/containerapp/app.js.map +1 -1
  10. package/containerapp/customDomain.d.ts +5 -2
  11. package/containerapp/customDomain.js +5 -2
  12. package/containerapp/customDomain.js.map +1 -1
  13. package/containerapp/getApp.d.ts +4 -0
  14. package/containerapp/getApp.js.map +1 -1
  15. package/containerservice/kubernetesCluster.d.ts +3 -3
  16. package/devcenter/attachedNetwork.d.ts +127 -0
  17. package/devcenter/attachedNetwork.js +114 -0
  18. package/devcenter/attachedNetwork.js.map +1 -0
  19. package/devcenter/index.d.ts +3 -0
  20. package/devcenter/index.js +6 -1
  21. package/devcenter/index.js.map +1 -1
  22. package/fluidrelay/server.d.ts +3 -0
  23. package/fluidrelay/server.js +2 -0
  24. package/fluidrelay/server.js.map +1 -1
  25. package/index.d.ts +2 -1
  26. package/index.js +4 -2
  27. package/index.js.map +1 -1
  28. package/monitoring/alertPrometheusRuleGroup.d.ts +3 -3
  29. package/network/virtualHub.d.ts +3 -3
  30. package/oracle/cloudVmCluster.d.ts +417 -0
  31. package/oracle/cloudVmCluster.js +207 -0
  32. package/oracle/cloudVmCluster.js.map +1 -0
  33. package/oracle/exadataInfrastructure.d.ts +209 -0
  34. package/oracle/exadataInfrastructure.js +120 -0
  35. package/oracle/exadataInfrastructure.js.map +1 -0
  36. package/oracle/getCloudVmCluster.d.ts +272 -0
  37. package/oracle/getCloudVmCluster.js +56 -0
  38. package/oracle/getCloudVmCluster.js.map +1 -0
  39. package/oracle/getDbServers.d.ts +77 -0
  40. package/oracle/getDbServers.js +56 -0
  41. package/oracle/getDbServers.js.map +1 -0
  42. package/oracle/getExadataInfrastructure.d.ts +207 -0
  43. package/oracle/getExadataInfrastructure.js +56 -0
  44. package/oracle/getExadataInfrastructure.js.map +1 -0
  45. package/oracle/index.d.ts +15 -0
  46. package/oracle/index.js +36 -0
  47. package/oracle/index.js.map +1 -0
  48. package/package.json +2 -2
  49. package/stack/hciLogicalNetwork.d.ts +0 -36
  50. package/stack/hciLogicalNetwork.js +0 -36
  51. package/stack/hciLogicalNetwork.js.map +1 -1
  52. package/types/input.d.ts +58 -6
  53. package/types/output.d.ts +237 -7
@@ -0,0 +1,77 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as outputs from "../types/output";
3
+ /**
4
+ * Use this data source to access information about existing DB Servers.
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.getDbServers({
13
+ * resourceGroupName: "existing",
14
+ * cloudExadataInfrastructureName: "existing",
15
+ * });
16
+ * export const id = example.then(example => example.id);
17
+ * ```
18
+ */
19
+ export declare function getDbServers(args: GetDbServersArgs, opts?: pulumi.InvokeOptions): Promise<GetDbServersResult>;
20
+ /**
21
+ * A collection of arguments for invoking getDbServers.
22
+ */
23
+ export interface GetDbServersArgs {
24
+ /**
25
+ * The name of the Cloud Exadata Infrastructure.
26
+ */
27
+ cloudExadataInfrastructureName: string;
28
+ /**
29
+ * The name of the Resource Group where the DB Server exists.
30
+ */
31
+ resourceGroupName: string;
32
+ }
33
+ /**
34
+ * A collection of values returned by getDbServers.
35
+ */
36
+ export interface GetDbServersResult {
37
+ readonly cloudExadataInfrastructureName: string;
38
+ /**
39
+ * A `dbServers` block as defined below.
40
+ */
41
+ readonly dbServers: outputs.oracle.GetDbServersDbServer[];
42
+ /**
43
+ * The provider-assigned unique ID for this managed resource.
44
+ */
45
+ readonly id: string;
46
+ readonly resourceGroupName: string;
47
+ }
48
+ /**
49
+ * Use this data source to access information about existing DB Servers.
50
+ *
51
+ * ## Example Usage
52
+ *
53
+ * ```typescript
54
+ * import * as pulumi from "@pulumi/pulumi";
55
+ * import * as azure from "@pulumi/azure";
56
+ *
57
+ * const example = azure.oracle.getDbServers({
58
+ * resourceGroupName: "existing",
59
+ * cloudExadataInfrastructureName: "existing",
60
+ * });
61
+ * export const id = example.then(example => example.id);
62
+ * ```
63
+ */
64
+ export declare function getDbServersOutput(args: GetDbServersOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetDbServersResult>;
65
+ /**
66
+ * A collection of arguments for invoking getDbServers.
67
+ */
68
+ export interface GetDbServersOutputArgs {
69
+ /**
70
+ * The name of the Cloud Exadata Infrastructure.
71
+ */
72
+ cloudExadataInfrastructureName: pulumi.Input<string>;
73
+ /**
74
+ * The name of the Resource Group where the DB Server exists.
75
+ */
76
+ resourceGroupName: pulumi.Input<string>;
77
+ }
@@ -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.getDbServersOutput = exports.getDbServers = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * Use this data source to access information about existing DB Servers.
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.getDbServers({
18
+ * resourceGroupName: "existing",
19
+ * cloudExadataInfrastructureName: "existing",
20
+ * });
21
+ * export const id = example.then(example => example.id);
22
+ * ```
23
+ */
24
+ function getDbServers(args, opts) {
25
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
26
+ return pulumi.runtime.invoke("azure:oracle/getDbServers:getDbServers", {
27
+ "cloudExadataInfrastructureName": args.cloudExadataInfrastructureName,
28
+ "resourceGroupName": args.resourceGroupName,
29
+ }, opts);
30
+ }
31
+ exports.getDbServers = getDbServers;
32
+ /**
33
+ * Use this data source to access information about existing DB Servers.
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.getDbServers({
42
+ * resourceGroupName: "existing",
43
+ * cloudExadataInfrastructureName: "existing",
44
+ * });
45
+ * export const id = example.then(example => example.id);
46
+ * ```
47
+ */
48
+ function getDbServersOutput(args, opts) {
49
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
50
+ return pulumi.runtime.invokeOutput("azure:oracle/getDbServers:getDbServers", {
51
+ "cloudExadataInfrastructureName": args.cloudExadataInfrastructureName,
52
+ "resourceGroupName": args.resourceGroupName,
53
+ }, opts);
54
+ }
55
+ exports.getDbServersOutput = getDbServersOutput;
56
+ //# sourceMappingURL=getDbServers.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getDbServers.js","sourceRoot":"","sources":["../../oracle/getDbServers.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,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,wCAAwC,EAAE;QACnE,gCAAgC,EAAE,IAAI,CAAC,8BAA8B;QACrE,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;KAC9C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,oCAMC;AA+BD;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IACxF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,wCAAwC,EAAE;QACzE,gCAAgC,EAAE,IAAI,CAAC,8BAA8B;QACrE,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;KAC9C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,gDAMC"}
@@ -0,0 +1,207 @@
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 Exadata Infrastructure.
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.getExadataInfrastructure({
13
+ * name: "existing",
14
+ * resourceGroupName: "existing",
15
+ * });
16
+ * export const id = example.then(example => example.id);
17
+ * ```
18
+ */
19
+ export declare function getExadataInfrastructure(args: GetExadataInfrastructureArgs, opts?: pulumi.InvokeOptions): Promise<GetExadataInfrastructureResult>;
20
+ /**
21
+ * A collection of arguments for invoking getExadataInfrastructure.
22
+ */
23
+ export interface GetExadataInfrastructureArgs {
24
+ /**
25
+ * The name of this Cloud Exadata Infrastructure.
26
+ */
27
+ name: string;
28
+ /**
29
+ * The name of the Resource Group where the Cloud Exadata Infrastructure exists.
30
+ */
31
+ resourceGroupName: string;
32
+ }
33
+ /**
34
+ * A collection of values returned by getExadataInfrastructure.
35
+ */
36
+ export interface GetExadataInfrastructureResult {
37
+ /**
38
+ * The requested number of additional storage servers activated for the Cloud Exadata Infrastructure.
39
+ */
40
+ readonly activatedStorageCount: number;
41
+ /**
42
+ * The requested number of additional storage servers for the Cloud Exadata Infrastructure.
43
+ */
44
+ readonly additionalStorageCount: number;
45
+ /**
46
+ * The available storage can be allocated to the Cloud Exadata Infrastructure resource, in gigabytes (GB).
47
+ */
48
+ readonly availableStorageSizeInGbs: number;
49
+ /**
50
+ * The number of compute servers for the Cloud Exadata Infrastructure.
51
+ */
52
+ readonly computeCount: number;
53
+ /**
54
+ * The total number of CPU cores allocated.
55
+ */
56
+ readonly cpuCount: number;
57
+ /**
58
+ * A `customerContacts` block as defined below.
59
+ */
60
+ readonly customerContacts: string[];
61
+ /**
62
+ * The data storage size in terabytes of the DATA disk group.
63
+ */
64
+ readonly dataStorageSizeInTbs: number;
65
+ /**
66
+ * The local node storage allocated in GBs.
67
+ */
68
+ readonly dbNodeStorageSizeInGbs: number;
69
+ /**
70
+ * The software version of the database servers (dom0) in the Cloud Exadata Infrastructure.
71
+ */
72
+ readonly dbServerVersion: string;
73
+ /**
74
+ * The user-friendly name for the Cloud Exadata Infrastructure resource. The name does not need to be unique.
75
+ */
76
+ readonly displayName: string;
77
+ /**
78
+ * A `estimatedPatchingTime` block as defined below.
79
+ */
80
+ readonly estimatedPatchingTimes: outputs.oracle.GetExadataInfrastructureEstimatedPatchingTime[];
81
+ /**
82
+ * The provider-assigned unique ID for this managed resource.
83
+ */
84
+ readonly id: string;
85
+ /**
86
+ * The [OCID](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/identifiers.htm) of the last maintenance run.
87
+ */
88
+ readonly lastMaintenanceRunId: string;
89
+ /**
90
+ * Additional information about the current lifecycle state.
91
+ */
92
+ readonly lifecycleDetails: string;
93
+ /**
94
+ * Cloud Exadata Infrastructure lifecycle state.
95
+ */
96
+ readonly lifecycleState: string;
97
+ /**
98
+ * The Azure Region where the Cloud Exadata Infrastructure exists.
99
+ */
100
+ readonly location: string;
101
+ /**
102
+ * A `maintenanceWindow` block as defined below.
103
+ */
104
+ readonly maintenanceWindows: outputs.oracle.GetExadataInfrastructureMaintenanceWindow[];
105
+ /**
106
+ * The total number of CPU cores available.
107
+ */
108
+ readonly maxCpuCount: number;
109
+ /**
110
+ * The total available DATA disk group size.
111
+ */
112
+ readonly maxDataStorageInTbs: number;
113
+ /**
114
+ * The total local node storage available in GBs.
115
+ */
116
+ readonly maxDbNodeStorageSizeInGbs: number;
117
+ /**
118
+ * The total memory available in GBs.
119
+ */
120
+ readonly maxMemoryInGbs: number;
121
+ /**
122
+ * The memory allocated in GBs.
123
+ */
124
+ readonly memorySizeInGbs: number;
125
+ /**
126
+ * The monthly software version of the database servers (dom0) in the Cloud Exadata Infrastructure.
127
+ */
128
+ readonly monthlyDbServerVersion: string;
129
+ /**
130
+ * The monthly software version of the storage servers (cells) in the Cloud Exadata Infrastructure.
131
+ */
132
+ readonly monthlyStorageServerVersion: string;
133
+ readonly name: string;
134
+ /**
135
+ * The [OCID](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/identifiers.htm) of the next maintenance run.
136
+ */
137
+ readonly nextMaintenanceRunId: string;
138
+ /**
139
+ * The URL of the resource in the OCI console.
140
+ */
141
+ readonly ociUrl: string;
142
+ /**
143
+ * The [OCID](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/identifiers.htm) of the Cloud Exadata Infrastructure.
144
+ */
145
+ readonly ocid: string;
146
+ readonly resourceGroupName: string;
147
+ /**
148
+ * The model name of the Cloud Exadata Infrastructure resource.
149
+ */
150
+ readonly shape: string;
151
+ /**
152
+ * The number of storage servers for the Cloud Exadata Infrastructure.
153
+ */
154
+ readonly storageCount: number;
155
+ /**
156
+ * The software version of the storage servers (cells) in the Cloud Exadata Infrastructure.
157
+ */
158
+ readonly storageServerVersion: string;
159
+ /**
160
+ * A mapping of tags assigned to the Cloud Exadata Infrastructure.
161
+ */
162
+ readonly tags: {
163
+ [key: string]: string;
164
+ };
165
+ /**
166
+ * The date and time the Cloud Exadata Infrastructure resource was created.
167
+ */
168
+ readonly timeCreated: string;
169
+ /**
170
+ * The total storage allocated to the Cloud Exadata Infrastructure resource, in gigabytes (GB).
171
+ */
172
+ readonly totalStorageSizeInGbs: number;
173
+ /**
174
+ * The Cloud Exadata Infrastructure Azure zones.
175
+ */
176
+ readonly zones: string[];
177
+ }
178
+ /**
179
+ * Use this data source to access information about an existing Cloud Exadata Infrastructure.
180
+ *
181
+ * ## Example Usage
182
+ *
183
+ * ```typescript
184
+ * import * as pulumi from "@pulumi/pulumi";
185
+ * import * as azure from "@pulumi/azure";
186
+ *
187
+ * const example = azure.oracle.getExadataInfrastructure({
188
+ * name: "existing",
189
+ * resourceGroupName: "existing",
190
+ * });
191
+ * export const id = example.then(example => example.id);
192
+ * ```
193
+ */
194
+ export declare function getExadataInfrastructureOutput(args: GetExadataInfrastructureOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetExadataInfrastructureResult>;
195
+ /**
196
+ * A collection of arguments for invoking getExadataInfrastructure.
197
+ */
198
+ export interface GetExadataInfrastructureOutputArgs {
199
+ /**
200
+ * The name of this Cloud Exadata Infrastructure.
201
+ */
202
+ name: pulumi.Input<string>;
203
+ /**
204
+ * The name of the Resource Group where the Cloud Exadata Infrastructure exists.
205
+ */
206
+ resourceGroupName: pulumi.Input<string>;
207
+ }
@@ -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.getExadataInfrastructureOutput = exports.getExadataInfrastructure = 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 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 = azure.oracle.getExadataInfrastructure({
18
+ * name: "existing",
19
+ * resourceGroupName: "existing",
20
+ * });
21
+ * export const id = example.then(example => example.id);
22
+ * ```
23
+ */
24
+ function getExadataInfrastructure(args, opts) {
25
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
26
+ return pulumi.runtime.invoke("azure:oracle/getExadataInfrastructure:getExadataInfrastructure", {
27
+ "name": args.name,
28
+ "resourceGroupName": args.resourceGroupName,
29
+ }, opts);
30
+ }
31
+ exports.getExadataInfrastructure = getExadataInfrastructure;
32
+ /**
33
+ * Use this data source to access information about an existing Cloud Exadata Infrastructure.
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.getExadataInfrastructure({
42
+ * name: "existing",
43
+ * resourceGroupName: "existing",
44
+ * });
45
+ * export const id = example.then(example => example.id);
46
+ * ```
47
+ */
48
+ function getExadataInfrastructureOutput(args, opts) {
49
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
50
+ return pulumi.runtime.invokeOutput("azure:oracle/getExadataInfrastructure:getExadataInfrastructure", {
51
+ "name": args.name,
52
+ "resourceGroupName": args.resourceGroupName,
53
+ }, opts);
54
+ }
55
+ exports.getExadataInfrastructureOutput = getExadataInfrastructureOutput;
56
+ //# sourceMappingURL=getExadataInfrastructure.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getExadataInfrastructure.js","sourceRoot":"","sources":["../../oracle/getExadataInfrastructure.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,wBAAwB,CAAC,IAAkC,EAAE,IAA2B;IACpG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gEAAgE,EAAE;QAC3F,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;KAC9C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,4DAMC;AA+JD;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,8BAA8B,CAAC,IAAwC,EAAE,IAA2B;IAChH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,gEAAgE,EAAE;QACjG,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;KAC9C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,wEAMC"}
@@ -0,0 +1,15 @@
1
+ export { CloudVmClusterArgs, CloudVmClusterState } from "./cloudVmCluster";
2
+ export declare type CloudVmCluster = import("./cloudVmCluster").CloudVmCluster;
3
+ export declare const CloudVmCluster: typeof import("./cloudVmCluster").CloudVmCluster;
4
+ export { ExadataInfrastructureArgs, ExadataInfrastructureState } from "./exadataInfrastructure";
5
+ export declare type ExadataInfrastructure = import("./exadataInfrastructure").ExadataInfrastructure;
6
+ export declare const ExadataInfrastructure: typeof import("./exadataInfrastructure").ExadataInfrastructure;
7
+ export { GetCloudVmClusterArgs, GetCloudVmClusterResult, GetCloudVmClusterOutputArgs } from "./getCloudVmCluster";
8
+ export declare const getCloudVmCluster: typeof import("./getCloudVmCluster").getCloudVmCluster;
9
+ export declare const getCloudVmClusterOutput: typeof import("./getCloudVmCluster").getCloudVmClusterOutput;
10
+ export { GetDbServersArgs, GetDbServersResult, GetDbServersOutputArgs } from "./getDbServers";
11
+ export declare const getDbServers: typeof import("./getDbServers").getDbServers;
12
+ export declare const getDbServersOutput: typeof import("./getDbServers").getDbServersOutput;
13
+ export { GetExadataInfrastructureArgs, GetExadataInfrastructureResult, GetExadataInfrastructureOutputArgs } from "./getExadataInfrastructure";
14
+ export declare const getExadataInfrastructure: typeof import("./getExadataInfrastructure").getExadataInfrastructure;
15
+ export declare const getExadataInfrastructureOutput: typeof import("./getExadataInfrastructure").getExadataInfrastructureOutput;
@@ -0,0 +1,36 @@
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.getExadataInfrastructureOutput = exports.getExadataInfrastructure = exports.getDbServersOutput = exports.getDbServers = exports.getCloudVmClusterOutput = exports.getCloudVmCluster = exports.ExadataInfrastructure = exports.CloudVmCluster = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ exports.CloudVmCluster = null;
9
+ utilities.lazyLoad(exports, ["CloudVmCluster"], () => require("./cloudVmCluster"));
10
+ exports.ExadataInfrastructure = null;
11
+ utilities.lazyLoad(exports, ["ExadataInfrastructure"], () => require("./exadataInfrastructure"));
12
+ exports.getCloudVmCluster = null;
13
+ exports.getCloudVmClusterOutput = null;
14
+ utilities.lazyLoad(exports, ["getCloudVmCluster", "getCloudVmClusterOutput"], () => require("./getCloudVmCluster"));
15
+ exports.getDbServers = null;
16
+ exports.getDbServersOutput = null;
17
+ utilities.lazyLoad(exports, ["getDbServers", "getDbServersOutput"], () => require("./getDbServers"));
18
+ exports.getExadataInfrastructure = null;
19
+ exports.getExadataInfrastructureOutput = null;
20
+ utilities.lazyLoad(exports, ["getExadataInfrastructure", "getExadataInfrastructureOutput"], () => require("./getExadataInfrastructure"));
21
+ const _module = {
22
+ version: utilities.getVersion(),
23
+ construct: (name, type, urn) => {
24
+ switch (type) {
25
+ case "azure:oracle/cloudVmCluster:CloudVmCluster":
26
+ return new exports.CloudVmCluster(name, undefined, { urn });
27
+ case "azure:oracle/exadataInfrastructure:ExadataInfrastructure":
28
+ return new exports.ExadataInfrastructure(name, undefined, { urn });
29
+ default:
30
+ throw new Error(`unknown resource type ${type}`);
31
+ }
32
+ },
33
+ };
34
+ pulumi.runtime.registerResourceModule("azure", "oracle/cloudVmCluster", _module);
35
+ pulumi.runtime.registerResourceModule("azure", "oracle/exadataInfrastructure", _module);
36
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../oracle/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAK7B,QAAA,cAAc,GAAqD,IAAW,CAAC;AAC5F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,gBAAgB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,kBAAkB,CAAC,CAAC,CAAC;AAItE,QAAA,qBAAqB,GAAmE,IAAW,CAAC;AACjH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,uBAAuB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,yBAAyB,CAAC,CAAC,CAAC;AAGpF,QAAA,iBAAiB,GAA2D,IAAW,CAAC;AACxF,QAAA,uBAAuB,GAAiE,IAAW,CAAC;AACjH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,mBAAmB,EAAC,yBAAyB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,qBAAqB,CAAC,CAAC,CAAC;AAGtG,QAAA,YAAY,GAAiD,IAAW,CAAC;AACzE,QAAA,kBAAkB,GAAuD,IAAW,CAAC;AAClG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,cAAc,EAAC,oBAAoB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC;AAGvF,QAAA,wBAAwB,GAAyE,IAAW,CAAC;AAC7G,QAAA,8BAA8B,GAA+E,IAAW,CAAC;AACtI,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,0BAA0B,EAAC,gCAAgC,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,4BAA4B,CAAC,CAAC,CAAC;AAGxI,MAAM,OAAO,GAAG;IACZ,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE;IAC/B,SAAS,EAAE,CAAC,IAAY,EAAE,IAAY,EAAE,GAAW,EAAmB,EAAE;QACpE,QAAQ,IAAI,EAAE;YACV,KAAK,4CAA4C;gBAC7C,OAAO,IAAI,sBAAc,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC5D,KAAK,0DAA0D;gBAC3D,OAAO,IAAI,6BAAqB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACnE;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,OAAO,EAAE,uBAAuB,EAAE,OAAO,CAAC,CAAA;AAChF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,OAAO,EAAE,8BAA8B,EAAE,OAAO,CAAC,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/azure",
3
- "version": "6.6.0-alpha.1729199939",
3
+ "version": "6.6.0-alpha.1729620477",
4
4
  "description": "A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -30,6 +30,6 @@
30
30
  "pulumi": {
31
31
  "resource": true,
32
32
  "name": "azure",
33
- "version": "6.6.0-alpha.1729199939"
33
+ "version": "6.6.0-alpha.1729620477"
34
34
  }
35
35
  }
@@ -4,42 +4,6 @@ import * as outputs from "../types/output";
4
4
  /**
5
5
  * Manages an Azure Stack HCI Logical Network.
6
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-rg",
15
- * location: "West Europe",
16
- * });
17
- * const exampleHciLogicalNetwork = new azure.stack.HciLogicalNetwork("example", {
18
- * name: "example-hci-ln",
19
- * resourceGroupName: example.name,
20
- * location: example.location,
21
- * customLocationId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ExtendedLocation/customLocations/cl1",
22
- * virtualSwitchName: "ConvergedSwitch(managementcompute)",
23
- * dnsServers: [
24
- * "10.0.0.7",
25
- * "10.0.0.8",
26
- * ],
27
- * subnet: {
28
- * ipAllocationMethod: "Static",
29
- * addressPrefix: "10.0.0.0/24",
30
- * routes: [{
31
- * name: "example-route",
32
- * addressPrefix: "0.0.0.0/0",
33
- * nextHopIpAddress: "10.0.20.1",
34
- * }],
35
- * vlanId: 123,
36
- * },
37
- * tags: {
38
- * foo: "bar",
39
- * },
40
- * });
41
- * ```
42
- *
43
7
  * ## Import
44
8
  *
45
9
  * Azure Stack HCI Logical Networks can be imported using the `resource id`, e.g.
@@ -8,42 +8,6 @@ const utilities = require("../utilities");
8
8
  /**
9
9
  * Manages an Azure Stack HCI Logical Network.
10
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-rg",
19
- * location: "West Europe",
20
- * });
21
- * const exampleHciLogicalNetwork = new azure.stack.HciLogicalNetwork("example", {
22
- * name: "example-hci-ln",
23
- * resourceGroupName: example.name,
24
- * location: example.location,
25
- * customLocationId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ExtendedLocation/customLocations/cl1",
26
- * virtualSwitchName: "ConvergedSwitch(managementcompute)",
27
- * dnsServers: [
28
- * "10.0.0.7",
29
- * "10.0.0.8",
30
- * ],
31
- * subnet: {
32
- * ipAllocationMethod: "Static",
33
- * addressPrefix: "10.0.0.0/24",
34
- * routes: [{
35
- * name: "example-route",
36
- * addressPrefix: "0.0.0.0/0",
37
- * nextHopIpAddress: "10.0.20.1",
38
- * }],
39
- * vlanId: 123,
40
- * },
41
- * tags: {
42
- * foo: "bar",
43
- * },
44
- * });
45
- * ```
46
- *
47
11
  * ## Import
48
12
  *
49
13
  * Azure Stack HCI Logical Networks can be imported using the `resource id`, e.g.
@@ -1 +1 @@
1
- {"version":3,"file":"hciLogicalNetwork.js","sourceRoot":"","sources":["../../stack/hciLogicalNetwork.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"hciLogicalNetwork.js","sourceRoot":"","sources":["../../stack/hciLogicalNetwork.ts"],"names":[],"mappings":"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"}