@pulumi/azure 6.7.0-alpha.1730181554 → 6.7.0-alpha.1730309595

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 (51) hide show
  1. package/appservice/linuxFunctionApp.d.ts +1 -1
  2. package/appservice/linuxFunctionApp.js +1 -1
  3. package/cosmosdb/sqlContainer.d.ts +9 -3
  4. package/cosmosdb/sqlContainer.js.map +1 -1
  5. package/desktopvirtualization/applicationGroup.d.ts +3 -3
  6. package/devcenter/index.d.ts +3 -0
  7. package/devcenter/index.js +6 -1
  8. package/devcenter/index.js.map +1 -1
  9. package/devcenter/projectPool.d.ts +215 -0
  10. package/devcenter/projectPool.js +152 -0
  11. package/devcenter/projectPool.js.map +1 -0
  12. package/index.d.ts +2 -1
  13. package/index.js +3 -1
  14. package/index.js.map +1 -1
  15. package/mssql/managedInstance.d.ts +3 -3
  16. package/network/applicationGateway.d.ts +3 -3
  17. package/oracle/autonomousDatabase.d.ts +317 -0
  18. package/oracle/autonomousDatabase.js +153 -0
  19. package/oracle/autonomousDatabase.js.map +1 -0
  20. package/oracle/getAdbsCharacterSets.d.ts +74 -0
  21. package/oracle/getAdbsCharacterSets.js +60 -0
  22. package/oracle/getAdbsCharacterSets.js.map +1 -0
  23. package/oracle/getAdbsNationalCharacterSets.d.ts +74 -0
  24. package/oracle/getAdbsNationalCharacterSets.js +60 -0
  25. package/oracle/getAdbsNationalCharacterSets.js.map +1 -0
  26. package/oracle/getAutonomousDatabase.d.ts +295 -0
  27. package/oracle/getAutonomousDatabase.js +56 -0
  28. package/oracle/getAutonomousDatabase.js.map +1 -0
  29. package/oracle/getDbNodes.d.ts +74 -0
  30. package/oracle/getDbNodes.js +60 -0
  31. package/oracle/getDbNodes.js.map +1 -0
  32. package/oracle/getDbSystemShapes.d.ts +78 -0
  33. package/oracle/getDbSystemShapes.js +64 -0
  34. package/oracle/getDbSystemShapes.js.map +1 -0
  35. package/oracle/getGiVersions.d.ts +77 -0
  36. package/oracle/getGiVersions.js +64 -0
  37. package/oracle/getGiVersions.js.map +1 -0
  38. package/oracle/index.d.ts +21 -0
  39. package/oracle/index.js +24 -1
  40. package/oracle/index.js.map +1 -1
  41. package/package.json +2 -2
  42. package/storage/account.d.ts +6 -0
  43. package/storage/account.js.map +1 -1
  44. package/types/input.d.ts +52 -12
  45. package/types/output.d.ts +239 -17
  46. package/videoindexer/account.d.ts +157 -0
  47. package/videoindexer/account.js +109 -0
  48. package/videoindexer/account.js.map +1 -0
  49. package/videoindexer/index.d.ts +3 -0
  50. package/videoindexer/index.js +22 -0
  51. package/videoindexer/index.js.map +1 -0
