@pulumi/oci 1.25.0 → 1.26.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/containerengine/containerInstance.d.ts +4 -0
- package/containerengine/containerInstance.js +4 -0
- package/containerengine/containerInstance.js.map +1 -1
- package/core/getInstance.d.ts +2 -0
- package/core/getInstance.js.map +1 -1
- package/core/instance.d.ts +24 -3
- package/core/instance.js +4 -0
- package/core/instance.js.map +1 -1
- package/database/autonomousDatabase.d.ts +24 -22
- package/database/autonomousDatabase.js +2 -0
- package/database/autonomousDatabase.js.map +1 -1
- package/opsi/getNewsReport.d.ts +8 -0
- package/opsi/getNewsReport.js.map +1 -1
- package/opsi/newsReport.d.ts +38 -6
- package/opsi/newsReport.js +12 -0
- package/opsi/newsReport.js.map +1 -1
- package/package.json +1 -1
- package/types/input.d.ts +110 -2
- package/types/output.d.ts +247 -1
package/types/output.d.ts
CHANGED
|
@@ -33273,6 +33273,10 @@ export declare namespace ContainerEngine {
|
|
|
33273
33273
|
vcpusLimit: number;
|
|
33274
33274
|
}
|
|
33275
33275
|
interface ContainerInstanceContainerSecurityContext {
|
|
33276
|
+
/**
|
|
33277
|
+
* Linux Container capabilities to configure capabilities of container.
|
|
33278
|
+
*/
|
|
33279
|
+
capabilities: outputs.ContainerEngine.ContainerInstanceContainerSecurityContextCapabilities;
|
|
33276
33280
|
/**
|
|
33277
33281
|
* Indicates if the container must run as a non-root user. If true, the service validates the container image at runtime to ensure that it is not going to run with UID 0 (root) and fails the container instance creation if the validation fails.
|
|
33278
33282
|
*/
|
|
@@ -33294,6 +33298,16 @@ export declare namespace ContainerEngine {
|
|
|
33294
33298
|
*/
|
|
33295
33299
|
securityContextType: string;
|
|
33296
33300
|
}
|
|
33301
|
+
interface ContainerInstanceContainerSecurityContextCapabilities {
|
|
33302
|
+
/**
|
|
33303
|
+
* A list of additional configurable container capabilities.
|
|
33304
|
+
*/
|
|
33305
|
+
addCapabilities: string[];
|
|
33306
|
+
/**
|
|
33307
|
+
* A list of container capabilities that can be dropped.
|
|
33308
|
+
*/
|
|
33309
|
+
dropCapabilities: string[];
|
|
33310
|
+
}
|
|
33297
33311
|
interface ContainerInstanceContainerVolumeMount {
|
|
33298
33312
|
/**
|
|
33299
33313
|
* Whether the volume was mounted in read-only mode. By default, the volume is not read-only.
|
|
@@ -35373,12 +35387,17 @@ export declare namespace ContainerInstances {
|
|
|
35373
35387
|
vcpusLimit: number;
|
|
35374
35388
|
}
|
|
35375
35389
|
interface GetContainerInstanceContainerSecurityContext {
|
|
35390
|
+
capabilities: outputs.ContainerInstances.GetContainerInstanceContainerSecurityContextCapability[];
|
|
35376
35391
|
isNonRootUserCheckEnabled: boolean;
|
|
35377
35392
|
isRootFileSystemReadonly: boolean;
|
|
35378
35393
|
runAsGroup: number;
|
|
35379
35394
|
runAsUser: number;
|
|
35380
35395
|
securityContextType: string;
|
|
35381
35396
|
}
|
|
35397
|
+
interface GetContainerInstanceContainerSecurityContextCapability {
|
|
35398
|
+
addCapabilities: string[];
|
|
35399
|
+
dropCapabilities: string[];
|
|
35400
|
+
}
|
|
35382
35401
|
interface GetContainerInstanceContainerVolumeMount {
|
|
35383
35402
|
isReadOnly: boolean;
|
|
35384
35403
|
mountPath: string;
|
|
@@ -35852,12 +35871,17 @@ export declare namespace ContainerInstances {
|
|
|
35852
35871
|
vcpusLimit: number;
|
|
35853
35872
|
}
|
|
35854
35873
|
interface GetContainerInstancesContainerInstanceCollectionItemContainerSecurityContext {
|
|
35874
|
+
capabilities: outputs.ContainerInstances.GetContainerInstancesContainerInstanceCollectionItemContainerSecurityContextCapability[];
|
|
35855
35875
|
isNonRootUserCheckEnabled: boolean;
|
|
35856
35876
|
isRootFileSystemReadonly: boolean;
|
|
35857
35877
|
runAsGroup: number;
|
|
35858
35878
|
runAsUser: number;
|
|
35859
35879
|
securityContextType: string;
|
|
35860
35880
|
}
|
|
35881
|
+
interface GetContainerInstancesContainerInstanceCollectionItemContainerSecurityContextCapability {
|
|
35882
|
+
addCapabilities: string[];
|
|
35883
|
+
dropCapabilities: string[];
|
|
35884
|
+
}
|
|
35861
35885
|
interface GetContainerInstancesContainerInstanceCollectionItemContainerVolumeMount {
|
|
35862
35886
|
isReadOnly: boolean;
|
|
35863
35887
|
mountPath: string;
|
|
@@ -43179,6 +43203,41 @@ export declare namespace Core {
|
|
|
43179
43203
|
*/
|
|
43180
43204
|
remoteDataVolumeType: string;
|
|
43181
43205
|
}
|
|
43206
|
+
interface GetInstanceLaunchVolumeAttachment {
|
|
43207
|
+
device: string;
|
|
43208
|
+
/**
|
|
43209
|
+
* A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
|
43210
|
+
*/
|
|
43211
|
+
displayName: string;
|
|
43212
|
+
encryptionInTransitType: string;
|
|
43213
|
+
isAgentAutoIscsiLoginEnabled: boolean;
|
|
43214
|
+
isReadOnly: boolean;
|
|
43215
|
+
isShareable: boolean;
|
|
43216
|
+
launchCreateVolumeDetails: outputs.Core.GetInstanceLaunchVolumeAttachmentLaunchCreateVolumeDetail[];
|
|
43217
|
+
/**
|
|
43218
|
+
* (Required) The type of action to run when the instance is interrupted for eviction.
|
|
43219
|
+
*/
|
|
43220
|
+
type: string;
|
|
43221
|
+
useChap: boolean;
|
|
43222
|
+
volumeId: string;
|
|
43223
|
+
}
|
|
43224
|
+
interface GetInstanceLaunchVolumeAttachmentLaunchCreateVolumeDetail {
|
|
43225
|
+
/**
|
|
43226
|
+
* The OCID of the compartment containing images to search
|
|
43227
|
+
*/
|
|
43228
|
+
compartmentId: string;
|
|
43229
|
+
/**
|
|
43230
|
+
* A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
|
43231
|
+
*/
|
|
43232
|
+
displayName: string;
|
|
43233
|
+
/**
|
|
43234
|
+
* The OCID of the Vault service key to assign as the master encryption key for the boot volume.
|
|
43235
|
+
*/
|
|
43236
|
+
kmsKeyId: string;
|
|
43237
|
+
sizeInGbs: string;
|
|
43238
|
+
volumeCreationType: string;
|
|
43239
|
+
vpusPerGb: string;
|
|
43240
|
+
}
|
|
43182
43241
|
interface GetInstanceMeasuredBootReportMeasurement {
|
|
43183
43242
|
/**
|
|
43184
43243
|
* The list of actual PCR entries measured during boot.
|
|
@@ -43829,6 +43888,7 @@ export declare namespace Core {
|
|
|
43829
43888
|
* Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
|
|
43830
43889
|
*/
|
|
43831
43890
|
launchOptions: outputs.Core.GetInstancesInstanceLaunchOption[];
|
|
43891
|
+
launchVolumeAttachments: outputs.Core.GetInstancesInstanceLaunchVolumeAttachment[];
|
|
43832
43892
|
/**
|
|
43833
43893
|
* Custom metadata that you provide.
|
|
43834
43894
|
*/
|
|
@@ -43847,6 +43907,7 @@ export declare namespace Core {
|
|
|
43847
43907
|
* (Optional) Whether to preserve the boot volume that was used to launch the preemptible instance when the instance is terminated. Defaults to false if not specified.
|
|
43848
43908
|
*/
|
|
43849
43909
|
preserveBootVolume: boolean;
|
|
43910
|
+
preserveDataVolumesCreatedAtLaunch: boolean;
|
|
43850
43911
|
privateIp: string;
|
|
43851
43912
|
publicIp: string;
|
|
43852
43913
|
/**
|
|
@@ -43988,6 +44049,41 @@ export declare namespace Core {
|
|
|
43988
44049
|
*/
|
|
43989
44050
|
remoteDataVolumeType: string;
|
|
43990
44051
|
}
|
|
44052
|
+
interface GetInstancesInstanceLaunchVolumeAttachment {
|
|
44053
|
+
device: string;
|
|
44054
|
+
/**
|
|
44055
|
+
* A filter to return only resources that match the given display name exactly.
|
|
44056
|
+
*/
|
|
44057
|
+
displayName: string;
|
|
44058
|
+
encryptionInTransitType: string;
|
|
44059
|
+
isAgentAutoIscsiLoginEnabled: boolean;
|
|
44060
|
+
isReadOnly: boolean;
|
|
44061
|
+
isShareable: boolean;
|
|
44062
|
+
launchCreateVolumeDetails: outputs.Core.GetInstancesInstanceLaunchVolumeAttachmentLaunchCreateVolumeDetail[];
|
|
44063
|
+
/**
|
|
44064
|
+
* (Required) The type of action to run when the instance is interrupted for eviction.
|
|
44065
|
+
*/
|
|
44066
|
+
type: string;
|
|
44067
|
+
useChap: boolean;
|
|
44068
|
+
volumeId: string;
|
|
44069
|
+
}
|
|
44070
|
+
interface GetInstancesInstanceLaunchVolumeAttachmentLaunchCreateVolumeDetail {
|
|
44071
|
+
/**
|
|
44072
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
|
44073
|
+
*/
|
|
44074
|
+
compartmentId: string;
|
|
44075
|
+
/**
|
|
44076
|
+
* A filter to return only resources that match the given display name exactly.
|
|
44077
|
+
*/
|
|
44078
|
+
displayName: string;
|
|
44079
|
+
/**
|
|
44080
|
+
* The OCID of the Vault service key to assign as the master encryption key for the boot volume.
|
|
44081
|
+
*/
|
|
44082
|
+
kmsKeyId: string;
|
|
44083
|
+
sizeInGbs: string;
|
|
44084
|
+
volumeCreationType: string;
|
|
44085
|
+
vpusPerGb: string;
|
|
44086
|
+
}
|
|
43991
44087
|
interface GetInstancesInstancePlatformConfig {
|
|
43992
44088
|
/**
|
|
43993
44089
|
* Whether virtualization instructions are available.
|
|
@@ -49356,7 +49452,7 @@ export declare namespace Core {
|
|
|
49356
49452
|
[key: string]: any;
|
|
49357
49453
|
};
|
|
49358
49454
|
/**
|
|
49359
|
-
*
|
|
49455
|
+
* A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
|
49360
49456
|
*/
|
|
49361
49457
|
displayName: string;
|
|
49362
49458
|
/**
|
|
@@ -49442,6 +49538,76 @@ export declare namespace Core {
|
|
|
49442
49538
|
*/
|
|
49443
49539
|
remoteDataVolumeType: string;
|
|
49444
49540
|
}
|
|
49541
|
+
interface InstanceLaunchVolumeAttachment {
|
|
49542
|
+
/**
|
|
49543
|
+
* The device name. To retrieve a list of devices for a given instance, see [ListInstanceDevices](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Device/ListInstanceDevices).
|
|
49544
|
+
*/
|
|
49545
|
+
device: string;
|
|
49546
|
+
/**
|
|
49547
|
+
* A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
|
49548
|
+
*/
|
|
49549
|
+
displayName: string;
|
|
49550
|
+
/**
|
|
49551
|
+
* Refer the top-level definition of encryptionInTransitType. The default value is NONE.
|
|
49552
|
+
*/
|
|
49553
|
+
encryptionInTransitType: string;
|
|
49554
|
+
/**
|
|
49555
|
+
* Whether to enable Oracle Cloud Agent to perform the iSCSI login and logout commands after the volume attach or detach operations for non multipath-enabled iSCSI attachments.
|
|
49556
|
+
*/
|
|
49557
|
+
isAgentAutoIscsiLoginEnabled: boolean;
|
|
49558
|
+
/**
|
|
49559
|
+
* Whether the attachment was created in read-only mode.
|
|
49560
|
+
*/
|
|
49561
|
+
isReadOnly: boolean;
|
|
49562
|
+
/**
|
|
49563
|
+
* Whether the attachment should be created in shareable mode. If an attachment is created in shareable mode, then other instances can attach the same volume, provided that they also create their attachments in shareable mode. Only certain volume types can be attached in shareable mode. Defaults to false if not specified.
|
|
49564
|
+
*/
|
|
49565
|
+
isShareable: boolean;
|
|
49566
|
+
/**
|
|
49567
|
+
* Define a volume that will be created and attached or attached to an instance on creation.
|
|
49568
|
+
*/
|
|
49569
|
+
launchCreateVolumeDetails: outputs.Core.InstanceLaunchVolumeAttachmentLaunchCreateVolumeDetails;
|
|
49570
|
+
/**
|
|
49571
|
+
* The type of action to run when the instance is interrupted for eviction.
|
|
49572
|
+
*/
|
|
49573
|
+
type: string;
|
|
49574
|
+
/**
|
|
49575
|
+
* Whether to use CHAP authentication for the volume attachment. Defaults to false.
|
|
49576
|
+
*/
|
|
49577
|
+
useChap: boolean;
|
|
49578
|
+
/**
|
|
49579
|
+
* The OCID of the volume. If CreateVolumeDetails is specified, this field must be omitted from the request.
|
|
49580
|
+
*/
|
|
49581
|
+
volumeId: string;
|
|
49582
|
+
}
|
|
49583
|
+
interface InstanceLaunchVolumeAttachmentLaunchCreateVolumeDetails {
|
|
49584
|
+
/**
|
|
49585
|
+
* (Updatable) The OCID of the compartment containing images to search
|
|
49586
|
+
*/
|
|
49587
|
+
compartmentId: string;
|
|
49588
|
+
/**
|
|
49589
|
+
* A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
|
49590
|
+
*/
|
|
49591
|
+
displayName: string;
|
|
49592
|
+
/**
|
|
49593
|
+
* The OCID of the Vault service key to assign as the master encryption key for the boot volume.
|
|
49594
|
+
*/
|
|
49595
|
+
kmsKeyId: string;
|
|
49596
|
+
/**
|
|
49597
|
+
* The size of the volume in GBs.
|
|
49598
|
+
*/
|
|
49599
|
+
sizeInGbs: string;
|
|
49600
|
+
/**
|
|
49601
|
+
* Specifies the method for volume creation.
|
|
49602
|
+
*/
|
|
49603
|
+
volumeCreationType: string;
|
|
49604
|
+
/**
|
|
49605
|
+
* The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See [Block Volume Performance Levels](https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/blockvolumeperformance.htm#perf_levels) for more information.
|
|
49606
|
+
*
|
|
49607
|
+
* Allowed values:
|
|
49608
|
+
*/
|
|
49609
|
+
vpusPerGb: string;
|
|
49610
|
+
}
|
|
49445
49611
|
interface InstancePlatformConfig {
|
|
49446
49612
|
/**
|
|
49447
49613
|
* Whether virtualization instructions are available. For example, Secure Virtual Machine for AMD shapes or VT-x for Intel shapes.
|
|
@@ -187663,6 +187829,30 @@ export declare namespace Opsi {
|
|
|
187663
187829
|
* Supported resources for capacity planning content type.
|
|
187664
187830
|
*/
|
|
187665
187831
|
capacityPlanningResources: string[];
|
|
187832
|
+
/**
|
|
187833
|
+
* Supported resources for SQL insights - fleet analysis content type.
|
|
187834
|
+
*/
|
|
187835
|
+
sqlInsightsFleetAnalysisResources: string[];
|
|
187836
|
+
/**
|
|
187837
|
+
* Supported resources for SQL insights - performance degradation content type.
|
|
187838
|
+
*/
|
|
187839
|
+
sqlInsightsPerformanceDegradationResources: string[];
|
|
187840
|
+
/**
|
|
187841
|
+
* Supported resources for SQL insights - plan changes content type.
|
|
187842
|
+
*/
|
|
187843
|
+
sqlInsightsPlanChangesResources: string[];
|
|
187844
|
+
/**
|
|
187845
|
+
* Supported resources for SQL insights - top databases content type.
|
|
187846
|
+
*/
|
|
187847
|
+
sqlInsightsTopDatabasesResources: string[];
|
|
187848
|
+
/**
|
|
187849
|
+
* Supported resources for SQL insights - top SQL by insights content type.
|
|
187850
|
+
*/
|
|
187851
|
+
sqlInsightsTopSqlByInsightsResources: string[];
|
|
187852
|
+
/**
|
|
187853
|
+
* Supported resources for SQL insights - top SQL content type.
|
|
187854
|
+
*/
|
|
187855
|
+
sqlInsightsTopSqlResources: string[];
|
|
187666
187856
|
}
|
|
187667
187857
|
interface GetNewsReportsFilter {
|
|
187668
187858
|
/**
|
|
@@ -187676,6 +187866,10 @@ export declare namespace Opsi {
|
|
|
187676
187866
|
items: outputs.Opsi.GetNewsReportsNewsReportCollectionItem[];
|
|
187677
187867
|
}
|
|
187678
187868
|
interface GetNewsReportsNewsReportCollectionItem {
|
|
187869
|
+
/**
|
|
187870
|
+
* A flag to consider the resources within a given compartment and all sub-compartments.
|
|
187871
|
+
*/
|
|
187872
|
+
areChildCompartmentsIncluded: boolean;
|
|
187679
187873
|
/**
|
|
187680
187874
|
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
|
187681
187875
|
*/
|
|
@@ -187684,6 +187878,10 @@ export declare namespace Opsi {
|
|
|
187684
187878
|
* Content types that the news report can handle.
|
|
187685
187879
|
*/
|
|
187686
187880
|
contentTypes: outputs.Opsi.GetNewsReportsNewsReportCollectionItemContentType[];
|
|
187881
|
+
/**
|
|
187882
|
+
* Day of the week in which the news report will be sent if the frequency is set to WEEKLY.
|
|
187883
|
+
*/
|
|
187884
|
+
dayOfWeek: string;
|
|
187687
187885
|
/**
|
|
187688
187886
|
* Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
|
187689
187887
|
*/
|
|
@@ -187752,6 +187950,30 @@ export declare namespace Opsi {
|
|
|
187752
187950
|
* Supported resources for capacity planning content type.
|
|
187753
187951
|
*/
|
|
187754
187952
|
capacityPlanningResources: string[];
|
|
187953
|
+
/**
|
|
187954
|
+
* Supported resources for SQL insights - fleet analysis content type.
|
|
187955
|
+
*/
|
|
187956
|
+
sqlInsightsFleetAnalysisResources: string[];
|
|
187957
|
+
/**
|
|
187958
|
+
* Supported resources for SQL insights - performance degradation content type.
|
|
187959
|
+
*/
|
|
187960
|
+
sqlInsightsPerformanceDegradationResources: string[];
|
|
187961
|
+
/**
|
|
187962
|
+
* Supported resources for SQL insights - plan changes content type.
|
|
187963
|
+
*/
|
|
187964
|
+
sqlInsightsPlanChangesResources: string[];
|
|
187965
|
+
/**
|
|
187966
|
+
* Supported resources for SQL insights - top databases content type.
|
|
187967
|
+
*/
|
|
187968
|
+
sqlInsightsTopDatabasesResources: string[];
|
|
187969
|
+
/**
|
|
187970
|
+
* Supported resources for SQL insights - top SQL by insights content type.
|
|
187971
|
+
*/
|
|
187972
|
+
sqlInsightsTopSqlByInsightsResources: string[];
|
|
187973
|
+
/**
|
|
187974
|
+
* Supported resources for SQL insights - top SQL content type.
|
|
187975
|
+
*/
|
|
187976
|
+
sqlInsightsTopSqlResources: string[];
|
|
187755
187977
|
}
|
|
187756
187978
|
interface GetOperationsInsightsPrivateEndpointsFilter {
|
|
187757
187979
|
name: string;
|
|
@@ -188320,6 +188542,30 @@ export declare namespace Opsi {
|
|
|
188320
188542
|
* (Updatable) Supported resources for capacity planning content type.
|
|
188321
188543
|
*/
|
|
188322
188544
|
capacityPlanningResources: string[];
|
|
188545
|
+
/**
|
|
188546
|
+
* (Updatable) Supported resources for SQL insights - fleet analysis content type.
|
|
188547
|
+
*/
|
|
188548
|
+
sqlInsightsFleetAnalysisResources: string[];
|
|
188549
|
+
/**
|
|
188550
|
+
* (Updatable) Supported resources for SQL insights - performance degradation content type.
|
|
188551
|
+
*/
|
|
188552
|
+
sqlInsightsPerformanceDegradationResources: string[];
|
|
188553
|
+
/**
|
|
188554
|
+
* (Updatable) Supported resources for SQL insights - plan changes content type.
|
|
188555
|
+
*/
|
|
188556
|
+
sqlInsightsPlanChangesResources: string[];
|
|
188557
|
+
/**
|
|
188558
|
+
* (Updatable) Supported resources for SQL insights - top databases content type.
|
|
188559
|
+
*/
|
|
188560
|
+
sqlInsightsTopDatabasesResources: string[];
|
|
188561
|
+
/**
|
|
188562
|
+
* (Updatable) Supported resources for SQL insights - top SQL by insights content type.
|
|
188563
|
+
*/
|
|
188564
|
+
sqlInsightsTopSqlByInsightsResources: string[];
|
|
188565
|
+
/**
|
|
188566
|
+
* (Updatable) Supported resources for SQL insights - top SQL content type.
|
|
188567
|
+
*/
|
|
188568
|
+
sqlInsightsTopSqlResources: string[];
|
|
188323
188569
|
}
|
|
188324
188570
|
interface OpsiConfigurationConfigItem {
|
|
188325
188571
|
/**
|