@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.
@@ -16,11 +16,19 @@ import * as outputs from "../types/output";
16
16
  * compartmentId: _var.compartment_id,
17
17
  * contentTypes: {
18
18
  * capacityPlanningResources: _var.news_report_content_types_capacity_planning_resources,
19
+ * sqlInsightsFleetAnalysisResources: _var.news_report_content_types_sql_insights_fleet_analysis_resources,
20
+ * sqlInsightsPerformanceDegradationResources: _var.news_report_content_types_sql_insights_performance_degradation_resources,
21
+ * sqlInsightsPlanChangesResources: _var.news_report_content_types_sql_insights_plan_changes_resources,
22
+ * sqlInsightsTopDatabasesResources: _var.news_report_content_types_sql_insights_top_databases_resources,
23
+ * sqlInsightsTopSqlByInsightsResources: _var.news_report_content_types_sql_insights_top_sql_by_insights_resources,
24
+ * sqlInsightsTopSqlResources: _var.news_report_content_types_sql_insights_top_sql_resources,
19
25
  * },
20
26
  * description: _var.news_report_description,
21
27
  * locale: _var.news_report_locale,
22
28
  * newsFrequency: _var.news_report_news_frequency,
23
29
  * onsTopicId: oci_opsi_ons_topic.test_ons_topic.id,
30
+ * areChildCompartmentsIncluded: _var.news_report_are_child_compartments_included,
31
+ * dayOfWeek: _var.news_report_day_of_week,
24
32
  * definedTags: {
25
33
  * "foo-namespace.bar-key": "value",
26
34
  * },