@@ -203,7 +203,7 @@ export declare class ApplicationGateway extends pulumi.CustomResource {
203
203
  */
204
204
  readonly resourceGroupName: pulumi.Output<string>;
205
205
  /**
206
- * One or more `rewriteRuleSet` blocks as defined below. Only valid for v2 SKUs.
206
+ * One or more `rewriteRuleSet` blocks as defined below. Only valid for v2 WAF and Standard SKUs.
207
207
  */
208
208
  readonly rewriteRuleSets: pulumi.Output<outputs.network.ApplicationGatewayRewriteRuleSet[] | undefined>;
209
209
  /**
@@ -356,7 +356,7 @@ export interface ApplicationGatewayState {
356
356
  */
357
357
  resourceGroupName?: pulumi.Input<string>;
358
358
  /**
359
- * One or more `rewriteRuleSet` blocks as defined below. Only valid for v2 SKUs.
359
+ * One or more `rewriteRuleSet` blocks as defined below. Only valid for v2 WAF and Standard SKUs.
360
360
  */
361
361
  rewriteRuleSets?: pulumi.Input<pulumi.Input<inputs.network.ApplicationGatewayRewriteRuleSet>[]>;
362
362
  /**
@@ -497,7 +497,7 @@ export interface ApplicationGatewayArgs {
497
497
  */
498
498
  resourceGroupName: pulumi.Input<string>;
499
499
  /**
500
- * One or more `rewriteRuleSet` blocks as defined below. Only valid for v2 SKUs.
500
+ * One or more `rewriteRuleSet` blocks as defined below. Only valid for v2 WAF and Standard SKUs.
501
501
  */
502
502
  rewriteRuleSets?: pulumi.Input<pulumi.Input<inputs.network.ApplicationGatewayRewriteRuleSet>[]>;
503
503
  /**
@@ -0,0 +1,317 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * Manages an Autonomous Database.
4
+ *
5
+ * ## Import
6
+ *
7
+ * Autonomous Databases can be imported using the `resource id`, e.g.
8
+ *
9
+ * ```sh
10
+ * $ pulumi import azure:oracle/autonomousDatabase:AutonomousDatabase example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup/providers/Oracle.Database/autonomousDatabases/autonomousDatabases1
11
+ * ```
12
+ */
13
+ export declare class AutonomousDatabase extends pulumi.CustomResource {
14
+ /**
15
+ * Get an existing AutonomousDatabase resource's state with the given name, ID, and optional extra
16
+ * properties used to qualify the lookup.
17
+ *
18
+ * @param name The _unique_ name of the resulting resource.
19
+ * @param id The _unique_ provider ID of the resource to lookup.
20
+ * @param state Any extra arguments used during the lookup.
21
+ * @param opts Optional settings to control the behavior of the CustomResource.
22
+ */
23
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AutonomousDatabaseState, opts?: pulumi.CustomResourceOptions): AutonomousDatabase;
24
+ /**
25
+ * Returns true if the given object is an instance of AutonomousDatabase. This is designed to work even
26
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
27
+ */
28
+ static isInstance(obj: any): obj is AutonomousDatabase;
29
+ /**
30
+ * The password must be between `12` and `30 `characters long, and must contain at least 1 uppercase, 1 lowercase, and 1 numeric character. It cannot contain the double quote symbol (") or the username "admin", regardless of casing.
31
+ */
32
+ readonly adminPassword: pulumi.Output<string>;
33
+ /**
34
+ * Indicates if auto scaling is enabled for the Autonomous Database CPU core count. The default value is `true`.
35
+ */
36
+ readonly autoScalingEnabled: pulumi.Output<boolean>;
37
+ /**
38
+ * Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is `false`.
39
+ */
40
+ readonly autoScalingForStorageEnabled: pulumi.Output<boolean>;
41
+ /**
42
+ * (Updatable) Retention period, in days, for backups.
43
+ */
44
+ readonly backupRetentionPeriodInDays: pulumi.Output<number>;
45
+ /**
46
+ * The character set for the autonomous database. The default is `AL32UTF8`. Allowed values are: `AL32UTF8`, `AR8ADOS710`, `AR8ADOS720`, `AR8APTEC715`, `AR8ARABICMACS`, `AR8ASMO8X`, `AR8ISO8859P6`, `AR8MSWIN1256`, `AR8MUSSAD768`, `AR8NAFITHA711`, `AR8NAFITHA721`, `AR8SAKHR706`, `AR8SAKHR707`, `AZ8ISO8859P9E`, `BG8MSWIN`, `BG8PC437S`, `BLT8CP921`, `BLT8ISO8859P13`, `BLT8MSWIN1257`, `BLT8PC775`, `BN8BSCII`, `CDN8PC863`, `CEL8ISO8859P14`, `CL8ISO8859P5`, `CL8ISOIR111`, `CL8KOI8R`, `CL8KOI8U`, `CL8MACCYRILLICS`, `CL8MSWIN1251`, `EE8ISO8859P2`, `EE8MACCES`, `EE8MACCROATIANS`, `EE8MSWIN1250`, `EE8PC852`, `EL8DEC`, `EL8ISO8859P7`, `EL8MACGREEKS`, `EL8MSWIN1253`, `EL8PC437S`, `EL8PC851`, `EL8PC869`, `ET8MSWIN923`, `HU8ABMOD`, `HU8CWI2`, `IN8ISCII`, `IS8PC861`, `IW8ISO8859P8`, `IW8MACHEBREWS`, `IW8MSWIN1255`, `IW8PC1507`, `JA16EUC`, `JA16EUCTILDE`, `JA16SJIS`, `JA16SJISTILDE`, `JA16VMS`, `KO16KSC5601`, `KO16KSCCS`, `KO16MSWIN949`, `LA8ISO6937`, `LA8PASSPORT`, `LT8MSWIN921`, `LT8PC772`, `LT8PC774`, `LV8PC1117`, `LV8PC8LR`, `LV8RST104090`, `N8PC865`, `NE8ISO8859P10`, `NEE8ISO8859P4`, `RU8BESTA`, `RU8PC855`, `RU8PC866`, `SE8ISO8859P3`, `TH8MACTHAIS`, `TH8TISASCII`, `TR8DEC`, `TR8MACTURKISHS`, `TR8MSWIN1254`, `TR8PC857`, `US7ASCII`, `US8PC437`, `UTF8`, `VN8MSWIN1258`, `VN8VN3`, `WE8DEC`, `WE8DG`, `WE8ISO8859P1`, `WE8ISO8859P15`, `WE8ISO8859P9`, `WE8MACROMAN8S`, `WE8MSWIN1252`, `WE8NCR4970`, `WE8NEXTSTEP`, `WE8PC850`, `WE8PC858`, `WE8PC860`, `WE8ROMAN8`, `ZHS16CGB231280`, `ZHS16GBK`, `ZHT16BIG5`, `ZHT16CCDC`, `ZHT16DBT`, `ZHT16HKSCS`, `ZHT16MSWIN950`, `ZHT32EUC`, `ZHT32SOPS`, `ZHT32TRIS`
47
+ */
48
+ readonly characterSet: pulumi.Output<string>;
49
+ /**
50
+ * The compute amount (CPUs) available to the database. Minimum and maximum values depend on the compute model and whether the database is an Autonomous Database Serverless instance or an Autonomous Database on Dedicated Exadata Infrastructure. For an Autonomous Database Serverless instance, the `ECPU` compute model requires a minimum value of one, for databases in the elastic resource pool and minimum value of two, otherwise. Required when using the `computeModel` parameter. When using `cpuCoreCount` parameter, it is an error to specify computeCount to a non-null value. Providing `computeModel` and `computeCount` is the preferred method for both OCPU and ECPU.
51
+ */
52
+ readonly computeCount: pulumi.Output<number>;
53
+ /**
54
+ * The compute model of the Autonomous Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
55
+ */
56
+ readonly computeModel: pulumi.Output<string>;
57
+ /**
58
+ * Specifies a list of customer contacts as email addresses.
59
+ */
60
+ readonly customerContacts: pulumi.Output<string[]>;
61
+ /**
62
+ * The maximum storage that can be allocated for the database, in terabytes.
63
+ */
64
+ readonly dataStorageSizeInTbs: pulumi.Output<number>;
65
+ /**
66
+ * A valid Oracle Database version for Autonomous Database.
67
+ */
68
+ readonly dbVersion: pulumi.Output<string>;
69
+ /**
70
+ * The Autonomous Database workload type. The following values are valid:
71
+ * * OLTP - indicates an Autonomous Transaction Processing database
72
+ * * DW - indicates an Autonomous Data Warehouse database
73
+ * * AJD - indicates an Autonomous JSON Database
74
+ * * APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type.
75
+ */
76
+ readonly dbWorkload: pulumi.Output<string>;
77
+ /**
78
+ * The user-friendly name for the Autonomous Database. The name does not have to be unique.
79
+ */
80
+ readonly displayName: pulumi.Output<string>;
81
+ /**
82
+ * The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an [Autonomous Database on dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to `BRING_YOUR_OWN_LICENSE`. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter.
83
+ */
84
+ readonly licenseModel: pulumi.Output<string>;
85
+ /**
86
+ * The Azure Region where the Autonomous Database should exist. Changing this forces a new Autonomous Database to be created.
87
+ */
88
+ readonly location: pulumi.Output<string>;
89
+ /**
90
+ * Specifies if the Autonomous Database requires mTLS connections.
91
+ */
92
+ readonly mtlsConnectionRequired: pulumi.Output<boolean>;
93
+ /**
94
+ * The name which should be used for this Autonomous Database.
95
+ */
96
+ readonly name: pulumi.Output<string>;
97
+ /**
98
+ * The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
99
+ */
100
+ readonly nationalCharacterSet: pulumi.Output<string>;
101
+ /**
102
+ * The name of the Resource Group where the Autonomous Database should exist.
103
+ */
104
+ readonly resourceGroupName: pulumi.Output<string>;
105
+ /**
106
+ * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the resource is associated with.
107
+ */
108
+ readonly subnetId: pulumi.Output<string>;
109
+ /**
110
+ * A mapping of tags which should be assigned to the Autonomous Database.
111
+ */
112
+ readonly tags: pulumi.Output<{
113
+ [key: string]: string;
114
+ } | undefined>;
115
+ /**
116
+ * The ID of the vnet associated with the cloud VM cluster.
117
+ */
118
+ readonly virtualNetworkId: pulumi.Output<string>;
119
+ /**
120
+ * Create a AutonomousDatabase resource with the given unique name, arguments, and options.
121
+ *
122
+ * @param name The _unique_ name of the resource.
123
+ * @param args The arguments to use to populate this resource's properties.
124
+ * @param opts A bag of options that control this resource's behavior.
125
+ */
126
+ constructor(name: string, args: AutonomousDatabaseArgs, opts?: pulumi.CustomResourceOptions);
127
+ }
128
+ /**
129
+ * Input properties used for looking up and filtering AutonomousDatabase resources.
130
+ */
131
+ export interface AutonomousDatabaseState {
132
+ /**
133
+ * The password must be between `12` and `30 `characters long, and must contain at least 1 uppercase, 1 lowercase, and 1 numeric character. It cannot contain the double quote symbol (") or the username "admin", regardless of casing.
134
+ */
135
+ adminPassword?: pulumi.Input<string>;
136
+ /**
137
+ * Indicates if auto scaling is enabled for the Autonomous Database CPU core count. The default value is `true`.
138
+ */
139
+ autoScalingEnabled?: pulumi.Input<boolean>;
140
+ /**
141
+ * Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is `false`.
142
+ */
143
+ autoScalingForStorageEnabled?: pulumi.Input<boolean>;
144
+ /**
145
+ * (Updatable) Retention period, in days, for backups.
146
+ */
147
+ backupRetentionPeriodInDays?: pulumi.Input<number>;
148
+ /**
149
+ * The character set for the autonomous database. The default is `AL32UTF8`. Allowed values are: `AL32UTF8`, `AR8ADOS710`, `AR8ADOS720`, `AR8APTEC715`, `AR8ARABICMACS`, `AR8ASMO8X`, `AR8ISO8859P6`, `AR8MSWIN1256`, `AR8MUSSAD768`, `AR8NAFITHA711`, `AR8NAFITHA721`, `AR8SAKHR706`, `AR8SAKHR707`, `AZ8ISO8859P9E`, `BG8MSWIN`, `BG8PC437S`, `BLT8CP921`, `BLT8ISO8859P13`, `BLT8MSWIN1257`, `BLT8PC775`, `BN8BSCII`, `CDN8PC863`, `CEL8ISO8859P14`, `CL8ISO8859P5`, `CL8ISOIR111`, `CL8KOI8R`, `CL8KOI8U`, `CL8MACCYRILLICS`, `CL8MSWIN1251`, `EE8ISO8859P2`, `EE8MACCES`, `EE8MACCROATIANS`, `EE8MSWIN1250`, `EE8PC852`, `EL8DEC`, `EL8ISO8859P7`, `EL8MACGREEKS`, `EL8MSWIN1253`, `EL8PC437S`, `EL8PC851`, `EL8PC869`, `ET8MSWIN923`, `HU8ABMOD`, `HU8CWI2`, `IN8ISCII`, `IS8PC861`, `IW8ISO8859P8`, `IW8MACHEBREWS`, `IW8MSWIN1255`, `IW8PC1507`, `JA16EUC`, `JA16EUCTILDE`, `JA16SJIS`, `JA16SJISTILDE`, `JA16VMS`, `KO16KSC5601`, `KO16KSCCS`, `KO16MSWIN949`, `LA8ISO6937`, `LA8PASSPORT`, `LT8MSWIN921`, `LT8PC772`, `LT8PC774`, `LV8PC1117`, `LV8PC8LR`, `LV8RST104090`, `N8PC865`, `NE8ISO8859P10`, `NEE8ISO8859P4`, `RU8BESTA`, `RU8PC855`, `RU8PC866`, `SE8ISO8859P3`, `TH8MACTHAIS`, `TH8TISASCII`, `TR8DEC`, `TR8MACTURKISHS`, `TR8MSWIN1254`, `TR8PC857`, `US7ASCII`, `US8PC437`, `UTF8`, `VN8MSWIN1258`, `VN8VN3`, `WE8DEC`, `WE8DG`, `WE8ISO8859P1`, `WE8ISO8859P15`, `WE8ISO8859P9`, `WE8MACROMAN8S`, `WE8MSWIN1252`, `WE8NCR4970`, `WE8NEXTSTEP`, `WE8PC850`, `WE8PC858`, `WE8PC860`, `WE8ROMAN8`, `ZHS16CGB231280`, `ZHS16GBK`, `ZHT16BIG5`, `ZHT16CCDC`, `ZHT16DBT`, `ZHT16HKSCS`, `ZHT16MSWIN950`, `ZHT32EUC`, `ZHT32SOPS`, `ZHT32TRIS`
150
+ */
151
+ characterSet?: pulumi.Input<string>;
152
+ /**
153
+ * The compute amount (CPUs) available to the database. Minimum and maximum values depend on the compute model and whether the database is an Autonomous Database Serverless instance or an Autonomous Database on Dedicated Exadata Infrastructure. For an Autonomous Database Serverless instance, the `ECPU` compute model requires a minimum value of one, for databases in the elastic resource pool and minimum value of two, otherwise. Required when using the `computeModel` parameter. When using `cpuCoreCount` parameter, it is an error to specify computeCount to a non-null value. Providing `computeModel` and `computeCount` is the preferred method for both OCPU and ECPU.
154
+ */
155
+ computeCount?: pulumi.Input<number>;
156
+ /**
157
+ * The compute model of the Autonomous Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
158
+ */
159
+ computeModel?: pulumi.Input<string>;
160
+ /**
161
+ * Specifies a list of customer contacts as email addresses.
162
+ */
163
+ customerContacts?: pulumi.Input<pulumi.Input<string>[]>;
164
+ /**
165
+ * The maximum storage that can be allocated for the database, in terabytes.
166
+ */
167
+ dataStorageSizeInTbs?: pulumi.Input<number>;
168
+ /**
169
+ * A valid Oracle Database version for Autonomous Database.
170
+ */
171
+ dbVersion?: pulumi.Input<string>;
172
+ /**
173
+ * The Autonomous Database workload type. The following values are valid:
174
+ * * OLTP - indicates an Autonomous Transaction Processing database
175
+ * * DW - indicates an Autonomous Data Warehouse database
176
+ * * AJD - indicates an Autonomous JSON Database
177
+ * * APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type.
178
+ */
179
+ dbWorkload?: pulumi.Input<string>;
180
+ /**
181
+ * The user-friendly name for the Autonomous Database. The name does not have to be unique.
182
+ */
183
+ displayName?: pulumi.Input<string>;
184
+ /**
185
+ * The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an [Autonomous Database on dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to `BRING_YOUR_OWN_LICENSE`. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter.
186
+ */
187
+ licenseModel?: pulumi.Input<string>;
188
+ /**
189
+ * The Azure Region where the Autonomous Database should exist. Changing this forces a new Autonomous Database to be created.
190
+ */
191
+ location?: pulumi.Input<string>;
192
+ /**
193
+ * Specifies if the Autonomous Database requires mTLS connections.
194
+ */
195
+ mtlsConnectionRequired?: pulumi.Input<boolean>;
196
+ /**
197
+ * The name which should be used for this Autonomous Database.
198
+ */
199
+ name?: pulumi.Input<string>;
200
+ /**
201
+ * The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
202
+ */
203
+ nationalCharacterSet?: pulumi.Input<string>;
204
+ /**
205
+ * The name of the Resource Group where the Autonomous Database should exist.
206
+ */
207
+ resourceGroupName?: pulumi.Input<string>;
208
+ /**
209
+ * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the resource is associated with.
210
+ */
211
+ subnetId?: pulumi.Input<string>;
212
+ /**
213
+ * A mapping of tags which should be assigned to the Autonomous Database.
214
+ */
215
+ tags?: pulumi.Input<{
216
+ [key: string]: pulumi.Input<string>;
217
+ }>;
218
+ /**
219
+ * The ID of the vnet associated with the cloud VM cluster.
220
+ */
221
+ virtualNetworkId?: pulumi.Input<string>;
222
+ }
223
+ /**
224
+ * The set of arguments for constructing a AutonomousDatabase resource.
225
+ */
226
+ export interface AutonomousDatabaseArgs {
227
+ /**
228
+ * The password must be between `12` and `30 `characters long, and must contain at least 1 uppercase, 1 lowercase, and 1 numeric character. It cannot contain the double quote symbol (") or the username "admin", regardless of casing.
229
+ */
230
+ adminPassword: pulumi.Input<string>;
231
+ /**
232
+ * Indicates if auto scaling is enabled for the Autonomous Database CPU core count. The default value is `true`.
233
+ */
234
+ autoScalingEnabled: pulumi.Input<boolean>;
235
+ /**
236
+ * Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is `false`.
237
+ */
238
+ autoScalingForStorageEnabled: pulumi.Input<boolean>;
239
+ /**
240
+ * (Updatable) Retention period, in days, for backups.
241
+ */
242
+ backupRetentionPeriodInDays: pulumi.Input<number>;
243
+ /**
244
+ * The character set for the autonomous database. The default is `AL32UTF8`. Allowed values are: `AL32UTF8`, `AR8ADOS710`, `AR8ADOS720`, `AR8APTEC715`, `AR8ARABICMACS`, `AR8ASMO8X`, `AR8ISO8859P6`, `AR8MSWIN1256`, `AR8MUSSAD768`, `AR8NAFITHA711`, `AR8NAFITHA721`, `AR8SAKHR706`, `AR8SAKHR707`, `AZ8ISO8859P9E`, `BG8MSWIN`, `BG8PC437S`, `BLT8CP921`, `BLT8ISO8859P13`, `BLT8MSWIN1257`, `BLT8PC775`, `BN8BSCII`, `CDN8PC863`, `CEL8ISO8859P14`, `CL8ISO8859P5`, `CL8ISOIR111`, `CL8KOI8R`, `CL8KOI8U`, `CL8MACCYRILLICS`, `CL8MSWIN1251`, `EE8ISO8859P2`, `EE8MACCES`, `EE8MACCROATIANS`, `EE8MSWIN1250`, `EE8PC852`, `EL8DEC`, `EL8ISO8859P7`, `EL8MACGREEKS`, `EL8MSWIN1253`, `EL8PC437S`, `EL8PC851`, `EL8PC869`, `ET8MSWIN923`, `HU8ABMOD`, `HU8CWI2`, `IN8ISCII`, `IS8PC861`, `IW8ISO8859P8`, `IW8MACHEBREWS`, `IW8MSWIN1255`, `IW8PC1507`, `JA16EUC`, `JA16EUCTILDE`, `JA16SJIS`, `JA16SJISTILDE`, `JA16VMS`, `KO16KSC5601`, `KO16KSCCS`, `KO16MSWIN949`, `LA8ISO6937`, `LA8PASSPORT`, `LT8MSWIN921`, `LT8PC772`, `LT8PC774`, `LV8PC1117`, `LV8PC8LR`, `LV8RST104090`, `N8PC865`, `NE8ISO8859P10`, `NEE8ISO8859P4`, `RU8BESTA`, `RU8PC855`, `RU8PC866`, `SE8ISO8859P3`, `TH8MACTHAIS`, `TH8TISASCII`, `TR8DEC`, `TR8MACTURKISHS`, `TR8MSWIN1254`, `TR8PC857`, `US7ASCII`, `US8PC437`, `UTF8`, `VN8MSWIN1258`, `VN8VN3`, `WE8DEC`, `WE8DG`, `WE8ISO8859P1`, `WE8ISO8859P15`, `WE8ISO8859P9`, `WE8MACROMAN8S`, `WE8MSWIN1252`, `WE8NCR4970`, `WE8NEXTSTEP`, `WE8PC850`, `WE8PC858`, `WE8PC860`, `WE8ROMAN8`, `ZHS16CGB231280`, `ZHS16GBK`, `ZHT16BIG5`, `ZHT16CCDC`, `ZHT16DBT`, `ZHT16HKSCS`, `ZHT16MSWIN950`, `ZHT32EUC`, `ZHT32SOPS`, `ZHT32TRIS`
245
+ */
246
+ characterSet: pulumi.Input<string>;
247
+ /**
248
+ * The compute amount (CPUs) available to the database. Minimum and maximum values depend on the compute model and whether the database is an Autonomous Database Serverless instance or an Autonomous Database on Dedicated Exadata Infrastructure. For an Autonomous Database Serverless instance, the `ECPU` compute model requires a minimum value of one, for databases in the elastic resource pool and minimum value of two, otherwise. Required when using the `computeModel` parameter. When using `cpuCoreCount` parameter, it is an error to specify computeCount to a non-null value. Providing `computeModel` and `computeCount` is the preferred method for both OCPU and ECPU.
249
+ */
250
+ computeCount: pulumi.Input<number>;
251
+ /**
252
+ * The compute model of the Autonomous Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
253
+ */
254
+ computeModel: pulumi.Input<string>;
255
+ /**
256
+ * Specifies a list of customer contacts as email addresses.
257
+ */
258
+ customerContacts?: pulumi.Input<pulumi.Input<string>[]>;
259
+ /**
260
+ * The maximum storage that can be allocated for the database, in terabytes.
261
+ */
262
+ dataStorageSizeInTbs: pulumi.Input<number>;
263
+ /**
264
+ * A valid Oracle Database version for Autonomous Database.
265
+ */
266
+ dbVersion: pulumi.Input<string>;
267
+ /**
268
+ * The Autonomous Database workload type. The following values are valid:
269
+ * * OLTP - indicates an Autonomous Transaction Processing database
270
+ * * DW - indicates an Autonomous Data Warehouse database
271
+ * * AJD - indicates an Autonomous JSON Database
272
+ * * APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type.
273
+ */
274
+ dbWorkload: pulumi.Input<string>;
275
+ /**
276
+ * The user-friendly name for the Autonomous Database. The name does not have to be unique.
277
+ */
278
+ displayName: pulumi.Input<string>;
279
+ /**
280
+ * The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an [Autonomous Database on dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to `BRING_YOUR_OWN_LICENSE`. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter.
281
+ */
282
+ licenseModel: pulumi.Input<string>;
283
+ /**
284
+ * The Azure Region where the Autonomous Database should exist. Changing this forces a new Autonomous Database to be created.
285
+ */
286
+ location?: pulumi.Input<string>;
287
+ /**
288
+ * Specifies if the Autonomous Database requires mTLS connections.
289
+ */
290
+ mtlsConnectionRequired: pulumi.Input<boolean>;
291
+ /**
292
+ * The name which should be used for this Autonomous Database.
293
+ */
294
+ name?: pulumi.Input<string>;
295
+ /**
296
+ * The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
297
+ */
298
+ nationalCharacterSet: pulumi.Input<string>;
299
+ /**
300
+ * The name of the Resource Group where the Autonomous Database should exist.
301
+ */
302
+ resourceGroupName: pulumi.Input<string>;
303
+ /**
304
+ * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the resource is associated with.
305
+ */
306
+ subnetId: pulumi.Input<string>;
307
+ /**
308
+ * A mapping of tags which should be assigned to the Autonomous Database.
309
+ */
310
+ tags?: pulumi.Input<{
311
+ [key: string]: pulumi.Input<string>;
312
+ }>;
313
+ /**
314
+ * The ID of the vnet associated with the cloud VM cluster.
315
+ */
316
+ virtualNetworkId: pulumi.Input<string>;
317
+ }
@@ -0,0 +1,153 @@
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.AutonomousDatabase = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * Manages an Autonomous Database.
10
+ *
11
+ * ## Import
12
+ *
13
+ * Autonomous Databases can be imported using the `resource id`, e.g.
14
+ *
15
+ * ```sh
16
+ * $ pulumi import azure:oracle/autonomousDatabase:AutonomousDatabase example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup/providers/Oracle.Database/autonomousDatabases/autonomousDatabases1
17
+ * ```
18
+ */
19
+ class AutonomousDatabase extends pulumi.CustomResource {
20
+ constructor(name, argsOrState, opts) {
21
+ let resourceInputs = {};
22
+ opts = opts || {};
23
+ if (opts.id) {
24
+ const state = argsOrState;
25
+ resourceInputs["adminPassword"] = state ? state.adminPassword : undefined;
26
+ resourceInputs["autoScalingEnabled"] = state ? state.autoScalingEnabled : undefined;
27
+ resourceInputs["autoScalingForStorageEnabled"] = state ? state.autoScalingForStorageEnabled : undefined;
28
+ resourceInputs["backupRetentionPeriodInDays"] = state ? state.backupRetentionPeriodInDays : undefined;
29
+ resourceInputs["characterSet"] = state ? state.characterSet : undefined;
30
+ resourceInputs["computeCount"] = state ? state.computeCount : undefined;
31
+ resourceInputs["computeModel"] = state ? state.computeModel : undefined;
32
+ resourceInputs["customerContacts"] = state ? state.customerContacts : undefined;
33
+ resourceInputs["dataStorageSizeInTbs"] = state ? state.dataStorageSizeInTbs : undefined;
34
+ resourceInputs["dbVersion"] = state ? state.dbVersion : undefined;
35
+ resourceInputs["dbWorkload"] = state ? state.dbWorkload : undefined;
36
+ resourceInputs["displayName"] = state ? state.displayName : undefined;
37
+ resourceInputs["licenseModel"] = state ? state.licenseModel : undefined;
38
+ resourceInputs["location"] = state ? state.location : undefined;
39
+ resourceInputs["mtlsConnectionRequired"] = state ? state.mtlsConnectionRequired : undefined;
40
+ resourceInputs["name"] = state ? state.name : undefined;
41
+ resourceInputs["nationalCharacterSet"] = state ? state.nationalCharacterSet : undefined;
42
+ resourceInputs["resourceGroupName"] = state ? state.resourceGroupName : undefined;
43
+ resourceInputs["subnetId"] = state ? state.subnetId : undefined;
44
+ resourceInputs["tags"] = state ? state.tags : undefined;
45
+ resourceInputs["virtualNetworkId"] = state ? state.virtualNetworkId : undefined;
46
+ }
47
+ else {
48
+ const args = argsOrState;
49
+ if ((!args || args.adminPassword === undefined) && !opts.urn) {
50
+ throw new Error("Missing required property 'adminPassword'");
51
+ }
52
+ if ((!args || args.autoScalingEnabled === undefined) && !opts.urn) {
53
+ throw new Error("Missing required property 'autoScalingEnabled'");
54
+ }
55
+ if ((!args || args.autoScalingForStorageEnabled === undefined) && !opts.urn) {
56
+ throw new Error("Missing required property 'autoScalingForStorageEnabled'");
57
+ }
58
+ if ((!args || args.backupRetentionPeriodInDays === undefined) && !opts.urn) {
59
+ throw new Error("Missing required property 'backupRetentionPeriodInDays'");
60
+ }
61
+ if ((!args || args.characterSet === undefined) && !opts.urn) {
62
+ throw new Error("Missing required property 'characterSet'");
63
+ }
64
+ if ((!args || args.computeCount === undefined) && !opts.urn) {
65
+ throw new Error("Missing required property 'computeCount'");
66
+ }
67
+ if ((!args || args.computeModel === undefined) && !opts.urn) {
68
+ throw new Error("Missing required property 'computeModel'");
69
+ }
70
+ if ((!args || args.dataStorageSizeInTbs === undefined) && !opts.urn) {
71
+ throw new Error("Missing required property 'dataStorageSizeInTbs'");
72
+ }
73
+ if ((!args || args.dbVersion === undefined) && !opts.urn) {
74
+ throw new Error("Missing required property 'dbVersion'");
75
+ }
76
+ if ((!args || args.dbWorkload === undefined) && !opts.urn) {
77
+ throw new Error("Missing required property 'dbWorkload'");
78
+ }
79
+ if ((!args || args.displayName === undefined) && !opts.urn) {
80
+ throw new Error("Missing required property 'displayName'");
81
+ }
82
+ if ((!args || args.licenseModel === undefined) && !opts.urn) {
83
+ throw new Error("Missing required property 'licenseModel'");
84
+ }
85
+ if ((!args || args.mtlsConnectionRequired === undefined) && !opts.urn) {
86
+ throw new Error("Missing required property 'mtlsConnectionRequired'");
87
+ }
88
+ if ((!args || args.nationalCharacterSet === undefined) && !opts.urn) {
89
+ throw new Error("Missing required property 'nationalCharacterSet'");
90
+ }
91
+ if ((!args || args.resourceGroupName === undefined) && !opts.urn) {
92
+ throw new Error("Missing required property 'resourceGroupName'");
93
+ }
94
+ if ((!args || args.subnetId === undefined) && !opts.urn) {
95
+ throw new Error("Missing required property 'subnetId'");
96
+ }
97
+ if ((!args || args.virtualNetworkId === undefined) && !opts.urn) {
98
+ throw new Error("Missing required property 'virtualNetworkId'");
99
+ }
100
+ resourceInputs["adminPassword"] = (args === null || args === void 0 ? void 0 : args.adminPassword) ? pulumi.secret(args.adminPassword) : undefined;
101
+ resourceInputs["autoScalingEnabled"] = args ? args.autoScalingEnabled : undefined;
102
+ resourceInputs["autoScalingForStorageEnabled"] = args ? args.autoScalingForStorageEnabled : undefined;
103
+ resourceInputs["backupRetentionPeriodInDays"] = args ? args.backupRetentionPeriodInDays : undefined;
104
+ resourceInputs["characterSet"] = args ? args.characterSet : undefined;
105
+ resourceInputs["computeCount"] = args ? args.computeCount : undefined;
106
+ resourceInputs["computeModel"] = args ? args.computeModel : undefined;
107
+ resourceInputs["customerContacts"] = args ? args.customerContacts : undefined;
108
+ resourceInputs["dataStorageSizeInTbs"] = args ? args.dataStorageSizeInTbs : undefined;
109
+ resourceInputs["dbVersion"] = args ? args.dbVersion : undefined;
110
+ resourceInputs["dbWorkload"] = args ? args.dbWorkload : undefined;
111
+ resourceInputs["displayName"] = args ? args.displayName : undefined;
112
+ resourceInputs["licenseModel"] = args ? args.licenseModel : undefined;
113
+ resourceInputs["location"] = args ? args.location : undefined;
114
+ resourceInputs["mtlsConnectionRequired"] = args ? args.mtlsConnectionRequired : undefined;
115
+ resourceInputs["name"] = args ? args.name : undefined;
116
+ resourceInputs["nationalCharacterSet"] = args ? args.nationalCharacterSet : undefined;
117
+ resourceInputs["resourceGroupName"] = args ? args.resourceGroupName : undefined;
118
+ resourceInputs["subnetId"] = args ? args.subnetId : undefined;
119
+ resourceInputs["tags"] = args ? args.tags : undefined;
120
+ resourceInputs["virtualNetworkId"] = args ? args.virtualNetworkId : undefined;
121
+ }
122
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
123
+ const secretOpts = { additionalSecretOutputs: ["adminPassword"] };
124
+ opts = pulumi.mergeOptions(opts, secretOpts);
125
+ super(AutonomousDatabase.__pulumiType, name, resourceInputs, opts);
126
+ }
127
+ /**
128
+ * Get an existing AutonomousDatabase resource's state with the given name, ID, and optional extra
129
+ * properties used to qualify the lookup.
130
+ *
131
+ * @param name The _unique_ name of the resulting resource.
132
+ * @param id The _unique_ provider ID of the resource to lookup.
133
+ * @param state Any extra arguments used during the lookup.
134
+ * @param opts Optional settings to control the behavior of the CustomResource.
135
+ */
136
+ static get(name, id, state, opts) {
137
+ return new AutonomousDatabase(name, state, Object.assign(Object.assign({}, opts), { id: id }));
138
+ }
139
+ /**
140
+ * Returns true if the given object is an instance of AutonomousDatabase. This is designed to work even
141
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
142
+ */
143
+ static isInstance(obj) {
144
+ if (obj === undefined || obj === null) {
145
+ return false;
146
+ }
147
+ return obj['__pulumiType'] === AutonomousDatabase.__pulumiType;
148
+ }
149
+ }
150
+ exports.AutonomousDatabase = AutonomousDatabase;
151
+ /** @internal */
152
+ AutonomousDatabase.__pulumiType = 'azure:oracle/autonomousDatabase:AutonomousDatabase';
153
+ //# sourceMappingURL=autonomousDatabase.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"autonomousDatabase.js","sourceRoot":"","sources":["../../oracle/autonomousDatabase.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;GAUG;AACH,MAAa,kBAAmB,SAAQ,MAAM,CAAC,cAAc;IA6HzD,YAAY,IAAY,EAAE,WAA8D,EAAE,IAAmC;QACzH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAkD,CAAC;YACjE,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,cAAc,CAAC,8BAA8B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,4BAA4B,CAAC,CAAC,CAAC,SAAS,CAAC;YACxG,cAAc,CAAC,6BAA6B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,2BAA2B,CAAC,CAAC,CAAC,SAAS,CAAC;YACtG,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,sBAAsB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACxF,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,wBAAwB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,sBAAsB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5F,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,sBAAsB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACxF,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;SACnF;aAAM;YACH,MAAM,IAAI,GAAG,WAAiD,CAAC;YAC/D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,aAAa,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC1D,MAAM,IAAI,KAAK,CAAC,2CAA2C,CAAC,CAAC;aAChE;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,kBAAkB,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC/D,MAAM,IAAI,KAAK,CAAC,gDAAgD,CAAC,CAAC;aACrE;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,4BAA4B,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACzE,MAAM,IAAI,KAAK,CAAC,0DAA0D,CAAC,CAAC;aAC/E;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,2BAA2B,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACxE,MAAM,IAAI,KAAK,CAAC,yDAAyD,CAAC,CAAC;aAC9E;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,YAAY,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACzD,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;aAC/D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,YAAY,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACzD,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;aAC/D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,YAAY,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACzD,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;aAC/D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,oBAAoB,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACjE,MAAM,IAAI,KAAK,CAAC,kDAAkD,CAAC,CAAC;aACvE;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,SAAS,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACtD,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;aAC5D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,UAAU,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvD,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,WAAW,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACxD,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;aAC9D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,YAAY,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACzD,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;aAC/D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,sBAAsB,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnE,MAAM,IAAI,KAAK,CAAC,oDAAoD,CAAC,CAAC;aACzE;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,oBAAoB,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACjE,MAAM,IAAI,KAAK,CAAC,kDAAkD,CAAC,CAAC;aACvE;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,iBAAiB,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC9D,MAAM,IAAI,KAAK,CAAC,+CAA+C,CAAC,CAAC;aACpE;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,QAAQ,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACrD,MAAM,IAAI,KAAK,CAAC,sCAAsC,CAAC,CAAC;aAC3D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,gBAAgB,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC7D,MAAM,IAAI,KAAK,CAAC,8CAA8C,CAAC,CAAC;aACnE;YACD,cAAc,CAAC,eAAe,CAAC,GAAG,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,aAAa,EAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;YACtG,cAAc,CAAC,oBAAoB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,8BAA8B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,4BAA4B,CAAC,CAAC,CAAC,SAAS,CAAC;YACtG,cAAc,CAAC,6BAA6B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,2BAA2B,CAAC,CAAC,CAAC,SAAS,CAAC;YACpG,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,sBAAsB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACtF,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,wBAAwB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,sBAAsB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1F,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,sBAAsB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACtF,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;SACjF;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,UAAU,GAAG,EAAE,uBAAuB,EAAE,CAAC,eAAe,CAAC,EAAE,CAAC;QAClE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;QAC7C,KAAK,CAAC,kBAAkB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACvE,CAAC;IArOD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA+B,EAAE,IAAmC;QAC7H,OAAO,IAAI,kBAAkB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACzE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,kBAAkB,CAAC,YAAY,CAAC;IACnE,CAAC;;AA1BL,gDAuOC;AAzNG,gBAAgB;AACO,+BAAY,GAAG,oDAAoD,CAAC"}
@@ -0,0 +1,74 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as outputs from "../types/output";
3
+ /**
4
+ * Gets a list of supported character sets.
5
+ *
6
+ * ## Example Usage
7
+ *
8
+ * ```typescript
9
+ * import * as pulumi from "@pulumi/pulumi";
10
+ * import * as azure from "@pulumi/azure";
11
+ *
12
+ * export = async () => {
13
+ * const example = await azure.oracle.getAdbsCharacterSets({
14
+ * location: "West Europe",
15
+ * });
16
+ * return {
17
+ * example: example,
18
+ * };
19
+ * }
20
+ * ```
21
+ */
22
+ export declare function getAdbsCharacterSets(args: GetAdbsCharacterSetsArgs, opts?: pulumi.InvokeOptions): Promise<GetAdbsCharacterSetsResult>;
23
+ /**
24
+ * A collection of arguments for invoking getAdbsCharacterSets.
25
+ */
26
+ export interface GetAdbsCharacterSetsArgs {
27
+ /**
28
+ * The Azure Region to query for the character sets in.
29
+ */
30
+ location: string;
31
+ }
32
+ /**
33
+ * A collection of values returned by getAdbsCharacterSets.
34
+ */
35
+ export interface GetAdbsCharacterSetsResult {
36
+ /**
37
+ * A `characterSets` block as defined below.
38
+ */
39
+ readonly characterSets: outputs.oracle.GetAdbsCharacterSetsCharacterSet[];
40
+ /**
41
+ * The provider-assigned unique ID for this managed resource.
42
+ */
43
+ readonly id: string;
44
+ readonly location: string;
45
+ }
46
+ /**
47
+ * Gets a list of supported character sets.
48
+ *
49
+ * ## Example Usage
50
+ *
51
+ * ```typescript
52
+ * import * as pulumi from "@pulumi/pulumi";
53
+ * import * as azure from "@pulumi/azure";
54
+ *
55
+ * export = async () => {
56
+ * const example = await azure.oracle.getAdbsCharacterSets({
57
+ * location: "West Europe",
58
+ * });
59
+ * return {
60
+ * example: example,
61
+ * };
62
+ * }
63
+ * ```
64
+ */
65
+ export declare function getAdbsCharacterSetsOutput(args: GetAdbsCharacterSetsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetAdbsCharacterSetsResult>;
66
+ /**
67
+ * A collection of arguments for invoking getAdbsCharacterSets.
68
+ */
69
+ export interface GetAdbsCharacterSetsOutputArgs {
70
+ /**
71
+ * The Azure Region to query for the character sets in.
72
+ */
73
+ location: pulumi.Input<string>;
74
+ }
@@ -0,0 +1,60 @@
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.getAdbsCharacterSetsOutput = exports.getAdbsCharacterSets = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * Gets a list of supported character sets.
10
+ *
11
+ * ## Example Usage
12
+ *
13
+ * ```typescript
14
+ * import * as pulumi from "@pulumi/pulumi";
15
+ * import * as azure from "@pulumi/azure";
16
+ *
17
+ * export = async () => {
18
+ * const example = await azure.oracle.getAdbsCharacterSets({
19
+ * location: "West Europe",
20
+ * });
21
+ * return {
22
+ * example: example,
23
+ * };
24
+ * }
25
+ * ```
26
+ */
27
+ function getAdbsCharacterSets(args, opts) {
28
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
29
+ return pulumi.runtime.invoke("azure:oracle/getAdbsCharacterSets:getAdbsCharacterSets", {
30
+ "location": args.location,
31
+ }, opts);
32
+ }
33
+ exports.getAdbsCharacterSets = getAdbsCharacterSets;
34
+ /**
35
+ * Gets a list of supported character sets.
36
+ *
37
+ * ## Example Usage
38
+ *
39
+ * ```typescript
40
+ * import * as pulumi from "@pulumi/pulumi";
41
+ * import * as azure from "@pulumi/azure";
42
+ *
43
+ * export = async () => {
44
+ * const example = await azure.oracle.getAdbsCharacterSets({
45
+ * location: "West Europe",
46
+ * });
47
+ * return {
48
+ * example: example,
49
+ * };
50
+ * }
51
+ * ```
52
+ */
53
+ function getAdbsCharacterSetsOutput(args, opts) {
54
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
55
+ return pulumi.runtime.invokeOutput("azure:oracle/getAdbsCharacterSets:getAdbsCharacterSets", {
56
+ "location": args.location,
57
+ }, opts);
58
+ }
59
+ exports.getAdbsCharacterSetsOutput = getAdbsCharacterSetsOutput;
60
+ //# sourceMappingURL=getAdbsCharacterSets.js.map