@pulumi/oci 3.3.0-alpha.1752697833 → 3.3.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/addon.d.ts +1 -1
- package/package.json +2 -2
- package/types/output.d.ts +1 -1
|
@@ -73,7 +73,7 @@ export declare class Addon extends pulumi.CustomResource {
|
|
|
73
73
|
* ** IMPORTANT **
|
|
74
74
|
* Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
|
75
75
|
*/
|
|
76
|
-
readonly version: pulumi.Output<string>;
|
|
76
|
+
readonly version: pulumi.Output<string | undefined>;
|
|
77
77
|
/**
|
|
78
78
|
* Create a Addon resource with the given unique name, arguments, and options.
|
|
79
79
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/oci",
|
|
3
|
-
"version": "3.3.0
|
|
3
|
+
"version": "3.3.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": "3.3.0
|
|
28
|
+
"version": "3.3.0"
|
|
29
29
|
}
|
|
30
30
|
}
|
package/types/output.d.ts
CHANGED
|
@@ -37463,7 +37463,7 @@ export declare namespace ContainerEngine {
|
|
|
37463
37463
|
/**
|
|
37464
37464
|
* selected addon version, or null indicates autoUpdate
|
|
37465
37465
|
*/
|
|
37466
|
-
version
|
|
37466
|
+
version?: string;
|
|
37467
37467
|
}
|
|
37468
37468
|
interface GetAddonsAddonAddonError {
|
|
37469
37469
|
/**
|