@kengachu-pulumi/azure-native-virtualmachineimages 2.8.3 → 2.11.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/package.json +3 -4
- package/prepublish.sh +5 -0
- package/types/enums.d.ts +9 -0
- package/types/enums.js +1 -1
- package/v20220701/types/enums.d.ts +9 -0
- package/v20220701/types/enums.js +1 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@kengachu-pulumi/azure-native-virtualmachineimages",
|
3
|
-
"version": "2.
|
3
|
+
"version": "2.11.0",
|
4
4
|
"description": "Pulumi Azure Native package for virtualmachineimages",
|
5
5
|
"keywords": [
|
6
6
|
"pulumi",
|
@@ -16,7 +16,7 @@
|
|
16
16
|
},
|
17
17
|
"dependencies": {
|
18
18
|
"@pulumi/pulumi": "^3.0.0",
|
19
|
-
"@kengachu-pulumi/azure-native-core": "^2.
|
19
|
+
"@kengachu-pulumi/azure-native-core": "^2.11.0"
|
20
20
|
},
|
21
21
|
"publishConfig": {
|
22
22
|
"access": "public"
|
@@ -27,7 +27,6 @@
|
|
27
27
|
},
|
28
28
|
"scripts": {
|
29
29
|
"build": "tsc",
|
30
|
-
"lint": "tsc --noEmit"
|
31
|
-
"prepublish": "test -f index.js"
|
30
|
+
"lint": "tsc --noEmit"
|
32
31
|
}
|
33
32
|
}
|
package/prepublish.sh
ADDED
package/types/enums.d.ts
CHANGED
@@ -2,15 +2,24 @@ export declare const ResourceIdentityType: {
|
|
2
2
|
readonly UserAssigned: "UserAssigned";
|
3
3
|
readonly None: "None";
|
4
4
|
};
|
5
|
+
/**
|
6
|
+
* The type of identity used for the image template. The type 'None' will remove any identities from the image template.
|
7
|
+
*/
|
5
8
|
export type ResourceIdentityType = (typeof ResourceIdentityType)[keyof typeof ResourceIdentityType];
|
6
9
|
export declare const SharedImageStorageAccountType: {
|
7
10
|
readonly Standard_LRS: "Standard_LRS";
|
8
11
|
readonly Standard_ZRS: "Standard_ZRS";
|
9
12
|
readonly Premium_LRS: "Premium_LRS";
|
10
13
|
};
|
14
|
+
/**
|
15
|
+
* Specifies the storage account type to be used to store the image in this region. Omit to use the default (Standard_LRS).
|
16
|
+
*/
|
11
17
|
export type SharedImageStorageAccountType = (typeof SharedImageStorageAccountType)[keyof typeof SharedImageStorageAccountType];
|
12
18
|
export declare const VMBootOptimizationState: {
|
13
19
|
readonly Enabled: "Enabled";
|
14
20
|
readonly Disabled: "Disabled";
|
15
21
|
};
|
22
|
+
/**
|
23
|
+
* Enabling this field will improve VM boot time by optimizing the final customized image output.
|
24
|
+
*/
|
16
25
|
export type VMBootOptimizationState = (typeof VMBootOptimizationState)[keyof typeof VMBootOptimizationState];
|
package/types/enums.js
CHANGED
@@ -14,4 +14,4 @@ exports.VMBootOptimizationState = {
|
|
14
14
|
Enabled: "Enabled",
|
15
15
|
Disabled: "Disabled",
|
16
16
|
};
|
17
|
-
//# sourceMappingURL=data:application/json;base64,
|
17
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW51bXMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyJlbnVtcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBYSxRQUFBLG9CQUFvQixHQUFHO0lBQ2hDLFlBQVksRUFBRSxjQUFjO0lBQzVCLElBQUksRUFBRSxNQUFNO0NBQ04sQ0FBQztBQU9FLFFBQUEsNkJBQTZCLEdBQUc7SUFDekMsWUFBWSxFQUFFLGNBQWM7SUFDNUIsWUFBWSxFQUFFLGNBQWM7SUFDNUIsV0FBVyxFQUFFLGFBQWE7Q0FDcEIsQ0FBQztBQU9FLFFBQUEsdUJBQXVCLEdBQUc7SUFDbkMsT0FBTyxFQUFFLFNBQVM7SUFDbEIsUUFBUSxFQUFFLFVBQVU7Q0FDZCxDQUFDIn0=
|
@@ -2,15 +2,24 @@ export declare const ResourceIdentityType: {
|
|
2
2
|
readonly UserAssigned: "UserAssigned";
|
3
3
|
readonly None: "None";
|
4
4
|
};
|
5
|
+
/**
|
6
|
+
* The type of identity used for the image template. The type 'None' will remove any identities from the image template.
|
7
|
+
*/
|
5
8
|
export type ResourceIdentityType = (typeof ResourceIdentityType)[keyof typeof ResourceIdentityType];
|
6
9
|
export declare const SharedImageStorageAccountType: {
|
7
10
|
readonly Standard_LRS: "Standard_LRS";
|
8
11
|
readonly Standard_ZRS: "Standard_ZRS";
|
9
12
|
readonly Premium_LRS: "Premium_LRS";
|
10
13
|
};
|
14
|
+
/**
|
15
|
+
* Specifies the storage account type to be used to store the image in this region. Omit to use the default (Standard_LRS).
|
16
|
+
*/
|
11
17
|
export type SharedImageStorageAccountType = (typeof SharedImageStorageAccountType)[keyof typeof SharedImageStorageAccountType];
|
12
18
|
export declare const VMBootOptimizationState: {
|
13
19
|
readonly Enabled: "Enabled";
|
14
20
|
readonly Disabled: "Disabled";
|
15
21
|
};
|
22
|
+
/**
|
23
|
+
* Enabling this field will improve VM boot time by optimizing the final customized image output.
|
24
|
+
*/
|
16
25
|
export type VMBootOptimizationState = (typeof VMBootOptimizationState)[keyof typeof VMBootOptimizationState];
|
package/v20220701/types/enums.js
CHANGED
@@ -14,4 +14,4 @@ exports.VMBootOptimizationState = {
|
|
14
14
|
Enabled: "Enabled",
|
15
15
|
Disabled: "Disabled",
|
16
16
|
};
|
17
|
-
//# sourceMappingURL=data:application/json;base64,
|
17
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW51bXMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyJlbnVtcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBYSxRQUFBLG9CQUFvQixHQUFHO0lBQ2hDLFlBQVksRUFBRSxjQUFjO0lBQzVCLElBQUksRUFBRSxNQUFNO0NBQ04sQ0FBQztBQU9FLFFBQUEsNkJBQTZCLEdBQUc7SUFDekMsWUFBWSxFQUFFLGNBQWM7SUFDNUIsWUFBWSxFQUFFLGNBQWM7SUFDNUIsV0FBVyxFQUFFLGFBQWE7Q0FDcEIsQ0FBQztBQU9FLFFBQUEsdUJBQXVCLEdBQUc7SUFDbkMsT0FBTyxFQUFFLFNBQVM7SUFDbEIsUUFBUSxFQUFFLFVBQVU7Q0FDZCxDQUFDIn0=
|