@@ -55,6 +63,10 @@ export declare class NewsReport extends pulumi.CustomResource {
55
63
  * when multiple copies of the Pulumi SDK have been loaded into the same process.
56
64
  */
57
65
  static isInstance(obj: any): obj is NewsReport;
66
+ /**
67
+ * (Updatable) A flag to consider the resources within a given compartment and all sub-compartments.
68
+ */
69
+ readonly areChildCompartmentsIncluded: pulumi.Output<boolean>;
58
70
  /**
59
71
  * (Updatable) Compartment Identifier where the news report will be created.
60
72
  */
@@ -63,6 +75,10 @@ export declare class NewsReport extends pulumi.CustomResource {
63
75
  * (Updatable) Content types that the news report can handle.
64
76
  */
65
77
  readonly contentTypes: pulumi.Output<outputs.Opsi.NewsReportContentTypes>;
78
+ /**
79
+ * (Updatable) Day of the week in which the news report will be sent if the frequency is set to WEEKLY.
80
+ */
81
+ readonly dayOfWeek: pulumi.Output<string>;
66
82
  /**
67
83
  * (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
68
84
  */
@@ -70,7 +86,7 @@ export declare class NewsReport extends pulumi.CustomResource {
70
86
  [key: string]: any;
71
87
  }>;
72
88
  /**
73
- * The description of the news report.
89
+ * (Updatable) The description of the news report.
74
90
  */
75
91
  readonly description: pulumi.Output<string>;
76
92
  /**
@@ -88,7 +104,7 @@ export declare class NewsReport extends pulumi.CustomResource {
88
104
  */
89
105
  readonly locale: pulumi.Output<string>;
90
106
  /**
91
- * The news report name.
107
+ * (Updatable) The news report name.
92
108
  */
93
109
  readonly name: pulumi.Output<string>;
94
110
  /**
@@ -138,6 +154,10 @@ export declare class NewsReport extends pulumi.CustomResource {
138
154
  * Input properties used for looking up and filtering NewsReport resources.
139
155
  */
140
156
  export interface NewsReportState {
157
+ /**
158
+ * (Updatable) A flag to consider the resources within a given compartment and all sub-compartments.
159
+ */
160
+ areChildCompartmentsIncluded?: pulumi.Input<boolean>;
141
161
  /**
142
162
  * (Updatable) Compartment Identifier where the news report will be created.
143
163
  */
@@ -146,6 +166,10 @@ export interface NewsReportState {
146
166
  * (Updatable) Content types that the news report can handle.
147
167
  */
148
168
  contentTypes?: pulumi.Input<inputs.Opsi.NewsReportContentTypes>;
169
+ /**
170
+ * (Updatable) Day of the week in which the news report will be sent if the frequency is set to WEEKLY.
171
+ */
172
+ dayOfWeek?: pulumi.Input<string>;
149
173
  /**
150
174
  * (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
151
175
  */
@@ -153,7 +177,7 @@ export interface NewsReportState {
153
177
  [key: string]: any;
154
178
  }>;
155
179
  /**
156
- * The description of the news report.
180
+ * (Updatable) The description of the news report.
157
181
  */
158
182
  description?: pulumi.Input<string>;
159
183
  /**
@@ -171,7 +195,7 @@ export interface NewsReportState {
171
195
  */
172
196
  locale?: pulumi.Input<string>;
173
197
  /**
174
- * The news report name.
198
+ * (Updatable) The news report name.
175
199
  */
176
200
  name?: pulumi.Input<string>;
177
201
  /**
@@ -213,6 +237,10 @@ export interface NewsReportState {
213
237
  * The set of arguments for constructing a NewsReport resource.
214
238
  */
215
239
  export interface NewsReportArgs {
240
+ /**
241
+ * (Updatable) A flag to consider the resources within a given compartment and all sub-compartments.
242
+ */
243
+ areChildCompartmentsIncluded?: pulumi.Input<boolean>;
216
244
  /**
217
245
  * (Updatable) Compartment Identifier where the news report will be created.
218
246
  */
@@ -221,6 +249,10 @@ export interface NewsReportArgs {
221
249
  * (Updatable) Content types that the news report can handle.
222
250
  */
223
251
  contentTypes: pulumi.Input<inputs.Opsi.NewsReportContentTypes>;
252
+ /**
253
+ * (Updatable) Day of the week in which the news report will be sent if the frequency is set to WEEKLY.
254
+ */
255
+ dayOfWeek?: pulumi.Input<string>;
224
256
  /**
225
257
  * (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
226
258
  */
@@ -228,7 +260,7 @@ export interface NewsReportArgs {
228
260
  [key: string]: any;
229
261
  }>;
230
262
  /**
231
- * The description of the news report.
263
+ * (Updatable) The description of the news report.
232
264
  */
233
265
  description: pulumi.Input<string>;
234
266
  /**
@@ -242,7 +274,7 @@ export interface NewsReportArgs {
242
274
  */
243
275
  locale: pulumi.Input<string>;
244
276
  /**
245
- * The news report name.
277
+ * (Updatable) The news report name.
246
278
  */
247
279
  name?: pulumi.Input<string>;
248
280
  /**
@@ -20,11 +20,19 @@ const utilities = require("../utilities");
20
20
  * compartmentId: _var.compartment_id,
21
21
  * contentTypes: {
22
22
  * capacityPlanningResources: _var.news_report_content_types_capacity_planning_resources,
23
+ * sqlInsightsFleetAnalysisResources: _var.news_report_content_types_sql_insights_fleet_analysis_resources,
24
+ * sqlInsightsPerformanceDegradationResources: _var.news_report_content_types_sql_insights_performance_degradation_resources,
25
+ * sqlInsightsPlanChangesResources: _var.news_report_content_types_sql_insights_plan_changes_resources,
26
+ * sqlInsightsTopDatabasesResources: _var.news_report_content_types_sql_insights_top_databases_resources,
27
+ * sqlInsightsTopSqlByInsightsResources: _var.news_report_content_types_sql_insights_top_sql_by_insights_resources,
28
+ * sqlInsightsTopSqlResources: _var.news_report_content_types_sql_insights_top_sql_resources,
23
29
  * },
24
30
  * description: _var.news_report_description,
25
31
  * locale: _var.news_report_locale,
26
32
  * newsFrequency: _var.news_report_news_frequency,
27
33
  * onsTopicId: oci_opsi_ons_topic.test_ons_topic.id,
34
+ * areChildCompartmentsIncluded: _var.news_report_are_child_compartments_included,
35
+ * dayOfWeek: _var.news_report_day_of_week,
28
36
  * definedTags: {
29
37
  * "foo-namespace.bar-key": "value",
30
38
  * },
@@ -71,8 +79,10 @@ class NewsReport extends pulumi.CustomResource {
71
79
  opts = opts || {};
72
80
  if (opts.id) {
73
81
  const state = argsOrState;
82
+ resourceInputs["areChildCompartmentsIncluded"] = state ? state.areChildCompartmentsIncluded : undefined;
74
83
  resourceInputs["compartmentId"] = state ? state.compartmentId : undefined;
75
84
  resourceInputs["contentTypes"] = state ? state.contentTypes : undefined;
85
+ resourceInputs["dayOfWeek"] = state ? state.dayOfWeek : undefined;
76
86
  resourceInputs["definedTags"] = state ? state.definedTags : undefined;
77
87
  resourceInputs["description"] = state ? state.description : undefined;
78
88
  resourceInputs["freeformTags"] = state ? state.freeformTags : undefined;
@@ -107,8 +117,10 @@ class NewsReport extends pulumi.CustomResource {
107
117
  if ((!args || args.onsTopicId === undefined) && !opts.urn) {
108
118
  throw new Error("Missing required property 'onsTopicId'");
109
119
  }
120
+ resourceInputs["areChildCompartmentsIncluded"] = args ? args.areChildCompartmentsIncluded : undefined;
110
121
  resourceInputs["compartmentId"] = args ? args.compartmentId : undefined;
111
122
  resourceInputs["contentTypes"] = args ? args.contentTypes : undefined;
123
+ resourceInputs["dayOfWeek"] = args ? args.dayOfWeek : undefined;
112
124
  resourceInputs["definedTags"] = args ? args.definedTags : undefined;
113
125
  resourceInputs["description"] = args ? args.description : undefined;
114
126
  resourceInputs["freeformTags"] = args ? args.freeformTags : undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"newsReport.js","sourceRoot":"","sources":["../../opsi/newsReport.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"newsReport.js","sourceRoot":"","sources":["../../opsi/newsReport.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/oci",
3
- "version": "v1.25.0",
3
+ "version": "v1.26.0",
4
4
  "description": "A Pulumi package for creating and managing Oracle Cloud Infrastructure resources.",
5
5
  "keywords": [
6
6
  "pulumi",
package/types/input.d.ts CHANGED
@@ -10050,6 +10050,10 @@ export declare namespace ContainerEngine {
10050
10050
  vcpusLimit?: pulumi.Input<number>;
10051
10051
  }
10052
10052
  interface ContainerInstanceContainerSecurityContext {
10053
+ /**
10054
+ * Linux Container capabilities to configure capabilities of container.
10055
+ */
10056
+ capabilities?: pulumi.Input<inputs.ContainerEngine.ContainerInstanceContainerSecurityContextCapabilities>;
10053
10057
  /**
10054
10058
  * 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.
10055
10059
  */
@@ -10071,6 +10075,16 @@ export declare namespace ContainerEngine {
10071
10075
  */
10072
10076
  securityContextType?: pulumi.Input<string>;
10073
10077
  }
10078
+ interface ContainerInstanceContainerSecurityContextCapabilities {
10079
+ /**
10080
+ * A list of additional configurable container capabilities.
10081
+ */
10082
+ addCapabilities?: pulumi.Input<pulumi.Input<string>[]>;
10083
+ /**
10084
+ * A list of container capabilities that can be dropped.
10085
+ */
10086
+ dropCapabilities?: pulumi.Input<pulumi.Input<string>[]>;
10087
+ }
10074
10088
  interface ContainerInstanceContainerVolumeMount {
10075
10089
  /**
10076
10090
  * Whether the volume was mounted in read-only mode. By default, the volume is not read-only.
@@ -14183,7 +14197,7 @@ export declare namespace Core {
14183
14197
  [key: string]: any;
14184
14198
  }>;
14185
14199
  /**
14186
- * (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
14200
+ * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
14187
14201
  */
14188
14202
  displayName?: pulumi.Input<string>;
14189
14203
  /**
@@ -14269,6 +14283,76 @@ export declare namespace Core {
14269
14283
  */
14270
14284
  remoteDataVolumeType?: pulumi.Input<string>;
14271
14285
  }
14286
+ interface InstanceLaunchVolumeAttachment {
14287
+ /**
14288
+ * 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).
14289
+ */
14290
+ device?: pulumi.Input<string>;
14291
+ /**
14292
+ * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
14293
+ */
14294
+ displayName?: pulumi.Input<string>;
14295
+ /**
14296
+ * Refer the top-level definition of encryptionInTransitType. The default value is NONE.
14297
+ */
14298
+ encryptionInTransitType?: pulumi.Input<string>;
14299
+ /**
14300
+ * 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.
14301
+ */
14302
+ isAgentAutoIscsiLoginEnabled?: pulumi.Input<boolean>;
14303
+ /**
14304
+ * Whether the attachment was created in read-only mode.
14305
+ */
14306
+ isReadOnly?: pulumi.Input<boolean>;
14307
+ /**
14308
+ * 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.
14309
+ */
14310
+ isShareable?: pulumi.Input<boolean>;
14311
+ /**
14312
+ * Define a volume that will be created and attached or attached to an instance on creation.
14313
+ */
14314
+ launchCreateVolumeDetails?: pulumi.Input<inputs.Core.InstanceLaunchVolumeAttachmentLaunchCreateVolumeDetails>;
14315
+ /**
14316
+ * The type of action to run when the instance is interrupted for eviction.
14317
+ */
14318
+ type: pulumi.Input<string>;
14319
+ /**
14320
+ * Whether to use CHAP authentication for the volume attachment. Defaults to false.
14321
+ */
14322
+ useChap?: pulumi.Input<boolean>;
14323
+ /**
14324
+ * The OCID of the volume. If CreateVolumeDetails is specified, this field must be omitted from the request.
14325
+ */
14326
+ volumeId?: pulumi.Input<string>;
14327
+ }
14328
+ interface InstanceLaunchVolumeAttachmentLaunchCreateVolumeDetails {
14329
+ /**
14330
+ * (Updatable) The OCID of the compartment containing images to search
14331
+ */
14332
+ compartmentId?: pulumi.Input<string>;
14333
+ /**
14334
+ * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
14335
+ */
14336
+ displayName?: pulumi.Input<string>;
14337
+ /**
14338
+ * The OCID of the Vault service key to assign as the master encryption key for the boot volume.
14339
+ */
14340
+ kmsKeyId?: pulumi.Input<string>;
14341
+ /**
14342
+ * The size of the volume in GBs.
14343
+ */
14344
+ sizeInGbs: pulumi.Input<string>;
14345
+ /**
14346
+ * Specifies the method for volume creation.
14347
+ */
14348
+ volumeCreationType: pulumi.Input<string>;
14349
+ /**
14350
+ * 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.
14351
+ *
14352
+ * Allowed values:
14353
+ */
14354
+ vpusPerGb?: pulumi.Input<string>;
14355
+ }
14272
14356
  interface InstancePlatformConfig {
14273
14357
  /**
14274
14358
  * Whether virtualization instructions are available. For example, Secure Virtual Machine for AMD shapes or VT-x for Intel shapes.
@@ -64618,7 +64702,31 @@ export declare namespace Opsi {
64618
64702
  /**
64619
64703
  * (Updatable) Supported resources for capacity planning content type.
64620
64704
  */
64621
- capacityPlanningResources: pulumi.Input<pulumi.Input<string>[]>;
64705
+ capacityPlanningResources?: pulumi.Input<pulumi.Input<string>[]>;
64706
+ /**
64707
+ * (Updatable) Supported resources for SQL insights - fleet analysis content type.
64708
+ */
64709
+ sqlInsightsFleetAnalysisResources?: pulumi.Input<pulumi.Input<string>[]>;
64710
+ /**
64711
+ * (Updatable) Supported resources for SQL insights - performance degradation content type.
64712
+ */
64713
+ sqlInsightsPerformanceDegradationResources?: pulumi.Input<pulumi.Input<string>[]>;
64714
+ /**
64715
+ * (Updatable) Supported resources for SQL insights - plan changes content type.
64716
+ */
64717
+ sqlInsightsPlanChangesResources?: pulumi.Input<pulumi.Input<string>[]>;
64718
+ /**
64719
+ * (Updatable) Supported resources for SQL insights - top databases content type.
64720
+ */
64721
+ sqlInsightsTopDatabasesResources?: pulumi.Input<pulumi.Input<string>[]>;
64722
+ /**
64723
+ * (Updatable) Supported resources for SQL insights - top SQL by insights content type.
64724
+ */
64725
+ sqlInsightsTopSqlByInsightsResources?: pulumi.Input<pulumi.Input<string>[]>;
64726
+ /**
64727
+ * (Updatable) Supported resources for SQL insights - top SQL content type.
64728
+ */
64729
+ sqlInsightsTopSqlResources?: pulumi.Input<pulumi.Input<string>[]>;
64622
64730
  }
64623
64731
  interface OpsiConfigurationConfigItem {
64624
64732
  /**