@kengachu-pulumi/azure-native-softwareplan 2.8.3
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/README.md +13 -0
- package/getHybridUseBenefit.d.ts +69 -0
- package/getHybridUseBenefit.js +26 -0
- package/hybridUseBenefit.d.ts +77 -0
- package/hybridUseBenefit.js +77 -0
- package/index.d.ts +8 -0
- package/index.js +26 -0
- package/package.json +33 -0
- package/types/index.d.ts +2 -0
- package/types/index.js +6 -0
- package/types/input.d.ts +10 -0
- package/types/input.js +3 -0
- package/types/output.d.ts +9 -0
- package/types/output.js +3 -0
- package/v20191201/getHybridUseBenefit.d.ts +67 -0
- package/v20191201/getHybridUseBenefit.js +24 -0
- package/v20191201/hybridUseBenefit.d.ts +76 -0
- package/v20191201/hybridUseBenefit.js +76 -0
- package/v20191201/index.d.ts +6 -0
- package/v20191201/index.js +23 -0
- package/v20191201/types/index.d.ts +2 -0
- package/v20191201/types/index.js +6 -0
- package/v20191201/types/input.d.ts +10 -0
- package/v20191201/types/input.js +3 -0
- package/v20191201/types/output.d.ts +9 -0
- package/v20191201/types/output.js +3 -0
package/README.md
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# Pulumi Azure Native softwareplan sub package
|
2
|
+
|
3
|
+
This package has been generated by [Ankvi](https://github.com/Ankvi)'s [pulumi
|
4
|
+
transformer](https://github.com/Ankvi/pulumi-transformer) project.
|
5
|
+
|
6
|
+
The project splits the [Pulumi Azure Native](https://github.com/pulumi/pulumi-azure-native)
|
7
|
+
npm package into smaller, more manageable packages that won't break your TypeScript
|
8
|
+
server because of too high memory usage.
|
9
|
+
|
10
|
+
This project will not cover bugs that should be solved by Pulumi, but if there's
|
11
|
+
anything wrong with the output, feel free to raise an issue so it can be fixed as
|
12
|
+
I do not have the capacity to test out all of the features, only the ones my
|
13
|
+
team uses.
|
@@ -0,0 +1,69 @@
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
2
|
+
import * as types from "./types";
|
3
|
+
/**
|
4
|
+
* Gets a given plan ID
|
5
|
+
* Azure REST API version: 2019-12-01.
|
6
|
+
*/
|
7
|
+
export declare function getHybridUseBenefit(args: GetHybridUseBenefitArgs, opts?: pulumi.InvokeOptions): Promise<GetHybridUseBenefitResult>;
|
8
|
+
export interface GetHybridUseBenefitArgs {
|
9
|
+
/**
|
10
|
+
* This is a unique identifier for a plan. Should be a guid.
|
11
|
+
*/
|
12
|
+
planId: string;
|
13
|
+
/**
|
14
|
+
* The scope at which the operation is performed. This is limited to Microsoft.Compute/virtualMachines and Microsoft.Compute/hostGroups/hosts for now
|
15
|
+
*/
|
16
|
+
scope: string;
|
17
|
+
}
|
18
|
+
/**
|
19
|
+
* Response on GET of a hybrid use benefit
|
20
|
+
*/
|
21
|
+
export interface GetHybridUseBenefitResult {
|
22
|
+
/**
|
23
|
+
* Created date
|
24
|
+
*/
|
25
|
+
readonly createdDate: string;
|
26
|
+
/**
|
27
|
+
* Indicates the revision of the hybrid use benefit
|
28
|
+
*/
|
29
|
+
readonly etag: number;
|
30
|
+
/**
|
31
|
+
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
32
|
+
*/
|
33
|
+
readonly id: string;
|
34
|
+
/**
|
35
|
+
* Last updated date
|
36
|
+
*/
|
37
|
+
readonly lastUpdatedDate: string;
|
38
|
+
/**
|
39
|
+
* The name of the resource
|
40
|
+
*/
|
41
|
+
readonly name: string;
|
42
|
+
/**
|
43
|
+
* Provisioning state
|
44
|
+
*/
|
45
|
+
readonly provisioningState: string;
|
46
|
+
/**
|
47
|
+
* Hybrid use benefit SKU
|
48
|
+
*/
|
49
|
+
readonly sku: types.outputs.SkuResponse;
|
50
|
+
/**
|
51
|
+
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
52
|
+
*/
|
53
|
+
readonly type: string;
|
54
|
+
}
|
55
|
+
/**
|
56
|
+
* Gets a given plan ID
|
57
|
+
* Azure REST API version: 2019-12-01.
|
58
|
+
*/
|
59
|
+
export declare function getHybridUseBenefitOutput(args: GetHybridUseBenefitOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetHybridUseBenefitResult>;
|
60
|
+
export interface GetHybridUseBenefitOutputArgs {
|
61
|
+
/**
|
62
|
+
* This is a unique identifier for a plan. Should be a guid.
|
63
|
+
*/
|
64
|
+
planId: pulumi.Input<string>;
|
65
|
+
/**
|
66
|
+
* The scope at which the operation is performed. This is limited to Microsoft.Compute/virtualMachines and Microsoft.Compute/hostGroups/hosts for now
|
67
|
+
*/
|
68
|
+
scope: pulumi.Input<string>;
|
69
|
+
}
|
@@ -0,0 +1,26 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.getHybridUseBenefitOutput = exports.getHybridUseBenefit = void 0;
|
4
|
+
const pulumi = require("@pulumi/pulumi");
|
5
|
+
const utilities = require("@kengachu-pulumi/azure-native-core/utilities");
|
6
|
+
/**
|
7
|
+
* Gets a given plan ID
|
8
|
+
* Azure REST API version: 2019-12-01.
|
9
|
+
*/
|
10
|
+
function getHybridUseBenefit(args, opts) {
|
11
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
12
|
+
return pulumi.runtime.invoke("azure-native:softwareplan:getHybridUseBenefit", {
|
13
|
+
"planId": args.planId,
|
14
|
+
"scope": args.scope,
|
15
|
+
}, opts);
|
16
|
+
}
|
17
|
+
exports.getHybridUseBenefit = getHybridUseBenefit;
|
18
|
+
/**
|
19
|
+
* Gets a given plan ID
|
20
|
+
* Azure REST API version: 2019-12-01.
|
21
|
+
*/
|
22
|
+
function getHybridUseBenefitOutput(args, opts) {
|
23
|
+
return pulumi.output(args).apply((a) => getHybridUseBenefit(a, opts));
|
24
|
+
}
|
25
|
+
exports.getHybridUseBenefitOutput = getHybridUseBenefitOutput;
|
26
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2V0SHlicmlkVXNlQmVuZWZpdC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbImdldEh5YnJpZFVzZUJlbmVmaXQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBQUEseUNBQXlDO0FBQ3pDLDBFQUEwRTtBQUUxRTs7O0dBR0c7QUFDSCxTQUFnQixtQkFBbUIsQ0FBQyxJQUE2QixFQUFFLElBQTJCO0lBRTFGLElBQUksR0FBRyxNQUFNLENBQUMsWUFBWSxDQUFDLFNBQVMsQ0FBQyxvQkFBb0IsRUFBRSxFQUFFLElBQUksSUFBSSxFQUFFLENBQUMsQ0FBQztJQUN6RSxPQUFPLE1BQU0sQ0FBQyxPQUFPLENBQUMsTUFBTSxDQUFDLCtDQUErQyxFQUFFO1FBQzFFLFFBQVEsRUFBRSxJQUFJLENBQUMsTUFBTTtRQUNyQixPQUFPLEVBQUUsSUFBSSxDQUFDLEtBQUs7S0FDdEIsRUFBRSxJQUFJLENBQUMsQ0FBQztBQUNiLENBQUM7QUFQRCxrREFPQztBQWtERDs7O0dBR0c7QUFDSCxTQUFnQix5QkFBeUIsQ0FBQyxJQUFtQyxFQUFFLElBQTJCO0lBQ3RHLE9BQU8sTUFBTSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFNLEVBQUUsRUFBRSxDQUFDLG1CQUFtQixDQUFDLENBQUMsRUFBRSxJQUFJLENBQUMsQ0FBQyxDQUFBO0FBQzlFLENBQUM7QUFGRCw4REFFQyJ9
|
@@ -0,0 +1,77 @@
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
2
|
+
import * as types from "./types";
|
3
|
+
/**
|
4
|
+
* Response on GET of a hybrid use benefit
|
5
|
+
* Azure REST API version: 2019-12-01. Prior API version in Azure Native 1.x: 2019-06-01-preview
|
6
|
+
*/
|
7
|
+
export declare class HybridUseBenefit extends pulumi.CustomResource {
|
8
|
+
/**
|
9
|
+
* Get an existing HybridUseBenefit resource's state with the given name, ID, and optional extra
|
10
|
+
* properties used to qualify the lookup.
|
11
|
+
*
|
12
|
+
* @param name The _unique_ name of the resulting resource.
|
13
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
14
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
15
|
+
*/
|
16
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): HybridUseBenefit;
|
17
|
+
/** @internal */
|
18
|
+
static readonly __pulumiType = "azure-native:softwareplan:HybridUseBenefit";
|
19
|
+
/**
|
20
|
+
* Returns true if the given object is an instance of HybridUseBenefit. This is designed to work even
|
21
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
22
|
+
*/
|
23
|
+
static isInstance(obj: any): obj is HybridUseBenefit;
|
24
|
+
/**
|
25
|
+
* Created date
|
26
|
+
*/
|
27
|
+
readonly createdDate: pulumi.Output<string>;
|
28
|
+
/**
|
29
|
+
* Indicates the revision of the hybrid use benefit
|
30
|
+
*/
|
31
|
+
readonly etag: pulumi.Output<number>;
|
32
|
+
/**
|
33
|
+
* Last updated date
|
34
|
+
*/
|
35
|
+
readonly lastUpdatedDate: pulumi.Output<string>;
|
36
|
+
/**
|
37
|
+
* The name of the resource
|
38
|
+
*/
|
39
|
+
readonly name: pulumi.Output<string>;
|
40
|
+
/**
|
41
|
+
* Provisioning state
|
42
|
+
*/
|
43
|
+
readonly provisioningState: pulumi.Output<string>;
|
44
|
+
/**
|
45
|
+
* Hybrid use benefit SKU
|
46
|
+
*/
|
47
|
+
readonly sku: pulumi.Output<types.outputs.SkuResponse>;
|
48
|
+
/**
|
49
|
+
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
50
|
+
*/
|
51
|
+
readonly type: pulumi.Output<string>;
|
52
|
+
/**
|
53
|
+
* Create a HybridUseBenefit resource with the given unique name, arguments, and options.
|
54
|
+
*
|
55
|
+
* @param name The _unique_ name of the resource.
|
56
|
+
* @param args The arguments to use to populate this resource's properties.
|
57
|
+
* @param opts A bag of options that control this resource's behavior.
|
58
|
+
*/
|
59
|
+
constructor(name: string, args: HybridUseBenefitArgs, opts?: pulumi.CustomResourceOptions);
|
60
|
+
}
|
61
|
+
/**
|
62
|
+
* The set of arguments for constructing a HybridUseBenefit resource.
|
63
|
+
*/
|
64
|
+
export interface HybridUseBenefitArgs {
|
65
|
+
/**
|
66
|
+
* This is a unique identifier for a plan. Should be a guid.
|
67
|
+
*/
|
68
|
+
planId?: pulumi.Input<string>;
|
69
|
+
/**
|
70
|
+
* The scope at which the operation is performed. This is limited to Microsoft.Compute/virtualMachines and Microsoft.Compute/hostGroups/hosts for now
|
71
|
+
*/
|
72
|
+
scope: pulumi.Input<string>;
|
73
|
+
/**
|
74
|
+
* Hybrid use benefit SKU
|
75
|
+
*/
|
76
|
+
sku: pulumi.Input<types.inputs.SkuArgs>;
|
77
|
+
}
|
@@ -0,0 +1,77 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.HybridUseBenefit = void 0;
|
4
|
+
const pulumi = require("@pulumi/pulumi");
|
5
|
+
const utilities = require("@kengachu-pulumi/azure-native-core/utilities");
|
6
|
+
/**
|
7
|
+
* Response on GET of a hybrid use benefit
|
8
|
+
* Azure REST API version: 2019-12-01. Prior API version in Azure Native 1.x: 2019-06-01-preview
|
9
|
+
*/
|
10
|
+
class HybridUseBenefit extends pulumi.CustomResource {
|
11
|
+
/**
|
12
|
+
* Get an existing HybridUseBenefit resource's state with the given name, ID, and optional extra
|
13
|
+
* properties used to qualify the lookup.
|
14
|
+
*
|
15
|
+
* @param name The _unique_ name of the resulting resource.
|
16
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
17
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
18
|
+
*/
|
19
|
+
static get(name, id, opts) {
|
20
|
+
return new HybridUseBenefit(name, undefined, Object.assign(Object.assign({}, opts), { id: id }));
|
21
|
+
}
|
22
|
+
/**
|
23
|
+
* Returns true if the given object is an instance of HybridUseBenefit. This is designed to work even
|
24
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
25
|
+
*/
|
26
|
+
static isInstance(obj) {
|
27
|
+
if (obj === undefined || obj === null) {
|
28
|
+
return false;
|
29
|
+
}
|
30
|
+
return obj['__pulumiType'] === HybridUseBenefit.__pulumiType;
|
31
|
+
}
|
32
|
+
/**
|
33
|
+
* Create a HybridUseBenefit resource with the given unique name, arguments, and options.
|
34
|
+
*
|
35
|
+
* @param name The _unique_ name of the resource.
|
36
|
+
* @param args The arguments to use to populate this resource's properties.
|
37
|
+
* @param opts A bag of options that control this resource's behavior.
|
38
|
+
*/
|
39
|
+
constructor(name, args, opts) {
|
40
|
+
let resourceInputs = {};
|
41
|
+
opts = opts || {};
|
42
|
+
if (!opts.id) {
|
43
|
+
if ((!args || args.scope === undefined) && !opts.urn) {
|
44
|
+
throw new Error("Missing required property 'scope'");
|
45
|
+
}
|
46
|
+
if ((!args || args.sku === undefined) && !opts.urn) {
|
47
|
+
throw new Error("Missing required property 'sku'");
|
48
|
+
}
|
49
|
+
resourceInputs["planId"] = args ? args.planId : undefined;
|
50
|
+
resourceInputs["scope"] = args ? args.scope : undefined;
|
51
|
+
resourceInputs["sku"] = args ? args.sku : undefined;
|
52
|
+
resourceInputs["createdDate"] = undefined /*out*/;
|
53
|
+
resourceInputs["etag"] = undefined /*out*/;
|
54
|
+
resourceInputs["lastUpdatedDate"] = undefined /*out*/;
|
55
|
+
resourceInputs["name"] = undefined /*out*/;
|
56
|
+
resourceInputs["provisioningState"] = undefined /*out*/;
|
57
|
+
resourceInputs["type"] = undefined /*out*/;
|
58
|
+
}
|
59
|
+
else {
|
60
|
+
resourceInputs["createdDate"] = undefined /*out*/;
|
61
|
+
resourceInputs["etag"] = undefined /*out*/;
|
62
|
+
resourceInputs["lastUpdatedDate"] = undefined /*out*/;
|
63
|
+
resourceInputs["name"] = undefined /*out*/;
|
64
|
+
resourceInputs["provisioningState"] = undefined /*out*/;
|
65
|
+
resourceInputs["sku"] = undefined /*out*/;
|
66
|
+
resourceInputs["type"] = undefined /*out*/;
|
67
|
+
}
|
68
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
69
|
+
const aliasOpts = { aliases: [{ type: "azure-native:softwareplan/v20190601preview:HybridUseBenefit" }, { type: "azure-native:softwareplan/v20191201:HybridUseBenefit" }] };
|
70
|
+
opts = pulumi.mergeOptions(opts, aliasOpts);
|
71
|
+
super(HybridUseBenefit.__pulumiType, name, resourceInputs, opts);
|
72
|
+
}
|
73
|
+
}
|
74
|
+
exports.HybridUseBenefit = HybridUseBenefit;
|
75
|
+
/** @internal */
|
76
|
+
HybridUseBenefit.__pulumiType = 'azure-native:softwareplan:HybridUseBenefit';
|
77
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaHlicmlkVXNlQmVuZWZpdC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbImh5YnJpZFVzZUJlbmVmaXQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBQUEseUNBQXlDO0FBQ3pDLDBFQUEwRTtBQUUxRTs7O0dBR0c7QUFDSCxNQUFhLGdCQUFpQixTQUFRLE1BQU0sQ0FBQyxjQUFjO0lBQ3ZEOzs7Ozs7O09BT0c7SUFDSSxNQUFNLENBQUMsR0FBRyxDQUFDLElBQVksRUFBRSxFQUEyQixFQUFFLElBQW1DO1FBQzVGLE9BQU8sSUFBSSxnQkFBZ0IsQ0FBQyxJQUFJLEVBQUUsU0FBZ0Isa0NBQU8sSUFBSSxLQUFFLEVBQUUsRUFBRSxFQUFFLElBQUcsQ0FBQztJQUM3RSxDQUFDO0lBS0Q7OztPQUdHO0lBQ0ksTUFBTSxDQUFDLFVBQVUsQ0FBQyxHQUFRO1FBQzdCLElBQUksR0FBRyxLQUFLLFNBQVMsSUFBSSxHQUFHLEtBQUssSUFBSSxFQUFFO1lBQ25DLE9BQU8sS0FBSyxDQUFDO1NBQ2hCO1FBQ0QsT0FBTyxHQUFHLENBQUMsY0FBYyxDQUFDLEtBQUssZ0JBQWdCLENBQUMsWUFBWSxDQUFDO0lBQ2pFLENBQUM7SUErQkQ7Ozs7OztPQU1HO0lBQ0gsWUFBWSxJQUFZLEVBQUUsSUFBMEIsRUFBRSxJQUFtQztRQUNyRixJQUFJLGNBQWMsR0FBa0IsRUFBRSxDQUFDO1FBQ3ZDLElBQUksR0FBRyxJQUFJLElBQUksRUFBRSxDQUFDO1FBQ2xCLElBQUksQ0FBQyxJQUFJLENBQUMsRUFBRSxFQUFFO1lBQ1YsSUFBSSxDQUFDLENBQUMsSUFBSSxJQUFJLElBQUksQ0FBQyxLQUFLLEtBQUssU0FBUyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsR0FBRyxFQUFFO2dCQUNsRCxNQUFNLElBQUksS0FBSyxDQUFDLG1DQUFtQyxDQUFDLENBQUM7YUFDeEQ7WUFDRCxJQUFJLENBQUMsQ0FBQyxJQUFJLElBQUksSUFBSSxDQUFDLEdBQUcsS0FBSyxTQUFTLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxHQUFHLEVBQUU7Z0JBQ2hELE1BQU0sSUFBSSxLQUFLLENBQUMsaUNBQWlDLENBQUMsQ0FBQzthQUN0RDtZQUNELGNBQWMsQ0FBQyxRQUFRLENBQUMsR0FBRyxJQUFJLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLFNBQVMsQ0FBQztZQUMxRCxjQUFjLENBQUMsT0FBTyxDQUFDLEdBQUcsSUFBSSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxTQUFTLENBQUM7WUFDeEQsY0FBYyxDQUFDLEtBQUssQ0FBQyxHQUFHLElBQUksQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsU0FBUyxDQUFDO1lBQ3BELGNBQWMsQ0FBQyxhQUFhLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQ2xELGNBQWMsQ0FBQyxNQUFNLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQzNDLGNBQWMsQ0FBQyxpQkFBaUIsQ0FBQyxHQUFHLFNBQVMsQ0FBQyxPQUFPLENBQUM7WUFDdEQsY0FBYyxDQUFDLE1BQU0sQ0FBQyxHQUFHLFNBQVMsQ0FBQyxPQUFPLENBQUM7WUFDM0MsY0FBYyxDQUFDLG1CQUFtQixDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztZQUN4RCxjQUFjLENBQUMsTUFBTSxDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztTQUM5QzthQUFNO1lBQ0gsY0FBYyxDQUFDLGFBQWEsQ0FBQyxHQUFHLFNBQVMsQ0FBQyxPQUFPLENBQUM7WUFDbEQsY0FBYyxDQUFDLE1BQU0sQ0FBQyxHQUFHLFNBQVMsQ0FBQyxPQUFPLENBQUM7WUFDM0MsY0FBYyxDQUFDLGlCQUFpQixDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztZQUN0RCxjQUFjLENBQUMsTUFBTSxDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztZQUMzQyxjQUFjLENBQUMsbUJBQW1CLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQ3hELGNBQWMsQ0FBQyxLQUFLLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQzFDLGNBQWMsQ0FBQyxNQUFNLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1NBQzlDO1FBQ0QsSUFBSSxHQUFHLE1BQU0sQ0FBQyxZQUFZLENBQUMsU0FBUyxDQUFDLG9CQUFvQixFQUFFLEVBQUUsSUFBSSxDQUFDLENBQUM7UUFDbkUsTUFBTSxTQUFTLEdBQUcsRUFBRSxPQUFPLEVBQUUsQ0FBQyxFQUFFLElBQUksRUFBRSw2REFBNkQsRUFBRSxFQUFFLEVBQUUsSUFBSSxFQUFFLHNEQUFzRCxFQUFFLENBQUMsRUFBRSxDQUFDO1FBQzNLLElBQUksR0FBRyxNQUFNLENBQUMsWUFBWSxDQUFDLElBQUksRUFBRSxTQUFTLENBQUMsQ0FBQztRQUM1QyxLQUFLLENBQUMsZ0JBQWdCLENBQUMsWUFBWSxFQUFFLElBQUksRUFBRSxjQUFjLEVBQUUsSUFBSSxDQUFDLENBQUM7SUFDckUsQ0FBQzs7QUEvRkwsNENBZ0dDO0FBbkZHLGdCQUFnQjtBQUNPLDZCQUFZLEdBQUcsNENBQTRDLENBQUMifQ==
|
package/index.d.ts
ADDED
@@ -0,0 +1,8 @@
|
|
1
|
+
export { GetHybridUseBenefitArgs, GetHybridUseBenefitResult, GetHybridUseBenefitOutputArgs } from "./getHybridUseBenefit";
|
2
|
+
export declare const getHybridUseBenefit: typeof import("./getHybridUseBenefit").getHybridUseBenefit;
|
3
|
+
export declare const getHybridUseBenefitOutput: typeof import("./getHybridUseBenefit").getHybridUseBenefitOutput;
|
4
|
+
export { HybridUseBenefitArgs } from "./hybridUseBenefit";
|
5
|
+
export type HybridUseBenefit = import("./hybridUseBenefit").HybridUseBenefit;
|
6
|
+
export declare const HybridUseBenefit: typeof import("./hybridUseBenefit").HybridUseBenefit;
|
7
|
+
import * as v20191201 from "./v20191201";
|
8
|
+
export { v20191201, };
|
package/index.js
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.v20191201 = exports.HybridUseBenefit = exports.getHybridUseBenefitOutput = exports.getHybridUseBenefit = void 0;
|
4
|
+
const pulumi = require("@pulumi/pulumi");
|
5
|
+
const utilities = require("@kengachu-pulumi/azure-native-core/utilities");
|
6
|
+
exports.getHybridUseBenefit = null;
|
7
|
+
exports.getHybridUseBenefitOutput = null;
|
8
|
+
utilities.lazyLoad(exports, ["getHybridUseBenefit", "getHybridUseBenefitOutput"], () => require("./getHybridUseBenefit"));
|
9
|
+
exports.HybridUseBenefit = null;
|
10
|
+
utilities.lazyLoad(exports, ["HybridUseBenefit"], () => require("./hybridUseBenefit"));
|
11
|
+
// Export sub-modules:
|
12
|
+
const v20191201 = require("./v20191201");
|
13
|
+
exports.v20191201 = v20191201;
|
14
|
+
const _module = {
|
15
|
+
version: utilities.getVersion(),
|
16
|
+
construct: (name, type, urn) => {
|
17
|
+
switch (type) {
|
18
|
+
case "azure-native:softwareplan:HybridUseBenefit":
|
19
|
+
return new exports.HybridUseBenefit(name, undefined, { urn });
|
20
|
+
default:
|
21
|
+
throw new Error(`unknown resource type ${type}`);
|
22
|
+
}
|
23
|
+
},
|
24
|
+
};
|
25
|
+
pulumi.runtime.registerResourceModule("azure-native", "softwareplan", _module);
|
26
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyJpbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBQSx5Q0FBeUM7QUFDekMsMEVBQTBFO0FBRzdELFFBQUEsbUJBQW1CLEdBQStELElBQVcsQ0FBQztBQUM5RixRQUFBLHlCQUF5QixHQUFxRSxJQUFXLENBQUM7QUFDdkgsU0FBUyxDQUFDLFFBQVEsQ0FBQyxPQUFPLEVBQUUsQ0FBQyxxQkFBcUIsRUFBQywyQkFBMkIsQ0FBQyxFQUFFLEdBQUcsRUFBRSxDQUFDLE9BQU8sQ0FBQyx1QkFBdUIsQ0FBQyxDQUFDLENBQUM7QUFJNUcsUUFBQSxnQkFBZ0IsR0FBeUQsSUFBVyxDQUFDO0FBQ2xHLFNBQVMsQ0FBQyxRQUFRLENBQUMsT0FBTyxFQUFFLENBQUMsa0JBQWtCLENBQUMsRUFBRSxHQUFHLEVBQUUsQ0FBQyxPQUFPLENBQUMsb0JBQW9CLENBQUMsQ0FBQyxDQUFDO0FBR3ZGLHNCQUFzQjtBQUN0Qix5Q0FBeUM7QUFHckMsOEJBQVM7QUFHYixNQUFNLE9BQU8sR0FBRztJQUNaLE9BQU8sRUFBRSxTQUFTLENBQUMsVUFBVSxFQUFFO0lBQy9CLFNBQVMsRUFBRSxDQUFDLElBQVksRUFBRSxJQUFZLEVBQUUsR0FBVyxFQUFtQixFQUFFO1FBQ3BFLFFBQVEsSUFBSSxFQUFFO1lBQ1YsS0FBSyw0Q0FBNEM7Z0JBQzdDLE9BQU8sSUFBSSx3QkFBZ0IsQ0FBQyxJQUFJLEVBQU8sU0FBUyxFQUFFLEVBQUUsR0FBRyxFQUFFLENBQUMsQ0FBQTtZQUM5RDtnQkFDSSxNQUFNLElBQUksS0FBSyxDQUFDLHlCQUF5QixJQUFJLEVBQUUsQ0FBQyxDQUFDO1NBQ3hEO0lBQ0wsQ0FBQztDQUNKLENBQUM7QUFDRixNQUFNLENBQUMsT0FBTyxDQUFDLHNCQUFzQixDQUFDLGNBQWMsRUFBRSxjQUFjLEVBQUUsT0FBTyxDQUFDLENBQUEifQ==
|
package/package.json
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
{
|
2
|
+
"name": "@kengachu-pulumi/azure-native-softwareplan",
|
3
|
+
"version": "2.8.3",
|
4
|
+
"description": "Pulumi Azure Native package for softwareplan",
|
5
|
+
"keywords": [
|
6
|
+
"pulumi",
|
7
|
+
"azure",
|
8
|
+
"azure-native",
|
9
|
+
"category/cloud",
|
10
|
+
"kind/native"
|
11
|
+
],
|
12
|
+
"homepage": "https://pulumi.com",
|
13
|
+
"repository": {
|
14
|
+
"url": "git+https://github.com/Ankvi/pulumi-azure-native.git",
|
15
|
+
"type": "git"
|
16
|
+
},
|
17
|
+
"dependencies": {
|
18
|
+
"@pulumi/pulumi": "^3.0.0",
|
19
|
+
"@kengachu-pulumi/azure-native-core": "^2.8.3"
|
20
|
+
},
|
21
|
+
"publishConfig": {
|
22
|
+
"access": "public"
|
23
|
+
},
|
24
|
+
"devDependencies": {
|
25
|
+
"typescript": "^5.0.0",
|
26
|
+
"@types/node": "^20.0.0"
|
27
|
+
},
|
28
|
+
"scripts": {
|
29
|
+
"build": "tsc",
|
30
|
+
"lint": "tsc --noEmit",
|
31
|
+
"prepublish": "test -f index.js"
|
32
|
+
}
|
33
|
+
}
|
package/types/index.d.ts
ADDED
package/types/index.js
ADDED
@@ -0,0 +1,6 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.outputs = exports.inputs = void 0;
|
4
|
+
exports.inputs = require("./input");
|
5
|
+
exports.outputs = require("./output");
|
6
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyJpbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBQSxvQ0FBa0M7QUFDbEMsc0NBQW9DIn0=
|
package/types/input.d.ts
ADDED
package/types/input.js
ADDED
package/types/output.js
ADDED
@@ -0,0 +1,67 @@
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
2
|
+
import * as types from "./types";
|
3
|
+
/**
|
4
|
+
* Gets a given plan ID
|
5
|
+
*/
|
6
|
+
export declare function getHybridUseBenefit(args: GetHybridUseBenefitArgs, opts?: pulumi.InvokeOptions): Promise<GetHybridUseBenefitResult>;
|
7
|
+
export interface GetHybridUseBenefitArgs {
|
8
|
+
/**
|
9
|
+
* This is a unique identifier for a plan. Should be a guid.
|
10
|
+
*/
|
11
|
+
planId: string;
|
12
|
+
/**
|
13
|
+
* The scope at which the operation is performed. This is limited to Microsoft.Compute/virtualMachines and Microsoft.Compute/hostGroups/hosts for now
|
14
|
+
*/
|
15
|
+
scope: string;
|
16
|
+
}
|
17
|
+
/**
|
18
|
+
* Response on GET of a hybrid use benefit
|
19
|
+
*/
|
20
|
+
export interface GetHybridUseBenefitResult {
|
21
|
+
/**
|
22
|
+
* Created date
|
23
|
+
*/
|
24
|
+
readonly createdDate: string;
|
25
|
+
/**
|
26
|
+
* Indicates the revision of the hybrid use benefit
|
27
|
+
*/
|
28
|
+
readonly etag: number;
|
29
|
+
/**
|
30
|
+
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
31
|
+
*/
|
32
|
+
readonly id: string;
|
33
|
+
/**
|
34
|
+
* Last updated date
|
35
|
+
*/
|
36
|
+
readonly lastUpdatedDate: string;
|
37
|
+
/**
|
38
|
+
* The name of the resource
|
39
|
+
*/
|
40
|
+
readonly name: string;
|
41
|
+
/**
|
42
|
+
* Provisioning state
|
43
|
+
*/
|
44
|
+
readonly provisioningState: string;
|
45
|
+
/**
|
46
|
+
* Hybrid use benefit SKU
|
47
|
+
*/
|
48
|
+
readonly sku: types.outputs.SkuResponse;
|
49
|
+
/**
|
50
|
+
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
51
|
+
*/
|
52
|
+
readonly type: string;
|
53
|
+
}
|
54
|
+
/**
|
55
|
+
* Gets a given plan ID
|
56
|
+
*/
|
57
|
+
export declare function getHybridUseBenefitOutput(args: GetHybridUseBenefitOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetHybridUseBenefitResult>;
|
58
|
+
export interface GetHybridUseBenefitOutputArgs {
|
59
|
+
/**
|
60
|
+
* This is a unique identifier for a plan. Should be a guid.
|
61
|
+
*/
|
62
|
+
planId: pulumi.Input<string>;
|
63
|
+
/**
|
64
|
+
* The scope at which the operation is performed. This is limited to Microsoft.Compute/virtualMachines and Microsoft.Compute/hostGroups/hosts for now
|
65
|
+
*/
|
66
|
+
scope: pulumi.Input<string>;
|
67
|
+
}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.getHybridUseBenefitOutput = exports.getHybridUseBenefit = void 0;
|
4
|
+
const pulumi = require("@pulumi/pulumi");
|
5
|
+
const utilities = require("@kengachu-pulumi/azure-native-core/utilities");
|
6
|
+
/**
|
7
|
+
* Gets a given plan ID
|
8
|
+
*/
|
9
|
+
function getHybridUseBenefit(args, opts) {
|
10
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
11
|
+
return pulumi.runtime.invoke("azure-native:softwareplan/v20191201:getHybridUseBenefit", {
|
12
|
+
"planId": args.planId,
|
13
|
+
"scope": args.scope,
|
14
|
+
}, opts);
|
15
|
+
}
|
16
|
+
exports.getHybridUseBenefit = getHybridUseBenefit;
|
17
|
+
/**
|
18
|
+
* Gets a given plan ID
|
19
|
+
*/
|
20
|
+
function getHybridUseBenefitOutput(args, opts) {
|
21
|
+
return pulumi.output(args).apply((a) => getHybridUseBenefit(a, opts));
|
22
|
+
}
|
23
|
+
exports.getHybridUseBenefitOutput = getHybridUseBenefitOutput;
|
24
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2V0SHlicmlkVXNlQmVuZWZpdC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbImdldEh5YnJpZFVzZUJlbmVmaXQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBQUEseUNBQXlDO0FBQ3pDLDBFQUEwRTtBQUUxRTs7R0FFRztBQUNILFNBQWdCLG1CQUFtQixDQUFDLElBQTZCLEVBQUUsSUFBMkI7SUFFMUYsSUFBSSxHQUFHLE1BQU0sQ0FBQyxZQUFZLENBQUMsU0FBUyxDQUFDLG9CQUFvQixFQUFFLEVBQUUsSUFBSSxJQUFJLEVBQUUsQ0FBQyxDQUFDO0lBQ3pFLE9BQU8sTUFBTSxDQUFDLE9BQU8sQ0FBQyxNQUFNLENBQUMseURBQXlELEVBQUU7UUFDcEYsUUFBUSxFQUFFLElBQUksQ0FBQyxNQUFNO1FBQ3JCLE9BQU8sRUFBRSxJQUFJLENBQUMsS0FBSztLQUN0QixFQUFFLElBQUksQ0FBQyxDQUFDO0FBQ2IsQ0FBQztBQVBELGtEQU9DO0FBa0REOztHQUVHO0FBQ0gsU0FBZ0IseUJBQXlCLENBQUMsSUFBbUMsRUFBRSxJQUEyQjtJQUN0RyxPQUFPLE1BQU0sQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBTSxFQUFFLEVBQUUsQ0FBQyxtQkFBbUIsQ0FBQyxDQUFDLEVBQUUsSUFBSSxDQUFDLENBQUMsQ0FBQTtBQUM5RSxDQUFDO0FBRkQsOERBRUMifQ==
|
@@ -0,0 +1,76 @@
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
2
|
+
import * as types from "./types";
|
3
|
+
/**
|
4
|
+
* Response on GET of a hybrid use benefit
|
5
|
+
*/
|
6
|
+
export declare class HybridUseBenefit extends pulumi.CustomResource {
|
7
|
+
/**
|
8
|
+
* Get an existing HybridUseBenefit resource's state with the given name, ID, and optional extra
|
9
|
+
* properties used to qualify the lookup.
|
10
|
+
*
|
11
|
+
* @param name The _unique_ name of the resulting resource.
|
12
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
13
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
14
|
+
*/
|
15
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): HybridUseBenefit;
|
16
|
+
/** @internal */
|
17
|
+
static readonly __pulumiType = "azure-native:softwareplan/v20191201:HybridUseBenefit";
|
18
|
+
/**
|
19
|
+
* Returns true if the given object is an instance of HybridUseBenefit. This is designed to work even
|
20
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
21
|
+
*/
|
22
|
+
static isInstance(obj: any): obj is HybridUseBenefit;
|
23
|
+
/**
|
24
|
+
* Created date
|
25
|
+
*/
|
26
|
+
readonly createdDate: pulumi.Output<string>;
|
27
|
+
/**
|
28
|
+
* Indicates the revision of the hybrid use benefit
|
29
|
+
*/
|
30
|
+
readonly etag: pulumi.Output<number>;
|
31
|
+
/**
|
32
|
+
* Last updated date
|
33
|
+
*/
|
34
|
+
readonly lastUpdatedDate: pulumi.Output<string>;
|
35
|
+
/**
|
36
|
+
* The name of the resource
|
37
|
+
*/
|
38
|
+
readonly name: pulumi.Output<string>;
|
39
|
+
/**
|
40
|
+
* Provisioning state
|
41
|
+
*/
|
42
|
+
readonly provisioningState: pulumi.Output<string>;
|
43
|
+
/**
|
44
|
+
* Hybrid use benefit SKU
|
45
|
+
*/
|
46
|
+
readonly sku: pulumi.Output<types.outputs.SkuResponse>;
|
47
|
+
/**
|
48
|
+
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
49
|
+
*/
|
50
|
+
readonly type: pulumi.Output<string>;
|
51
|
+
/**
|
52
|
+
* Create a HybridUseBenefit resource with the given unique name, arguments, and options.
|
53
|
+
*
|
54
|
+
* @param name The _unique_ name of the resource.
|
55
|
+
* @param args The arguments to use to populate this resource's properties.
|
56
|
+
* @param opts A bag of options that control this resource's behavior.
|
57
|
+
*/
|
58
|
+
constructor(name: string, args: HybridUseBenefitArgs, opts?: pulumi.CustomResourceOptions);
|
59
|
+
}
|
60
|
+
/**
|
61
|
+
* The set of arguments for constructing a HybridUseBenefit resource.
|
62
|
+
*/
|
63
|
+
export interface HybridUseBenefitArgs {
|
64
|
+
/**
|
65
|
+
* This is a unique identifier for a plan. Should be a guid.
|
66
|
+
*/
|
67
|
+
planId?: pulumi.Input<string>;
|
68
|
+
/**
|
69
|
+
* The scope at which the operation is performed. This is limited to Microsoft.Compute/virtualMachines and Microsoft.Compute/hostGroups/hosts for now
|
70
|
+
*/
|
71
|
+
scope: pulumi.Input<string>;
|
72
|
+
/**
|
73
|
+
* Hybrid use benefit SKU
|
74
|
+
*/
|
75
|
+
sku: pulumi.Input<types.inputs.SkuArgs>;
|
76
|
+
}
|
@@ -0,0 +1,76 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.HybridUseBenefit = void 0;
|
4
|
+
const pulumi = require("@pulumi/pulumi");
|
5
|
+
const utilities = require("@kengachu-pulumi/azure-native-core/utilities");
|
6
|
+
/**
|
7
|
+
* Response on GET of a hybrid use benefit
|
8
|
+
*/
|
9
|
+
class HybridUseBenefit extends pulumi.CustomResource {
|
10
|
+
/**
|
11
|
+
* Get an existing HybridUseBenefit resource's state with the given name, ID, and optional extra
|
12
|
+
* properties used to qualify the lookup.
|
13
|
+
*
|
14
|
+
* @param name The _unique_ name of the resulting resource.
|
15
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
16
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
17
|
+
*/
|
18
|
+
static get(name, id, opts) {
|
19
|
+
return new HybridUseBenefit(name, undefined, Object.assign(Object.assign({}, opts), { id: id }));
|
20
|
+
}
|
21
|
+
/**
|
22
|
+
* Returns true if the given object is an instance of HybridUseBenefit. This is designed to work even
|
23
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
24
|
+
*/
|
25
|
+
static isInstance(obj) {
|
26
|
+
if (obj === undefined || obj === null) {
|
27
|
+
return false;
|
28
|
+
}
|
29
|
+
return obj['__pulumiType'] === HybridUseBenefit.__pulumiType;
|
30
|
+
}
|
31
|
+
/**
|
32
|
+
* Create a HybridUseBenefit resource with the given unique name, arguments, and options.
|
33
|
+
*
|
34
|
+
* @param name The _unique_ name of the resource.
|
35
|
+
* @param args The arguments to use to populate this resource's properties.
|
36
|
+
* @param opts A bag of options that control this resource's behavior.
|
37
|
+
*/
|
38
|
+
constructor(name, args, opts) {
|
39
|
+
let resourceInputs = {};
|
40
|
+
opts = opts || {};
|
41
|
+
if (!opts.id) {
|
42
|
+
if ((!args || args.scope === undefined) && !opts.urn) {
|
43
|
+
throw new Error("Missing required property 'scope'");
|
44
|
+
}
|
45
|
+
if ((!args || args.sku === undefined) && !opts.urn) {
|
46
|
+
throw new Error("Missing required property 'sku'");
|
47
|
+
}
|
48
|
+
resourceInputs["planId"] = args ? args.planId : undefined;
|
49
|
+
resourceInputs["scope"] = args ? args.scope : undefined;
|
50
|
+
resourceInputs["sku"] = args ? args.sku : undefined;
|
51
|
+
resourceInputs["createdDate"] = undefined /*out*/;
|
52
|
+
resourceInputs["etag"] = undefined /*out*/;
|
53
|
+
resourceInputs["lastUpdatedDate"] = undefined /*out*/;
|
54
|
+
resourceInputs["name"] = undefined /*out*/;
|
55
|
+
resourceInputs["provisioningState"] = undefined /*out*/;
|
56
|
+
resourceInputs["type"] = undefined /*out*/;
|
57
|
+
}
|
58
|
+
else {
|
59
|
+
resourceInputs["createdDate"] = undefined /*out*/;
|
60
|
+
resourceInputs["etag"] = undefined /*out*/;
|
61
|
+
resourceInputs["lastUpdatedDate"] = undefined /*out*/;
|
62
|
+
resourceInputs["name"] = undefined /*out*/;
|
63
|
+
resourceInputs["provisioningState"] = undefined /*out*/;
|
64
|
+
resourceInputs["sku"] = undefined /*out*/;
|
65
|
+
resourceInputs["type"] = undefined /*out*/;
|
66
|
+
}
|
67
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
68
|
+
const aliasOpts = { aliases: [{ type: "azure-native:softwareplan:HybridUseBenefit" }, { type: "azure-native:softwareplan/v20190601preview:HybridUseBenefit" }] };
|
69
|
+
opts = pulumi.mergeOptions(opts, aliasOpts);
|
70
|
+
super(HybridUseBenefit.__pulumiType, name, resourceInputs, opts);
|
71
|
+
}
|
72
|
+
}
|
73
|
+
exports.HybridUseBenefit = HybridUseBenefit;
|
74
|
+
/** @internal */
|
75
|
+
HybridUseBenefit.__pulumiType = 'azure-native:softwareplan/v20191201:HybridUseBenefit';
|
76
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaHlicmlkVXNlQmVuZWZpdC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbImh5YnJpZFVzZUJlbmVmaXQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBQUEseUNBQXlDO0FBQ3pDLDBFQUEwRTtBQUUxRTs7R0FFRztBQUNILE1BQWEsZ0JBQWlCLFNBQVEsTUFBTSxDQUFDLGNBQWM7SUFDdkQ7Ozs7Ozs7T0FPRztJQUNJLE1BQU0sQ0FBQyxHQUFHLENBQUMsSUFBWSxFQUFFLEVBQTJCLEVBQUUsSUFBbUM7UUFDNUYsT0FBTyxJQUFJLGdCQUFnQixDQUFDLElBQUksRUFBRSxTQUFnQixrQ0FBTyxJQUFJLEtBQUUsRUFBRSxFQUFFLEVBQUUsSUFBRyxDQUFDO0lBQzdFLENBQUM7SUFLRDs7O09BR0c7SUFDSSxNQUFNLENBQUMsVUFBVSxDQUFDLEdBQVE7UUFDN0IsSUFBSSxHQUFHLEtBQUssU0FBUyxJQUFJLEdBQUcsS0FBSyxJQUFJLEVBQUU7WUFDbkMsT0FBTyxLQUFLLENBQUM7U0FDaEI7UUFDRCxPQUFPLEdBQUcsQ0FBQyxjQUFjLENBQUMsS0FBSyxnQkFBZ0IsQ0FBQyxZQUFZLENBQUM7SUFDakUsQ0FBQztJQStCRDs7Ozs7O09BTUc7SUFDSCxZQUFZLElBQVksRUFBRSxJQUEwQixFQUFFLElBQW1DO1FBQ3JGLElBQUksY0FBYyxHQUFrQixFQUFFLENBQUM7UUFDdkMsSUFBSSxHQUFHLElBQUksSUFBSSxFQUFFLENBQUM7UUFDbEIsSUFBSSxDQUFDLElBQUksQ0FBQyxFQUFFLEVBQUU7WUFDVixJQUFJLENBQUMsQ0FBQyxJQUFJLElBQUksSUFBSSxDQUFDLEtBQUssS0FBSyxTQUFTLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxHQUFHLEVBQUU7Z0JBQ2xELE1BQU0sSUFBSSxLQUFLLENBQUMsbUNBQW1DLENBQUMsQ0FBQzthQUN4RDtZQUNELElBQUksQ0FBQyxDQUFDLElBQUksSUFBSSxJQUFJLENBQUMsR0FBRyxLQUFLLFNBQVMsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLEdBQUcsRUFBRTtnQkFDaEQsTUFBTSxJQUFJLEtBQUssQ0FBQyxpQ0FBaUMsQ0FBQyxDQUFDO2FBQ3REO1lBQ0QsY0FBYyxDQUFDLFFBQVEsQ0FBQyxHQUFHLElBQUksQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUMsU0FBUyxDQUFDO1lBQzFELGNBQWMsQ0FBQyxPQUFPLENBQUMsR0FBRyxJQUFJLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLFNBQVMsQ0FBQztZQUN4RCxjQUFjLENBQUMsS0FBSyxDQUFDLEdBQUcsSUFBSSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxTQUFTLENBQUM7WUFDcEQsY0FBYyxDQUFDLGFBQWEsQ0FBQyxHQUFHLFNBQVMsQ0FBQyxPQUFPLENBQUM7WUFDbEQsY0FBYyxDQUFDLE1BQU0sQ0FBQyxHQUFHLFNBQVMsQ0FBQyxPQUFPLENBQUM7WUFDM0MsY0FBYyxDQUFDLGlCQUFpQixDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztZQUN0RCxjQUFjLENBQUMsTUFBTSxDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztZQUMzQyxjQUFjLENBQUMsbUJBQW1CLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQ3hELGNBQWMsQ0FBQyxNQUFNLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1NBQzlDO2FBQU07WUFDSCxjQUFjLENBQUMsYUFBYSxDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztZQUNsRCxjQUFjLENBQUMsTUFBTSxDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztZQUMzQyxjQUFjLENBQUMsaUJBQWlCLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQ3RELGNBQWMsQ0FBQyxNQUFNLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQzNDLGNBQWMsQ0FBQyxtQkFBbUIsQ0FBQyxHQUFHLFNBQVMsQ0FBQyxPQUFPLENBQUM7WUFDeEQsY0FBYyxDQUFDLEtBQUssQ0FBQyxHQUFHLFNBQVMsQ0FBQyxPQUFPLENBQUM7WUFDMUMsY0FBYyxDQUFDLE1BQU0sQ0FBQyxHQUFHLFNBQVMsQ0FBQyxPQUFPLENBQUM7U0FDOUM7UUFDRCxJQUFJLEdBQUcsTUFBTSxDQUFDLFlBQVksQ0FBQyxTQUFTLENBQUMsb0JBQW9CLEVBQUUsRUFBRSxJQUFJLENBQUMsQ0FBQztRQUNuRSxNQUFNLFNBQVMsR0FBRyxFQUFFLE9BQU8sRUFBRSxDQUFDLEVBQUUsSUFBSSxFQUFFLDRDQUE0QyxFQUFFLEVBQUUsRUFBRSxJQUFJLEVBQUUsNkRBQTZELEVBQUUsQ0FBQyxFQUFFLENBQUM7UUFDakssSUFBSSxHQUFHLE1BQU0sQ0FBQyxZQUFZLENBQUMsSUFBSSxFQUFFLFNBQVMsQ0FBQyxDQUFDO1FBQzVDLEtBQUssQ0FBQyxnQkFBZ0IsQ0FBQyxZQUFZLEVBQUUsSUFBSSxFQUFFLGNBQWMsRUFBRSxJQUFJLENBQUMsQ0FBQztJQUNyRSxDQUFDOztBQS9GTCw0Q0FnR0M7QUFuRkcsZ0JBQWdCO0FBQ08sNkJBQVksR0FBRyxzREFBc0QsQ0FBQyJ9
|
@@ -0,0 +1,6 @@
|
|
1
|
+
export { GetHybridUseBenefitArgs, GetHybridUseBenefitResult, GetHybridUseBenefitOutputArgs } from "./getHybridUseBenefit";
|
2
|
+
export declare const getHybridUseBenefit: typeof import("./getHybridUseBenefit").getHybridUseBenefit;
|
3
|
+
export declare const getHybridUseBenefitOutput: typeof import("./getHybridUseBenefit").getHybridUseBenefitOutput;
|
4
|
+
export { HybridUseBenefitArgs } from "./hybridUseBenefit";
|
5
|
+
export type HybridUseBenefit = import("./hybridUseBenefit").HybridUseBenefit;
|
6
|
+
export declare const HybridUseBenefit: typeof import("./hybridUseBenefit").HybridUseBenefit;
|
@@ -0,0 +1,23 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.HybridUseBenefit = exports.getHybridUseBenefitOutput = exports.getHybridUseBenefit = void 0;
|
4
|
+
const pulumi = require("@pulumi/pulumi");
|
5
|
+
const utilities = require("@kengachu-pulumi/azure-native-core/utilities");
|
6
|
+
exports.getHybridUseBenefit = null;
|
7
|
+
exports.getHybridUseBenefitOutput = null;
|
8
|
+
utilities.lazyLoad(exports, ["getHybridUseBenefit", "getHybridUseBenefitOutput"], () => require("./getHybridUseBenefit"));
|
9
|
+
exports.HybridUseBenefit = null;
|
10
|
+
utilities.lazyLoad(exports, ["HybridUseBenefit"], () => require("./hybridUseBenefit"));
|
11
|
+
const _module = {
|
12
|
+
version: utilities.getVersion(),
|
13
|
+
construct: (name, type, urn) => {
|
14
|
+
switch (type) {
|
15
|
+
case "azure-native:softwareplan/v20191201:HybridUseBenefit":
|
16
|
+
return new exports.HybridUseBenefit(name, undefined, { urn });
|
17
|
+
default:
|
18
|
+
throw new Error(`unknown resource type ${type}`);
|
19
|
+
}
|
20
|
+
},
|
21
|
+
};
|
22
|
+
pulumi.runtime.registerResourceModule("azure-native", "softwareplan/v20191201", _module);
|
23
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyJpbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBQSx5Q0FBeUM7QUFDekMsMEVBQTBFO0FBRzdELFFBQUEsbUJBQW1CLEdBQStELElBQVcsQ0FBQztBQUM5RixRQUFBLHlCQUF5QixHQUFxRSxJQUFXLENBQUM7QUFDdkgsU0FBUyxDQUFDLFFBQVEsQ0FBQyxPQUFPLEVBQUUsQ0FBQyxxQkFBcUIsRUFBQywyQkFBMkIsQ0FBQyxFQUFFLEdBQUcsRUFBRSxDQUFDLE9BQU8sQ0FBQyx1QkFBdUIsQ0FBQyxDQUFDLENBQUM7QUFJNUcsUUFBQSxnQkFBZ0IsR0FBeUQsSUFBVyxDQUFDO0FBQ2xHLFNBQVMsQ0FBQyxRQUFRLENBQUMsT0FBTyxFQUFFLENBQUMsa0JBQWtCLENBQUMsRUFBRSxHQUFHLEVBQUUsQ0FBQyxPQUFPLENBQUMsb0JBQW9CLENBQUMsQ0FBQyxDQUFDO0FBR3ZGLE1BQU0sT0FBTyxHQUFHO0lBQ1osT0FBTyxFQUFFLFNBQVMsQ0FBQyxVQUFVLEVBQUU7SUFDL0IsU0FBUyxFQUFFLENBQUMsSUFBWSxFQUFFLElBQVksRUFBRSxHQUFXLEVBQW1CLEVBQUU7UUFDcEUsUUFBUSxJQUFJLEVBQUU7WUFDVixLQUFLLHNEQUFzRDtnQkFDdkQsT0FBTyxJQUFJLHdCQUFnQixDQUFDLElBQUksRUFBTyxTQUFTLEVBQUUsRUFBRSxHQUFHLEVBQUUsQ0FBQyxDQUFBO1lBQzlEO2dCQUNJLE1BQU0sSUFBSSxLQUFLLENBQUMseUJBQXlCLElBQUksRUFBRSxDQUFDLENBQUM7U0FDeEQ7SUFDTCxDQUFDO0NBQ0osQ0FBQztBQUNGLE1BQU0sQ0FBQyxPQUFPLENBQUMsc0JBQXNCLENBQUMsY0FBYyxFQUFFLHdCQUF3QixFQUFFLE9BQU8sQ0FBQyxDQUFBIn0=
|
@@ -0,0 +1,6 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.outputs = exports.inputs = void 0;
|
4
|
+
exports.inputs = require("./input");
|
5
|
+
exports.outputs = require("./output");
|
6
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyJpbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBQSxvQ0FBa0M7QUFDbEMsc0NBQW9DIn0=
|