@pulumi/oci 4.3.1 → 4.4.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/core/vcn.d.ts +6 -6
- package/package.json +2 -2
- package/types/input.d.ts +1 -0
- package/types/output.d.ts +1 -0
package/core/vcn.d.ts
CHANGED
|
@@ -117,7 +117,7 @@ export declare class Vcn extends pulumi.CustomResource {
|
|
|
117
117
|
* (Updatable) The list of one or more IPv4 CIDR blocks for the VCN that meet the following criteria:
|
|
118
118
|
* * The CIDR blocks must be valid.
|
|
119
119
|
* * They must not overlap with each other or with the on-premises network CIDR block.
|
|
120
|
-
* * The number of CIDR blocks must not exceed the limit of CIDR blocks allowed per VCN. It is an error to set both cidrBlock and
|
|
120
|
+
* * The number of CIDR blocks must not exceed the limit of CIDR blocks allowed per VCN. It is an error to set both cidrBlock and cidrBlocks. Note: cidrBlocks update must be restricted to one operation at a time (either add/remove or modify one single cidr_block) or the operation will be declined. new cidrBlock to be added must be placed at the end of the list. Once you migrate to using `cidrBlocks` from `cidrBlock`, you will not be able to switch back.
|
|
121
121
|
* **Important:** Do *not* specify a value for `cidrBlock`. Use this parameter instead.
|
|
122
122
|
*/
|
|
123
123
|
readonly cidrBlocks: pulumi.Output<string[]>;
|
|
@@ -172,7 +172,7 @@ export declare class Vcn extends pulumi.CustomResource {
|
|
|
172
172
|
* * Multiple CIDR blocks must not overlap each other or the on-premises network prefix.
|
|
173
173
|
* * The number of CIDR blocks must not exceed the limit of IPv6 prefixes allowed to a VCN.
|
|
174
174
|
*
|
|
175
|
-
* **Important:** Do *not* specify a value for `
|
|
175
|
+
* **Important:** Do *not* specify a value for `ipv6CidrBlock`. Use this parameter instead.
|
|
176
176
|
*/
|
|
177
177
|
readonly ipv6privateCidrBlocks: pulumi.Output<string[]>;
|
|
178
178
|
/**
|
|
@@ -233,7 +233,7 @@ export interface VcnState {
|
|
|
233
233
|
* (Updatable) The list of one or more IPv4 CIDR blocks for the VCN that meet the following criteria:
|
|
234
234
|
* * The CIDR blocks must be valid.
|
|
235
235
|
* * They must not overlap with each other or with the on-premises network CIDR block.
|
|
236
|
-
* * The number of CIDR blocks must not exceed the limit of CIDR blocks allowed per VCN. It is an error to set both cidrBlock and
|
|
236
|
+
* * The number of CIDR blocks must not exceed the limit of CIDR blocks allowed per VCN. It is an error to set both cidrBlock and cidrBlocks. Note: cidrBlocks update must be restricted to one operation at a time (either add/remove or modify one single cidr_block) or the operation will be declined. new cidrBlock to be added must be placed at the end of the list. Once you migrate to using `cidrBlocks` from `cidrBlock`, you will not be able to switch back.
|
|
237
237
|
* **Important:** Do *not* specify a value for `cidrBlock`. Use this parameter instead.
|
|
238
238
|
*/
|
|
239
239
|
cidrBlocks?: pulumi.Input<pulumi.Input<string>[]>;
|
|
@@ -288,7 +288,7 @@ export interface VcnState {
|
|
|
288
288
|
* * Multiple CIDR blocks must not overlap each other or the on-premises network prefix.
|
|
289
289
|
* * The number of CIDR blocks must not exceed the limit of IPv6 prefixes allowed to a VCN.
|
|
290
290
|
*
|
|
291
|
-
* **Important:** Do *not* specify a value for `
|
|
291
|
+
* **Important:** Do *not* specify a value for `ipv6CidrBlock`. Use this parameter instead.
|
|
292
292
|
*/
|
|
293
293
|
ipv6privateCidrBlocks?: pulumi.Input<pulumi.Input<string>[]>;
|
|
294
294
|
/**
|
|
@@ -337,7 +337,7 @@ export interface VcnArgs {
|
|
|
337
337
|
* (Updatable) The list of one or more IPv4 CIDR blocks for the VCN that meet the following criteria:
|
|
338
338
|
* * The CIDR blocks must be valid.
|
|
339
339
|
* * They must not overlap with each other or with the on-premises network CIDR block.
|
|
340
|
-
* * The number of CIDR blocks must not exceed the limit of CIDR blocks allowed per VCN. It is an error to set both cidrBlock and
|
|
340
|
+
* * The number of CIDR blocks must not exceed the limit of CIDR blocks allowed per VCN. It is an error to set both cidrBlock and cidrBlocks. Note: cidrBlocks update must be restricted to one operation at a time (either add/remove or modify one single cidr_block) or the operation will be declined. new cidrBlock to be added must be placed at the end of the list. Once you migrate to using `cidrBlocks` from `cidrBlock`, you will not be able to switch back.
|
|
341
341
|
* **Important:** Do *not* specify a value for `cidrBlock`. Use this parameter instead.
|
|
342
342
|
*/
|
|
343
343
|
cidrBlocks?: pulumi.Input<pulumi.Input<string>[]>;
|
|
@@ -376,7 +376,7 @@ export interface VcnArgs {
|
|
|
376
376
|
* * Multiple CIDR blocks must not overlap each other or the on-premises network prefix.
|
|
377
377
|
* * The number of CIDR blocks must not exceed the limit of IPv6 prefixes allowed to a VCN.
|
|
378
378
|
*
|
|
379
|
-
* **Important:** Do *not* specify a value for `
|
|
379
|
+
* **Important:** Do *not* specify a value for `ipv6CidrBlock`. Use this parameter instead.
|
|
380
380
|
*/
|
|
381
381
|
ipv6privateCidrBlocks?: pulumi.Input<pulumi.Input<string>[]>;
|
|
382
382
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/oci",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.4.0",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Oracle Cloud Infrastructure resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -25,6 +25,6 @@
|
|
|
25
25
|
"pulumi": {
|
|
26
26
|
"resource": true,
|
|
27
27
|
"name": "oci",
|
|
28
|
-
"version": "4.
|
|
28
|
+
"version": "4.4.0"
|
|
29
29
|
}
|
|
30
30
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -17282,6 +17282,7 @@ export declare namespace Core {
|
|
|
17282
17282
|
interface VcnByoipv6cidrDetail {
|
|
17283
17283
|
/**
|
|
17284
17284
|
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the `ByoipRange` resource to which the CIDR block belongs.
|
|
17285
|
+
* * **DRIFT DETECTION:** When detecting drift, the range ID value is unknown and will display as `(known after apply)`. This can be safely ignored, as drift resolution will proceed without issues.
|
|
17285
17286
|
*/
|
|
17286
17287
|
byoipv6rangeId: pulumi.Input<string>;
|
|
17287
17288
|
/**
|
package/types/output.d.ts
CHANGED
|
@@ -59705,6 +59705,7 @@ export declare namespace Core {
|
|
|
59705
59705
|
interface VcnByoipv6cidrDetail {
|
|
59706
59706
|
/**
|
|
59707
59707
|
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the `ByoipRange` resource to which the CIDR block belongs.
|
|
59708
|
+
* * **DRIFT DETECTION:** When detecting drift, the range ID value is unknown and will display as `(known after apply)`. This can be safely ignored, as drift resolution will proceed without issues.
|
|
59708
59709
|
*/
|
|
59709
59710
|
byoipv6rangeId: string;
|
|
59710
59711
|
/**
|