@pulumi/azure 6.12.0-alpha.1732774124 → 6.12.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/containerservice/registryTask.d.ts +6 -0
- package/containerservice/registryTask.js.map +1 -1
- package/databricks/getWorkspace.d.ts +4 -0
- package/databricks/getWorkspace.js.map +1 -1
- package/databricks/workspace.d.ts +12 -0
- package/databricks/workspace.js +2 -0
- package/databricks/workspace.js.map +1 -1
- package/eventhub/eventHub.d.ts +21 -10
- package/eventhub/eventHub.js +3 -8
- package/eventhub/eventHub.js.map +1 -1
- package/logicapps/getStandard.d.ts +80 -7
- package/logicapps/getStandard.js +0 -2
- package/logicapps/getStandard.js.map +1 -1
- package/logicapps/standard.d.ts +27 -9
- package/logicapps/standard.js +2 -0
- package/logicapps/standard.js.map +1 -1
- package/mssql/getManagedDatabase.d.ts +67 -0
- package/mssql/getManagedDatabase.js +30 -0
- package/mssql/getManagedDatabase.js.map +1 -0
- package/mssql/index.d.ts +3 -0
- package/mssql/index.js +4 -1
- package/mssql/index.js.map +1 -1
- package/mssql/serverTransparentDataEncryption.d.ts +1 -1
- package/mssql/serverTransparentDataEncryption.js +1 -1
- package/oracle/autonomousDatabase.d.ts +45 -45
- package/oracle/cloudVmCluster.d.ts +81 -81
- package/oracle/exadataInfrastructure.d.ts +27 -27
- package/package.json +2 -2
- package/search/getService.d.ts +4 -0
- package/search/getService.js.map +1 -1
- package/search/service.d.ts +8 -0
- package/search/service.js +2 -0
- package/search/service.js.map +1 -1
- package/types/input.d.ts +317 -23
- package/types/output.d.ts +249 -27
package/types/output.d.ts
CHANGED
|
@@ -32288,7 +32288,7 @@ export declare namespace containerservice {
|
|
|
32288
32288
|
}
|
|
32289
32289
|
interface RegistryTaskAgentSetting {
|
|
32290
32290
|
/**
|
|
32291
|
-
* The number of cores required for the Container Registry Task.
|
|
32291
|
+
* The number of cores required for the Container Registry Task. Possible value is `2`.
|
|
32292
32292
|
*/
|
|
32293
32293
|
cpu: number;
|
|
32294
32294
|
}
|
|
@@ -33926,6 +33926,24 @@ export declare namespace databricks {
|
|
|
33926
33926
|
*/
|
|
33927
33927
|
type: string;
|
|
33928
33928
|
}
|
|
33929
|
+
interface GetWorkspaceEnhancedSecurityCompliance {
|
|
33930
|
+
/**
|
|
33931
|
+
* Whether automatic cluster updates for this workspace is enabled.
|
|
33932
|
+
*/
|
|
33933
|
+
automaticClusterUpdateEnabled: boolean;
|
|
33934
|
+
/**
|
|
33935
|
+
* Whether compliance security profile for this workspace is enabled.
|
|
33936
|
+
*/
|
|
33937
|
+
complianceSecurityProfileEnabled: boolean;
|
|
33938
|
+
/**
|
|
33939
|
+
* A list of standards enforced on this workspace.
|
|
33940
|
+
*/
|
|
33941
|
+
complianceSecurityProfileStandards: string[];
|
|
33942
|
+
/**
|
|
33943
|
+
* Whether enhanced security monitoring for this workspace is enabled.
|
|
33944
|
+
*/
|
|
33945
|
+
enhancedSecurityMonitoringEnabled: boolean;
|
|
33946
|
+
}
|
|
33929
33947
|
interface GetWorkspaceManagedDiskIdentity {
|
|
33930
33948
|
/**
|
|
33931
33949
|
* The principal UUID for the internal databricks storage account needed to provide access to the workspace for enabling Customer Managed Keys.
|
|
@@ -34032,6 +34050,32 @@ export declare namespace databricks {
|
|
|
34032
34050
|
*/
|
|
34033
34051
|
vnetAddressPrefix: string;
|
|
34034
34052
|
}
|
|
34053
|
+
interface WorkspaceEnhancedSecurityCompliance {
|
|
34054
|
+
/**
|
|
34055
|
+
* Enables automatic cluster updates for this workspace. Defaults to `false`.
|
|
34056
|
+
*/
|
|
34057
|
+
automaticClusterUpdateEnabled?: boolean;
|
|
34058
|
+
/**
|
|
34059
|
+
* Enables compliance security profile for this workspace. Defaults to `false`.
|
|
34060
|
+
*
|
|
34061
|
+
* > **Note:** Changing the value of `complianceSecurityProfileEnabled` from `true` to `false` forces a replacement of the Databricks workspace.
|
|
34062
|
+
*
|
|
34063
|
+
* > **Note:** The attributes `automaticClusterUpdateEnabled` and `enhancedSecurityMonitoringEnabled` must be set to `true` in order to set `complianceSecurityProfileEnabled` to `true`.
|
|
34064
|
+
*/
|
|
34065
|
+
complianceSecurityProfileEnabled?: boolean;
|
|
34066
|
+
/**
|
|
34067
|
+
* A list of standards to enforce on this workspace. Possible values include `HIPAA` and `PCI_DSS`.
|
|
34068
|
+
*
|
|
34069
|
+
* > **Note:** `complianceSecurityProfileEnabled` must be set to `true` in order to use `complianceSecurityProfileStandards`.
|
|
34070
|
+
*
|
|
34071
|
+
* > **Note:** Removing a standard from the `complianceSecurityProfileStandards` list forces a replacement of the Databricks workspace.
|
|
34072
|
+
*/
|
|
34073
|
+
complianceSecurityProfileStandards?: string[];
|
|
34074
|
+
/**
|
|
34075
|
+
* Enables enhanced security monitoring for this workspace. Defaults to `false`.
|
|
34076
|
+
*/
|
|
34077
|
+
enhancedSecurityMonitoringEnabled?: boolean;
|
|
34078
|
+
}
|
|
34035
34079
|
interface WorkspaceManagedDiskIdentity {
|
|
34036
34080
|
/**
|
|
34037
34081
|
* The principal UUID for the internal databricks storage account needed to provide access to the workspace for enabling Customer Managed Keys.
|
|
@@ -44392,71 +44436,209 @@ export declare namespace logicapps {
|
|
|
44392
44436
|
type: string;
|
|
44393
44437
|
}
|
|
44394
44438
|
interface GetStandardSiteConfig {
|
|
44439
|
+
/**
|
|
44440
|
+
* Should the Logic App be loaded at all times?
|
|
44441
|
+
*/
|
|
44395
44442
|
alwaysOn?: boolean;
|
|
44443
|
+
/**
|
|
44444
|
+
* The number of workers this Logic App can scale out to. Only applicable to apps on the Consumption and Premium plan.
|
|
44445
|
+
*/
|
|
44396
44446
|
appScaleLimit: number;
|
|
44447
|
+
/**
|
|
44448
|
+
* The Auto-swap slot name.
|
|
44449
|
+
*/
|
|
44397
44450
|
autoSwapSlotName: string;
|
|
44451
|
+
/**
|
|
44452
|
+
* A `cors` block as defined below.
|
|
44453
|
+
*/
|
|
44398
44454
|
cors: outputs.logicapps.GetStandardSiteConfigCors;
|
|
44455
|
+
/**
|
|
44456
|
+
* The version of the .NET framework's CLR used in this Logic App.
|
|
44457
|
+
*/
|
|
44399
44458
|
dotnetFrameworkVersion?: string;
|
|
44459
|
+
/**
|
|
44460
|
+
* The number of minimum instances for this Logic App Only affects apps on the Premium plan.
|
|
44461
|
+
*/
|
|
44400
44462
|
elasticInstanceMinimum: number;
|
|
44463
|
+
/**
|
|
44464
|
+
* The state of FTP / FTPS service for this Logic App.
|
|
44465
|
+
*/
|
|
44401
44466
|
ftpsState: string;
|
|
44467
|
+
/**
|
|
44468
|
+
* Path which will be checked for this Logic App health.
|
|
44469
|
+
*/
|
|
44402
44470
|
healthCheckPath?: string;
|
|
44471
|
+
/**
|
|
44472
|
+
* Specifies whether the HTTP2 protocol should be enabled.
|
|
44473
|
+
*/
|
|
44403
44474
|
http2Enabled?: boolean;
|
|
44475
|
+
/**
|
|
44476
|
+
* A list of `ipRestriction` objects representing IP restrictions as defined below.
|
|
44477
|
+
*/
|
|
44404
44478
|
ipRestrictions: outputs.logicapps.GetStandardSiteConfigIpRestriction[];
|
|
44479
|
+
/**
|
|
44480
|
+
* Linux App Framework and version for the Logic App.
|
|
44481
|
+
*/
|
|
44405
44482
|
linuxFxVersion: string;
|
|
44483
|
+
/**
|
|
44484
|
+
* The minimum supported TLS version for the Logic App.
|
|
44485
|
+
*/
|
|
44406
44486
|
minTlsVersion: string;
|
|
44487
|
+
/**
|
|
44488
|
+
* The number of pre-warmed instances for this Logic App Only affects apps on the Premium plan.
|
|
44489
|
+
*/
|
|
44407
44490
|
preWarmedInstanceCount: number;
|
|
44408
|
-
|
|
44491
|
+
/**
|
|
44492
|
+
* @deprecated the `site_config.public_network_access_enabled` property has been superseded by the `publicNetworkAccess` property and will be removed in v5.0 of the AzureRM Provider.
|
|
44493
|
+
*/
|
|
44494
|
+
publicNetworkAccessEnabled: boolean;
|
|
44495
|
+
/**
|
|
44496
|
+
* Should Runtime Scale Monitoring be enabled?. Only applicable to apps on the Premium plan.
|
|
44497
|
+
*/
|
|
44409
44498
|
runtimeScaleMonitoringEnabled?: boolean;
|
|
44499
|
+
/**
|
|
44500
|
+
* A list of `scmIpRestriction` objects representing SCM IP restrictions as defined below.
|
|
44501
|
+
*/
|
|
44410
44502
|
scmIpRestrictions: outputs.logicapps.GetStandardSiteConfigScmIpRestriction[];
|
|
44503
|
+
/**
|
|
44504
|
+
* The minimum version of TLS required for SSL requests to the SCM site.
|
|
44505
|
+
*/
|
|
44411
44506
|
scmMinTlsVersion: string;
|
|
44507
|
+
/**
|
|
44508
|
+
* The type of Source Control used by the Logic App in use by the Windows Function App.
|
|
44509
|
+
*/
|
|
44412
44510
|
scmType: string;
|
|
44511
|
+
/**
|
|
44512
|
+
* Should the Logic App `ipRestriction` configuration be used for the SCM too.
|
|
44513
|
+
*/
|
|
44413
44514
|
scmUseMainIpRestriction?: boolean;
|
|
44515
|
+
/**
|
|
44516
|
+
* Should the Logic App run in 32 bit mode, rather than 64 bit mode?
|
|
44517
|
+
*/
|
|
44414
44518
|
use32BitWorkerProcess?: boolean;
|
|
44519
|
+
/**
|
|
44520
|
+
* Should all outbound traffic to have Virtual Network Security Groups and User Defined Routes applied.
|
|
44521
|
+
*/
|
|
44415
44522
|
vnetRouteAllEnabled: boolean;
|
|
44523
|
+
/**
|
|
44524
|
+
* Should WebSockets be enabled?
|
|
44525
|
+
*/
|
|
44416
44526
|
websocketsEnabled?: boolean;
|
|
44417
44527
|
}
|
|
44418
44528
|
interface GetStandardSiteConfigCors {
|
|
44529
|
+
/**
|
|
44530
|
+
* A list of origins which should be able to make cross-origin calls.
|
|
44531
|
+
*/
|
|
44419
44532
|
allowedOrigins: string[];
|
|
44533
|
+
/**
|
|
44534
|
+
* Are credentials supported?
|
|
44535
|
+
*/
|
|
44420
44536
|
supportCredentials?: boolean;
|
|
44421
44537
|
}
|
|
44422
44538
|
interface GetStandardSiteConfigIpRestriction {
|
|
44539
|
+
/**
|
|
44540
|
+
* Does this restriction `Allow` or `Deny` access for this IP range.
|
|
44541
|
+
*/
|
|
44423
44542
|
action?: string;
|
|
44543
|
+
/**
|
|
44544
|
+
* The `headers` block for this specific `ipRestriction` as defined below.
|
|
44545
|
+
*/
|
|
44424
44546
|
headers: outputs.logicapps.GetStandardSiteConfigIpRestrictionHeaders;
|
|
44547
|
+
/**
|
|
44548
|
+
* The IP Address used for this IP Restriction in CIDR notation.
|
|
44549
|
+
*/
|
|
44425
44550
|
ipAddress?: string;
|
|
44426
44551
|
/**
|
|
44427
44552
|
* The name of this Logic App.
|
|
44428
44553
|
*/
|
|
44429
44554
|
name: string;
|
|
44555
|
+
/**
|
|
44556
|
+
* The priority for this IP Restriction. Restrictions are enforced in priority order.
|
|
44557
|
+
*/
|
|
44430
44558
|
priority?: number;
|
|
44559
|
+
/**
|
|
44560
|
+
* The Service Tag used for this IP Restriction.
|
|
44561
|
+
*/
|
|
44431
44562
|
serviceTag?: string;
|
|
44563
|
+
/**
|
|
44564
|
+
* The Virtual Network Subnet ID used for this IP Restriction.
|
|
44565
|
+
*/
|
|
44432
44566
|
virtualNetworkSubnetId?: string;
|
|
44433
44567
|
}
|
|
44434
44568
|
interface GetStandardSiteConfigIpRestrictionHeaders {
|
|
44569
|
+
/**
|
|
44570
|
+
* A list of allowed Azure FrontDoor IDs in UUID notation.
|
|
44571
|
+
*/
|
|
44435
44572
|
xAzureFdids?: string[];
|
|
44573
|
+
/**
|
|
44574
|
+
* A list to allow the Azure FrontDoor health probe header.
|
|
44575
|
+
*/
|
|
44436
44576
|
xFdHealthProbe?: string;
|
|
44577
|
+
/**
|
|
44578
|
+
* A list of allowed 'X-Forwarded-For' IPs in CIDR notation.
|
|
44579
|
+
*/
|
|
44437
44580
|
xForwardedFors?: string[];
|
|
44581
|
+
/**
|
|
44582
|
+
* A list of allowed 'X-Forwarded-Host' domains.
|
|
44583
|
+
*/
|
|
44438
44584
|
xForwardedHosts?: string[];
|
|
44439
44585
|
}
|
|
44440
44586
|
interface GetStandardSiteConfigScmIpRestriction {
|
|
44587
|
+
/**
|
|
44588
|
+
* Does this restriction `Allow` or `Deny` access for this IP range.
|
|
44589
|
+
*/
|
|
44441
44590
|
action?: string;
|
|
44591
|
+
/**
|
|
44592
|
+
* The `headers` block for this specific `ipRestriction` as defined below.
|
|
44593
|
+
*/
|
|
44442
44594
|
headers: outputs.logicapps.GetStandardSiteConfigScmIpRestrictionHeaders;
|
|
44595
|
+
/**
|
|
44596
|
+
* The IP Address used for this IP Restriction in CIDR notation.
|
|
44597
|
+
*/
|
|
44443
44598
|
ipAddress?: string;
|
|
44444
44599
|
/**
|
|
44445
44600
|
* The name of this Logic App.
|
|
44446
44601
|
*/
|
|
44447
44602
|
name: string;
|
|
44603
|
+
/**
|
|
44604
|
+
* The priority for this IP Restriction. Restrictions are enforced in priority order.
|
|
44605
|
+
*/
|
|
44448
44606
|
priority?: number;
|
|
44607
|
+
/**
|
|
44608
|
+
* The Service Tag used for this IP Restriction.
|
|
44609
|
+
*/
|
|
44449
44610
|
serviceTag?: string;
|
|
44611
|
+
/**
|
|
44612
|
+
* The Virtual Network Subnet ID used for this IP Restriction.
|
|
44613
|
+
*/
|
|
44450
44614
|
virtualNetworkSubnetId?: string;
|
|
44451
44615
|
}
|
|
44452
44616
|
interface GetStandardSiteConfigScmIpRestrictionHeaders {
|
|
44617
|
+
/**
|
|
44618
|
+
* A list of allowed Azure FrontDoor IDs in UUID notation.
|
|
44619
|
+
*/
|
|
44453
44620
|
xAzureFdids?: string[];
|
|
44621
|
+
/**
|
|
44622
|
+
* A list to allow the Azure FrontDoor health probe header.
|
|
44623
|
+
*/
|
|
44454
44624
|
xFdHealthProbe?: string;
|
|
44625
|
+
/**
|
|
44626
|
+
* A list of allowed 'X-Forwarded-For' IPs in CIDR notation.
|
|
44627
|
+
*/
|
|
44455
44628
|
xForwardedFors?: string[];
|
|
44629
|
+
/**
|
|
44630
|
+
* A list of allowed 'X-Forwarded-Host' domains.
|
|
44631
|
+
*/
|
|
44456
44632
|
xForwardedHosts?: string[];
|
|
44457
44633
|
}
|
|
44458
44634
|
interface GetStandardSiteCredential {
|
|
44635
|
+
/**
|
|
44636
|
+
* The password associated with the username, which can be used to publish to this Logic App.
|
|
44637
|
+
*/
|
|
44459
44638
|
password: string;
|
|
44639
|
+
/**
|
|
44640
|
+
* The username which can be used to publish to this Logic App.
|
|
44641
|
+
*/
|
|
44460
44642
|
username: string;
|
|
44461
44643
|
}
|
|
44462
44644
|
interface GetWorkflowIdentity {
|
|
@@ -44655,7 +44837,7 @@ export declare namespace logicapps {
|
|
|
44655
44837
|
*/
|
|
44656
44838
|
elasticInstanceMinimum: number;
|
|
44657
44839
|
/**
|
|
44658
|
-
* State of FTP / FTPS service for this Logic App Possible values include: `AllAllowed`, `FtpsOnly` and `Disabled`. Defaults to `AllAllowed`.
|
|
44840
|
+
* State of FTP / FTPS service for this Logic App. Possible values include: `AllAllowed`, `FtpsOnly` and `Disabled`. Defaults to `AllAllowed`.
|
|
44659
44841
|
*/
|
|
44660
44842
|
ftpsState: string;
|
|
44661
44843
|
/**
|
|
@@ -44663,7 +44845,7 @@ export declare namespace logicapps {
|
|
|
44663
44845
|
*/
|
|
44664
44846
|
healthCheckPath?: string;
|
|
44665
44847
|
/**
|
|
44666
|
-
* Specifies whether
|
|
44848
|
+
* Specifies whether the HTTP2 protocol should be enabled. Defaults to `false`.
|
|
44667
44849
|
*/
|
|
44668
44850
|
http2Enabled?: boolean;
|
|
44669
44851
|
/**
|
|
@@ -44673,11 +44855,11 @@ export declare namespace logicapps {
|
|
|
44673
44855
|
*/
|
|
44674
44856
|
ipRestrictions: outputs.logicapps.StandardSiteConfigIpRestriction[];
|
|
44675
44857
|
/**
|
|
44676
|
-
* Linux App Framework and version for the
|
|
44858
|
+
* Linux App Framework and version for the App Service, e.g. `DOCKER|(golang:latest)`. Setting this value will also set the `kind` of application deployed to `functionapp,linux,container,workflowapp`
|
|
44677
44859
|
*/
|
|
44678
44860
|
linuxFxVersion: string;
|
|
44679
44861
|
/**
|
|
44680
|
-
* The minimum supported TLS version for the Logic App Possible values are `1.0`, `1.1`, and `1.2`. Defaults to `1.2` for new Logic Apps.
|
|
44862
|
+
* The minimum supported TLS version for the Logic App. Possible values are `1.0`, `1.1`, and `1.2`. Defaults to `1.2` for new Logic Apps.
|
|
44681
44863
|
*/
|
|
44682
44864
|
minTlsVersion: string;
|
|
44683
44865
|
/**
|
|
@@ -44685,9 +44867,9 @@ export declare namespace logicapps {
|
|
|
44685
44867
|
*/
|
|
44686
44868
|
preWarmedInstanceCount: number;
|
|
44687
44869
|
/**
|
|
44688
|
-
*
|
|
44870
|
+
* @deprecated the `site_config.public_network_access_enabled` property has been superseded by the `publicNetworkAccess` property and will be removed in v5.0 of the AzureRM Provider.
|
|
44689
44871
|
*/
|
|
44690
|
-
publicNetworkAccessEnabled
|
|
44872
|
+
publicNetworkAccessEnabled: boolean;
|
|
44691
44873
|
/**
|
|
44692
44874
|
* Should Runtime Scale Monitoring be enabled?. Only applicable to apps on the Premium plan. Defaults to `false`.
|
|
44693
44875
|
*/
|
|
@@ -44773,11 +44955,11 @@ export declare namespace logicapps {
|
|
|
44773
44955
|
*/
|
|
44774
44956
|
xAzureFdids?: string[];
|
|
44775
44957
|
/**
|
|
44776
|
-
* A list to allow the Azure FrontDoor health probe header. Only allowed value is
|
|
44958
|
+
* A list to allow the Azure FrontDoor health probe header. Only allowed value is `1`.
|
|
44777
44959
|
*/
|
|
44778
44960
|
xFdHealthProbe?: string;
|
|
44779
44961
|
/**
|
|
44780
|
-
* A list of allowed 'X-Forwarded-For' IPs in CIDR notation with a maximum of 8
|
|
44962
|
+
* A list of allowed 'X-Forwarded-For' IPs in CIDR notation with a maximum of 8.
|
|
44781
44963
|
*/
|
|
44782
44964
|
xForwardedFors?: string[];
|
|
44783
44965
|
/**
|
|
@@ -44803,7 +44985,7 @@ export declare namespace logicapps {
|
|
|
44803
44985
|
*/
|
|
44804
44986
|
name: string;
|
|
44805
44987
|
/**
|
|
44806
|
-
* The priority for this IP Restriction. Restrictions are enforced in priority order. By default, the priority is set to 65000 if not specified.
|
|
44988
|
+
* The priority for this IP Restriction. Restrictions are enforced in priority order. By default, the priority is set to `65000` if not specified.
|
|
44807
44989
|
*/
|
|
44808
44990
|
priority?: number;
|
|
44809
44991
|
/**
|
|
@@ -44823,11 +45005,11 @@ export declare namespace logicapps {
|
|
|
44823
45005
|
*/
|
|
44824
45006
|
xAzureFdids?: string[];
|
|
44825
45007
|
/**
|
|
44826
|
-
* A list to allow the Azure FrontDoor health probe header. Only allowed value is
|
|
45008
|
+
* A list to allow the Azure FrontDoor health probe header. Only allowed value is `1`.
|
|
44827
45009
|
*/
|
|
44828
45010
|
xFdHealthProbe?: string;
|
|
44829
45011
|
/**
|
|
44830
|
-
* A list of allowed 'X-Forwarded-For' IPs in CIDR notation with a maximum of 8
|
|
45012
|
+
* A list of allowed 'X-Forwarded-For' IPs in CIDR notation with a maximum of 8.
|
|
44831
45013
|
*/
|
|
44832
45014
|
xForwardedFors?: string[];
|
|
44833
45015
|
/**
|
|
@@ -44841,7 +45023,7 @@ export declare namespace logicapps {
|
|
|
44841
45023
|
*/
|
|
44842
45024
|
password: string;
|
|
44843
45025
|
/**
|
|
44844
|
-
* The username which can be used to publish to this App Service
|
|
45026
|
+
* The username which can be used to publish to this App Service.
|
|
44845
45027
|
*/
|
|
44846
45028
|
username: string;
|
|
44847
45029
|
}
|
|
@@ -48943,6 +49125,38 @@ export declare namespace mssql {
|
|
|
48943
49125
|
*/
|
|
48944
49126
|
tier: string;
|
|
48945
49127
|
}
|
|
49128
|
+
interface GetManagedDatabaseLongTermRetentionPolicy {
|
|
49129
|
+
/**
|
|
49130
|
+
* Specifies if the backups are immutable.
|
|
49131
|
+
*/
|
|
49132
|
+
immutableBackupsEnabled: boolean;
|
|
49133
|
+
/**
|
|
49134
|
+
* The monthly retention policy for an LTR backup in an ISO 8601 format.
|
|
49135
|
+
*/
|
|
49136
|
+
monthlyRetention: string;
|
|
49137
|
+
/**
|
|
49138
|
+
* The week of year to take the yearly backup.
|
|
49139
|
+
*/
|
|
49140
|
+
weekOfYear: number;
|
|
49141
|
+
/**
|
|
49142
|
+
* The weekly retention policy for an LTR backup in an ISO 8601 format.
|
|
49143
|
+
*/
|
|
49144
|
+
weeklyRetention: string;
|
|
49145
|
+
/**
|
|
49146
|
+
* The yearly retention policy for an LTR backup in an ISO 8601 format.
|
|
49147
|
+
*/
|
|
49148
|
+
yearlyRetention: string;
|
|
49149
|
+
}
|
|
49150
|
+
interface GetManagedDatabasePointInTimeRestore {
|
|
49151
|
+
/**
|
|
49152
|
+
* The point in time for the restore from `sourceDatabaseId`.
|
|
49153
|
+
*/
|
|
49154
|
+
restorePointInTime: string;
|
|
49155
|
+
/**
|
|
49156
|
+
* The source database ID that is used to restore from.
|
|
49157
|
+
*/
|
|
49158
|
+
sourceDatabaseId: string;
|
|
49159
|
+
}
|
|
48946
49160
|
interface GetManagedInstanceIdentity {
|
|
48947
49161
|
/**
|
|
48948
49162
|
* A list of User Assigned Managed Identity IDs assigned with the Identity of this SQL Managed Instance.
|
|
@@ -55514,45 +55728,45 @@ export declare namespace operationalinsights {
|
|
|
55514
55728
|
export declare namespace oracle {
|
|
55515
55729
|
interface CloudVmClusterDataCollectionOptions {
|
|
55516
55730
|
/**
|
|
55517
|
-
* 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.
|
|
55731
|
+
* 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. Changing this forces a new Cloud VM Cluster to be created.
|
|
55518
55732
|
*/
|
|
55519
55733
|
diagnosticsEventsEnabled: boolean;
|
|
55520
55734
|
/**
|
|
55521
|
-
* 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.
|
|
55735
|
+
* 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. Changing this forces a new Cloud VM Cluster to be created.
|
|
55522
55736
|
*/
|
|
55523
55737
|
healthMonitoringEnabled: boolean;
|
|
55524
55738
|
/**
|
|
55525
|
-
* 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.
|
|
55739
|
+
* 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. Changing this forces a new Cloud VM Cluster to be created.
|
|
55526
55740
|
*/
|
|
55527
55741
|
incidentLogsEnabled: boolean;
|
|
55528
55742
|
}
|
|
55529
55743
|
interface ExadataInfrastructureMaintenanceWindow {
|
|
55530
55744
|
/**
|
|
55531
|
-
* 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
|
|
55745
|
+
* 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`. Changing this forces a new Cloud Exadata Infrastructure to be created.
|
|
55532
55746
|
*/
|
|
55533
55747
|
daysOfWeeks: string[];
|
|
55534
55748
|
/**
|
|
55535
|
-
* The window of hours during the day when maintenance should be performed. The window is a 4 hour slot.
|
|
55749
|
+
* The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Changing this forces a new Cloud Exadata Infrastructure to be created.
|
|
55536
55750
|
*/
|
|
55537
55751
|
hoursOfDays: number[];
|
|
55538
55752
|
/**
|
|
55539
|
-
* 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`.
|
|
55753
|
+
* 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`. Changing this forces a new Cloud Exadata Infrastructure to be created.
|
|
55540
55754
|
*/
|
|
55541
55755
|
leadTimeInWeeks: number;
|
|
55542
55756
|
/**
|
|
55543
|
-
* Months during the year when maintenance should be performed.
|
|
55757
|
+
* Months during the year when maintenance should be performed. Changing this forces a new Cloud Exadata Infrastructure to be created.
|
|
55544
55758
|
*/
|
|
55545
55759
|
months: string[];
|
|
55546
55760
|
/**
|
|
55547
|
-
* 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.
|
|
55761
|
+
* 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. Changing this forces a new Cloud Exadata Infrastructure to be created.
|
|
55548
55762
|
*/
|
|
55549
55763
|
patchingMode: string;
|
|
55550
55764
|
/**
|
|
55551
|
-
* The maintenance window scheduling preference.
|
|
55765
|
+
* The maintenance window scheduling preference. Changing this forces a new Cloud Exadata Infrastructure to be created.
|
|
55552
55766
|
*/
|
|
55553
55767
|
preference: string;
|
|
55554
55768
|
/**
|
|
55555
|
-
* 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.
|
|
55769
|
+
* 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. Changing this forces a new Cloud Exadata Infrastructure to be created.
|
|
55556
55770
|
*/
|
|
55557
55771
|
weeksOfMonths: number[];
|
|
55558
55772
|
}
|
|
@@ -58090,11 +58304,15 @@ export declare namespace role {
|
|
|
58090
58304
|
export declare namespace search {
|
|
58091
58305
|
interface GetServiceIdentity {
|
|
58092
58306
|
/**
|
|
58093
|
-
* The
|
|
58307
|
+
* The list of User Assigned Managed Service Identity IDs assigned to this Search Service.
|
|
58308
|
+
*/
|
|
58309
|
+
identityIds: string[];
|
|
58310
|
+
/**
|
|
58311
|
+
* The Principal ID associated with this Managed Service Identity.
|
|
58094
58312
|
*/
|
|
58095
58313
|
principalId: string;
|
|
58096
58314
|
/**
|
|
58097
|
-
* The ID
|
|
58315
|
+
* The Tenant ID associated with this Managed Service Identity.
|
|
58098
58316
|
*/
|
|
58099
58317
|
tenantId: string;
|
|
58100
58318
|
/**
|
|
@@ -58113,6 +58331,10 @@ export declare namespace search {
|
|
|
58113
58331
|
name: string;
|
|
58114
58332
|
}
|
|
58115
58333
|
interface ServiceIdentity {
|
|
58334
|
+
/**
|
|
58335
|
+
* Specifies the list of User Assigned Managed Service Identity IDs which should be assigned to this Search Service.
|
|
58336
|
+
*/
|
|
58337
|
+
identityIds?: string[];
|
|
58116
58338
|
/**
|
|
58117
58339
|
* The Principal ID associated with this Managed Service Identity.
|
|
58118
58340
|
*/
|
|
@@ -58122,7 +58344,7 @@ export declare namespace search {
|
|
|
58122
58344
|
*/
|
|
58123
58345
|
tenantId: string;
|
|
58124
58346
|
/**
|
|
58125
|
-
* Specifies the type of Managed Service Identity that should be configured on this Search Service.
|
|
58347
|
+
* Specifies the type of Managed Service Identity that should be configured on this Search Service. Possible values are `SystemAssigned`, `UserAssigned`, and `SystemAssigned, UserAssigned`.
|
|
58126
58348
|
*/
|
|
58127
58349
|
type: string;
|
|
58128
58350
|
}
|