@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
package/types/input.d.ts
CHANGED
|
@@ -23227,8 +23227,6 @@ export declare namespace containerservice {
|
|
|
23227
23227
|
applicationSecurityGroupIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
23228
23228
|
/**
|
|
23229
23229
|
* Specifies a mapping of tags to the instance-level public IPs. Changing this forces a new resource to be created.
|
|
23230
|
-
*
|
|
23231
|
-
* > **Note:** This requires that the Preview Feature `Microsoft.ContainerService/NodePublicIPTagsPreview` is enabled and the Resource Provider is re-registered, see [the documentation](https://learn.microsoft.com/en-us/azure/aks/use-node-public-ips#use-public-ip-tags-on-node-public-ips-preview) for more information.
|
|
23232
23230
|
*/
|
|
23233
23231
|
nodePublicIpTags?: pulumi.Input<{
|
|
23234
23232
|
[key: string]: pulumi.Input<string>;
|
|
@@ -23979,8 +23977,6 @@ export declare namespace containerservice {
|
|
|
23979
23977
|
applicationSecurityGroupIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
23980
23978
|
/**
|
|
23981
23979
|
* Specifies a mapping of tags to the instance-level public IPs. Changing this forces a new resource to be created.
|
|
23982
|
-
*
|
|
23983
|
-
* > **Note:** This requires that the Preview Feature `Microsoft.ContainerService/NodePublicIPTagsPreview` is enabled and the Resource Provider is re-registered, see [the documentation](https://learn.microsoft.com/azure/aks/use-node-public-ips#use-public-ip-tags-on-node-public-ips-preview) for more information.
|
|
23984
23980
|
*/
|
|
23985
23981
|
nodePublicIpTags?: pulumi.Input<{
|
|
23986
23982
|
[key: string]: pulumi.Input<string>;
|
|
@@ -30343,6 +30339,16 @@ export declare namespace extendedlocation {
|
|
|
30343
30339
|
}
|
|
30344
30340
|
}
|
|
30345
30341
|
export declare namespace fluidrelay {
|
|
30342
|
+
interface ServerCustomerManagedKey {
|
|
30343
|
+
/**
|
|
30344
|
+
* The Key Vault Key Id that will be used to encrypt the Fluid Relay Server.
|
|
30345
|
+
*/
|
|
30346
|
+
keyVaultKeyId: pulumi.Input<string>;
|
|
30347
|
+
/**
|
|
30348
|
+
* The User Assigned Managed Identity ID to be used for accessing the Customer Managed Key for encryption.
|
|
30349
|
+
*/
|
|
30350
|
+
userAssignedIdentityId: pulumi.Input<string>;
|
|
30351
|
+
}
|
|
30346
30352
|
interface ServerIdentity {
|
|
30347
30353
|
/**
|
|
30348
30354
|
* Specifies a list of User Assigned Managed Identity IDs to be assigned to this Fluid Relay Service.
|
|
@@ -42879,6 +42885,52 @@ export declare namespace operationalinsights {
|
|
|
42879
42885
|
type: pulumi.Input<string>;
|
|
42880
42886
|
}
|
|
42881
42887
|
}
|
|
42888
|
+
export declare namespace oracle {
|
|
42889
|
+
interface CloudVmClusterDataCollectionOptions {
|
|
42890
|
+
/**
|
|
42891
|
+
* Indicates whether diagnostic collection is enabled for the VM Cluster/Cloud VM Cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM Cluster/Cloud VM Cluster provisioning. You can also disable or enable it at any time using the `UpdateVmCluster` or `updateCloudVmCluster` API.
|
|
42892
|
+
*/
|
|
42893
|
+
diagnosticsEventsEnabled?: pulumi.Input<boolean>;
|
|
42894
|
+
/**
|
|
42895
|
+
* Indicates whether health monitoring is enabled for the VM Cluster / Cloud VM Cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the `UpdateVmCluster`, `UpdateCloudVmCluster` or `updateDbsystem` API.
|
|
42896
|
+
*/
|
|
42897
|
+
healthMonitoringEnabled?: pulumi.Input<boolean>;
|
|
42898
|
+
/**
|
|
42899
|
+
* Indicates whether incident logs and trace collection are enabled for the VM Cluster / Cloud VM Cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the `UpdateVmCluster`, `updateCloudVmCluster` or `updateDbsystem` API.
|
|
42900
|
+
*/
|
|
42901
|
+
incidentLogsEnabled?: pulumi.Input<boolean>;
|
|
42902
|
+
}
|
|
42903
|
+
interface ExadataInfrastructureMaintenanceWindow {
|
|
42904
|
+
/**
|
|
42905
|
+
* Days during the week when maintenance should be performed. Valid values are: `0` - represents time slot `0:00 - 3:59 UTC - 4` - represents time slot `4:00 - 7:59 UTC - 8` - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot `20:00 - 23:59 UTC`
|
|
42906
|
+
*/
|
|
42907
|
+
daysOfWeeks?: pulumi.Input<pulumi.Input<string>[]>;
|
|
42908
|
+
/**
|
|
42909
|
+
* The window of hours during the day when maintenance should be performed. The window is a 4 hour slot.
|
|
42910
|
+
*/
|
|
42911
|
+
hoursOfDays?: pulumi.Input<pulumi.Input<number>[]>;
|
|
42912
|
+
/**
|
|
42913
|
+
* Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between `1` to `4`.
|
|
42914
|
+
*/
|
|
42915
|
+
leadTimeInWeeks?: pulumi.Input<number>;
|
|
42916
|
+
/**
|
|
42917
|
+
* Months during the year when maintenance should be performed.
|
|
42918
|
+
*/
|
|
42919
|
+
months?: pulumi.Input<pulumi.Input<string>[]>;
|
|
42920
|
+
/**
|
|
42921
|
+
* Cloud Exadata Infrastructure node patching method, either `ROLLING` or `NONROLLING`. Default value is `ROLLING`. IMPORTANT: Non-rolling infrastructure patching involves system down time. See [Oracle-Managed Infrastructure Maintenance Updates](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/examaintenance.htm#Oracle) for more information.
|
|
42922
|
+
*/
|
|
42923
|
+
patchingMode?: pulumi.Input<string>;
|
|
42924
|
+
/**
|
|
42925
|
+
* The maintenance window scheduling preference.
|
|
42926
|
+
*/
|
|
42927
|
+
preference?: pulumi.Input<string>;
|
|
42928
|
+
/**
|
|
42929
|
+
* Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
|
|
42930
|
+
*/
|
|
42931
|
+
weeksOfMonths?: pulumi.Input<pulumi.Input<number>[]>;
|
|
42932
|
+
}
|
|
42933
|
+
}
|
|
42882
42934
|
export declare namespace orbital {
|
|
42883
42935
|
interface ContactProfileLink {
|
|
42884
42936
|
/**
|
|
@@ -46691,7 +46743,7 @@ export declare namespace stack {
|
|
|
46691
46743
|
*/
|
|
46692
46744
|
ipPools?: pulumi.Input<pulumi.Input<inputs.stack.HciLogicalNetworkSubnetIpPool>[]>;
|
|
46693
46745
|
/**
|
|
46694
|
-
*
|
|
46746
|
+
* A `route` block as defined above. Changing this forces a new resource to be created.
|
|
46695
46747
|
*/
|
|
46696
46748
|
routes?: pulumi.Input<pulumi.Input<inputs.stack.HciLogicalNetworkSubnetRoute>[]>;
|
|
46697
46749
|
/**
|
|
@@ -46717,7 +46769,7 @@ export declare namespace stack {
|
|
|
46717
46769
|
/**
|
|
46718
46770
|
* The name of the route. Changing this forces a new resource to be created.
|
|
46719
46771
|
*/
|
|
46720
|
-
name
|
|
46772
|
+
name?: pulumi.Input<string>;
|
|
46721
46773
|
/**
|
|
46722
46774
|
* The IPv4 address of the next hop. Changing this forces a new resource to be created.
|
|
46723
46775
|
*/
|
package/types/output.d.ts
CHANGED
|
@@ -31160,8 +31160,6 @@ export declare namespace containerservice {
|
|
|
31160
31160
|
applicationSecurityGroupIds?: string[];
|
|
31161
31161
|
/**
|
|
31162
31162
|
* Specifies a mapping of tags to the instance-level public IPs. Changing this forces a new resource to be created.
|
|
31163
|
-
*
|
|
31164
|
-
* > **Note:** This requires that the Preview Feature `Microsoft.ContainerService/NodePublicIPTagsPreview` is enabled and the Resource Provider is re-registered, see [the documentation](https://learn.microsoft.com/en-us/azure/aks/use-node-public-ips#use-public-ip-tags-on-node-public-ips-preview) for more information.
|
|
31165
31163
|
*/
|
|
31166
31164
|
nodePublicIpTags?: {
|
|
31167
31165
|
[key: string]: string;
|
|
@@ -31912,8 +31910,6 @@ export declare namespace containerservice {
|
|
|
31912
31910
|
applicationSecurityGroupIds?: string[];
|
|
31913
31911
|
/**
|
|
31914
31912
|
* Specifies a mapping of tags to the instance-level public IPs. Changing this forces a new resource to be created.
|
|
31915
|
-
*
|
|
31916
|
-
* > **Note:** This requires that the Preview Feature `Microsoft.ContainerService/NodePublicIPTagsPreview` is enabled and the Resource Provider is re-registered, see [the documentation](https://learn.microsoft.com/azure/aks/use-node-public-ips#use-public-ip-tags-on-node-public-ips-preview) for more information.
|
|
31917
31913
|
*/
|
|
31918
31914
|
nodePublicIpTags?: {
|
|
31919
31915
|
[key: string]: string;
|
|
@@ -39014,6 +39010,16 @@ export declare namespace extendedlocation {
|
|
|
39014
39010
|
}
|
|
39015
39011
|
}
|
|
39016
39012
|
export declare namespace fluidrelay {
|
|
39013
|
+
interface ServerCustomerManagedKey {
|
|
39014
|
+
/**
|
|
39015
|
+
* The Key Vault Key Id that will be used to encrypt the Fluid Relay Server.
|
|
39016
|
+
*/
|
|
39017
|
+
keyVaultKeyId: string;
|
|
39018
|
+
/**
|
|
39019
|
+
* The User Assigned Managed Identity ID to be used for accessing the Customer Managed Key for encryption.
|
|
39020
|
+
*/
|
|
39021
|
+
userAssignedIdentityId: string;
|
|
39022
|
+
}
|
|
39017
39023
|
interface ServerIdentity {
|
|
39018
39024
|
/**
|
|
39019
39025
|
* Specifies a list of User Assigned Managed Identity IDs to be assigned to this Fluid Relay Service.
|
|
@@ -48618,7 +48624,7 @@ export declare namespace mssql {
|
|
|
48618
48624
|
/**
|
|
48619
48625
|
* The hours between each differential backup. This is only applicable to live databases but not dropped databases. Value has to be `12` or `24`. Defaults to `12` hours.
|
|
48620
48626
|
*/
|
|
48621
|
-
backupIntervalInHours
|
|
48627
|
+
backupIntervalInHours: number;
|
|
48622
48628
|
/**
|
|
48623
48629
|
* Point In Time Restore configuration. Value has to be between `1` and `35`.
|
|
48624
48630
|
*/
|
|
@@ -55273,6 +55279,230 @@ export declare namespace operationalinsights {
|
|
|
55273
55279
|
type: string;
|
|
55274
55280
|
}
|
|
55275
55281
|
}
|
|
55282
|
+
export declare namespace oracle {
|
|
55283
|
+
interface CloudVmClusterDataCollectionOptions {
|
|
55284
|
+
/**
|
|
55285
|
+
* Indicates whether diagnostic collection is enabled for the VM Cluster/Cloud VM Cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM Cluster/Cloud VM Cluster provisioning. You can also disable or enable it at any time using the `UpdateVmCluster` or `updateCloudVmCluster` API.
|
|
55286
|
+
*/
|
|
55287
|
+
diagnosticsEventsEnabled: boolean;
|
|
55288
|
+
/**
|
|
55289
|
+
* Indicates whether health monitoring is enabled for the VM Cluster / Cloud VM Cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the `UpdateVmCluster`, `UpdateCloudVmCluster` or `updateDbsystem` API.
|
|
55290
|
+
*/
|
|
55291
|
+
healthMonitoringEnabled: boolean;
|
|
55292
|
+
/**
|
|
55293
|
+
* Indicates whether incident logs and trace collection are enabled for the VM Cluster / Cloud VM Cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the `UpdateVmCluster`, `updateCloudVmCluster` or `updateDbsystem` API.
|
|
55294
|
+
*/
|
|
55295
|
+
incidentLogsEnabled: boolean;
|
|
55296
|
+
}
|
|
55297
|
+
interface ExadataInfrastructureMaintenanceWindow {
|
|
55298
|
+
/**
|
|
55299
|
+
* Days during the week when maintenance should be performed. Valid values are: `0` - represents time slot `0:00 - 3:59 UTC - 4` - represents time slot `4:00 - 7:59 UTC - 8` - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot `20:00 - 23:59 UTC`
|
|
55300
|
+
*/
|
|
55301
|
+
daysOfWeeks: string[];
|
|
55302
|
+
/**
|
|
55303
|
+
* The window of hours during the day when maintenance should be performed. The window is a 4 hour slot.
|
|
55304
|
+
*/
|
|
55305
|
+
hoursOfDays: number[];
|
|
55306
|
+
/**
|
|
55307
|
+
* Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between `1` to `4`.
|
|
55308
|
+
*/
|
|
55309
|
+
leadTimeInWeeks: number;
|
|
55310
|
+
/**
|
|
55311
|
+
* Months during the year when maintenance should be performed.
|
|
55312
|
+
*/
|
|
55313
|
+
months: string[];
|
|
55314
|
+
/**
|
|
55315
|
+
* Cloud Exadata Infrastructure node patching method, either `ROLLING` or `NONROLLING`. Default value is `ROLLING`. IMPORTANT: Non-rolling infrastructure patching involves system down time. See [Oracle-Managed Infrastructure Maintenance Updates](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/examaintenance.htm#Oracle) for more information.
|
|
55316
|
+
*/
|
|
55317
|
+
patchingMode: string;
|
|
55318
|
+
/**
|
|
55319
|
+
* The maintenance window scheduling preference.
|
|
55320
|
+
*/
|
|
55321
|
+
preference: string;
|
|
55322
|
+
/**
|
|
55323
|
+
* Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
|
|
55324
|
+
*/
|
|
55325
|
+
weeksOfMonths: number[];
|
|
55326
|
+
}
|
|
55327
|
+
interface GetCloudVmClusterDataCollectionOption {
|
|
55328
|
+
/**
|
|
55329
|
+
* Indicates whether diagnostic collection is enabled for the VM Cluster/Cloud VM Cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM Cluster/Cloud VM Cluster provisioning. You can also disable or enable it at any time using the `UpdateVmCluster` or `updateCloudVmCluster` API.
|
|
55330
|
+
*/
|
|
55331
|
+
diagnosticsEventsEnabled: boolean;
|
|
55332
|
+
/**
|
|
55333
|
+
* Indicates whether health monitoring is enabled for the VM Cluster / Cloud VM Cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the `UpdateVmCluster`, `UpdateCloudVmCluster` or `updateDbsystem` API.
|
|
55334
|
+
*/
|
|
55335
|
+
healthMonitoringEnabled: boolean;
|
|
55336
|
+
/**
|
|
55337
|
+
* Indicates whether incident logs and trace collection are enabled for the VM Cluster / Cloud VM Cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the `UpdateVmCluster`, `updateCloudVmCluster` or `updateDbsystem` API.
|
|
55338
|
+
*/
|
|
55339
|
+
incidentLogsEnabled: boolean;
|
|
55340
|
+
}
|
|
55341
|
+
interface GetCloudVmClusterIormConfigCach {
|
|
55342
|
+
/**
|
|
55343
|
+
* A `dbPlans` block as defined above.
|
|
55344
|
+
*/
|
|
55345
|
+
dbPlans: outputs.oracle.GetCloudVmClusterIormConfigCachDbPlan[];
|
|
55346
|
+
/**
|
|
55347
|
+
* Additional information about the current `lifecycleState`.
|
|
55348
|
+
*/
|
|
55349
|
+
lifecycleDetails: string;
|
|
55350
|
+
/**
|
|
55351
|
+
* The current state of IORM configuration for the Exadata DB system.
|
|
55352
|
+
*/
|
|
55353
|
+
lifecycleState: string;
|
|
55354
|
+
/**
|
|
55355
|
+
* The current value for the IORM objective. The default is `AUTO`.
|
|
55356
|
+
*/
|
|
55357
|
+
objective: string;
|
|
55358
|
+
}
|
|
55359
|
+
interface GetCloudVmClusterIormConfigCachDbPlan {
|
|
55360
|
+
/**
|
|
55361
|
+
* The database name. For the default `DbPlan`, the `dbName` is `default`.
|
|
55362
|
+
*/
|
|
55363
|
+
dbName: string;
|
|
55364
|
+
/**
|
|
55365
|
+
* The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
|
|
55366
|
+
*/
|
|
55367
|
+
flashCacheLimit: string;
|
|
55368
|
+
/**
|
|
55369
|
+
* The relative priority of this database.
|
|
55370
|
+
*/
|
|
55371
|
+
share: number;
|
|
55372
|
+
}
|
|
55373
|
+
interface GetDbServersDbServer {
|
|
55374
|
+
/**
|
|
55375
|
+
* The list of [OCIDs](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/identifiers.htm) of the Autonomous Virtual Machines associated with the DB Server.
|
|
55376
|
+
*/
|
|
55377
|
+
autonomousVirtualMachineDs: string[];
|
|
55378
|
+
/**
|
|
55379
|
+
* The list of [OCIDs](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/identifiers.htm) of the Autonomous VM Clusters associated with the DB Server.
|
|
55380
|
+
*/
|
|
55381
|
+
autonomousVmClusterIds: string[];
|
|
55382
|
+
/**
|
|
55383
|
+
* The [OCID](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
|
55384
|
+
*/
|
|
55385
|
+
compartmentId: string;
|
|
55386
|
+
/**
|
|
55387
|
+
* The number of CPU cores enabled on the DB Server.
|
|
55388
|
+
*/
|
|
55389
|
+
cpuCoreCount: number;
|
|
55390
|
+
/**
|
|
55391
|
+
* The [OCID](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/identifiers.htm) of the Db nodes associated with the DB Server.
|
|
55392
|
+
*/
|
|
55393
|
+
dbNodeIds: string[];
|
|
55394
|
+
/**
|
|
55395
|
+
* The allocated local node storage in GBs on the DB Server.
|
|
55396
|
+
*/
|
|
55397
|
+
dbNodeStorageSizeInGbs: number;
|
|
55398
|
+
/**
|
|
55399
|
+
* The user-friendly name for the DB Server. The name does not need to be unique.
|
|
55400
|
+
*/
|
|
55401
|
+
displayName: string;
|
|
55402
|
+
/**
|
|
55403
|
+
* The [OCID](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/identifiers.htm) of the Exadata infrastructure.
|
|
55404
|
+
*/
|
|
55405
|
+
exadataInfrastructureId: string;
|
|
55406
|
+
/**
|
|
55407
|
+
* Additional information about the current lifecycle state.
|
|
55408
|
+
*/
|
|
55409
|
+
lifecycleDetails: string;
|
|
55410
|
+
/**
|
|
55411
|
+
* The current state of the DB Server.
|
|
55412
|
+
*/
|
|
55413
|
+
lifecycleState: string;
|
|
55414
|
+
/**
|
|
55415
|
+
* The total number of CPU cores available.
|
|
55416
|
+
*/
|
|
55417
|
+
maxCpuCount: number;
|
|
55418
|
+
/**
|
|
55419
|
+
* The total local node storage available in GBs.
|
|
55420
|
+
*/
|
|
55421
|
+
maxDbNodeStorageInGbs: number;
|
|
55422
|
+
/**
|
|
55423
|
+
* The total memory available in GBs.
|
|
55424
|
+
*/
|
|
55425
|
+
maxMemoryInGbs: number;
|
|
55426
|
+
/**
|
|
55427
|
+
* The allocated memory in GBs on the DB Server.
|
|
55428
|
+
*/
|
|
55429
|
+
memorySizeInGbs: number;
|
|
55430
|
+
/**
|
|
55431
|
+
* The [OCID](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/identifiers.htm) of the DB Server.
|
|
55432
|
+
*/
|
|
55433
|
+
ocid: string;
|
|
55434
|
+
provisioningState: string;
|
|
55435
|
+
/**
|
|
55436
|
+
* The shape of the DB Server. The shape determines the amount of CPU, storage, and memory resources available.
|
|
55437
|
+
*/
|
|
55438
|
+
shape: string;
|
|
55439
|
+
/**
|
|
55440
|
+
* The date and time that the DB Server was created.
|
|
55441
|
+
*/
|
|
55442
|
+
timeCreated: string;
|
|
55443
|
+
/**
|
|
55444
|
+
* The [OCID](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/identifiers.htm) of the VM Clusters associated with the DB Server.
|
|
55445
|
+
*/
|
|
55446
|
+
vmClusterIds: string[];
|
|
55447
|
+
}
|
|
55448
|
+
interface GetExadataInfrastructureEstimatedPatchingTime {
|
|
55449
|
+
/**
|
|
55450
|
+
* The estimated time required in minutes for database server patching.
|
|
55451
|
+
*/
|
|
55452
|
+
estimatedDbServerPatchingTime: number;
|
|
55453
|
+
/**
|
|
55454
|
+
* The estimated time required in minutes for network switch patching.
|
|
55455
|
+
*/
|
|
55456
|
+
estimatedNetworkSwitchesPatchingTime: number;
|
|
55457
|
+
/**
|
|
55458
|
+
* The estimated time required in minutes for storage server patching.
|
|
55459
|
+
*/
|
|
55460
|
+
estimatedStorageServerPatchingTime: number;
|
|
55461
|
+
/**
|
|
55462
|
+
* The estimated total time required in minutes for all patching operations.
|
|
55463
|
+
*/
|
|
55464
|
+
totalEstimatedPatchingTime: number;
|
|
55465
|
+
}
|
|
55466
|
+
interface GetExadataInfrastructureMaintenanceWindow {
|
|
55467
|
+
/**
|
|
55468
|
+
* If true, enables the configuration of a custom action timeout (waiting period) between database servers patching operations.
|
|
55469
|
+
*/
|
|
55470
|
+
customActionTimeoutEnabled: boolean;
|
|
55471
|
+
customActionTimeoutInMins: number;
|
|
55472
|
+
/**
|
|
55473
|
+
* Days during the week when maintenance should be performed.
|
|
55474
|
+
*/
|
|
55475
|
+
daysOfWeeks: string[];
|
|
55476
|
+
/**
|
|
55477
|
+
* The window of hours during the day when maintenance should be performed.
|
|
55478
|
+
*/
|
|
55479
|
+
hoursOfDays: number[];
|
|
55480
|
+
/**
|
|
55481
|
+
* Lead time window allows user to set a lead time to prepare for a down time.
|
|
55482
|
+
*/
|
|
55483
|
+
leadTimeInWeeks: number;
|
|
55484
|
+
/**
|
|
55485
|
+
* If true, enables the monthly patching option.
|
|
55486
|
+
*/
|
|
55487
|
+
monthlyPatchingEnabled: boolean;
|
|
55488
|
+
/**
|
|
55489
|
+
* A `months` block as defined below.
|
|
55490
|
+
*/
|
|
55491
|
+
months: string[];
|
|
55492
|
+
/**
|
|
55493
|
+
* Cloud Exadata Infrastructure node patching method.
|
|
55494
|
+
*/
|
|
55495
|
+
patchingMode: string;
|
|
55496
|
+
/**
|
|
55497
|
+
* The maintenance window scheduling preference.
|
|
55498
|
+
*/
|
|
55499
|
+
preference: string;
|
|
55500
|
+
/**
|
|
55501
|
+
* Weeks during the month when maintenance should be performed.
|
|
55502
|
+
*/
|
|
55503
|
+
weeksOfMonths: number[];
|
|
55504
|
+
}
|
|
55505
|
+
}
|
|
55276
55506
|
export declare namespace orbital {
|
|
55277
55507
|
interface ContactProfileLink {
|
|
55278
55508
|
/**
|
|
@@ -59960,7 +60190,7 @@ export declare namespace stack {
|
|
|
59960
60190
|
*/
|
|
59961
60191
|
ipPools?: outputs.stack.HciLogicalNetworkSubnetIpPool[];
|
|
59962
60192
|
/**
|
|
59963
|
-
*
|
|
60193
|
+
* A `route` block as defined above. Changing this forces a new resource to be created.
|
|
59964
60194
|
*/
|
|
59965
60195
|
routes?: outputs.stack.HciLogicalNetworkSubnetRoute[];
|
|
59966
60196
|
/**
|
|
@@ -59986,7 +60216,7 @@ export declare namespace stack {
|
|
|
59986
60216
|
/**
|
|
59987
60217
|
* The name of the route. Changing this forces a new resource to be created.
|
|
59988
60218
|
*/
|
|
59989
|
-
name
|
|
60219
|
+
name?: string;
|
|
59990
60220
|
/**
|
|
59991
60221
|
* The IPv4 address of the next hop. Changing this forces a new resource to be created.
|
|
59992
60222
|
*/
|