1. Packages
  2. Azure Native
  3. API Docs
  4. softwareplan
  5. HybridUseBenefit
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi

azure-native.softwareplan.HybridUseBenefit

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi

    Response on GET of a hybrid use benefit Azure REST API version: 2019-12-01. Prior API version in Azure Native 1.x: 2019-06-01-preview.

    Example Usage

    HybridUseBenefit

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var hybridUseBenefit = new AzureNative.SoftwarePlan.HybridUseBenefit("hybridUseBenefit", new()
        {
            PlanId = "94f46eda-45f8-493a-8425-251921463a89",
            Scope = "subscriptions/{sub-id}/resourceGroups/{rg-name}/providers/Microsoft.Compute/HostGroups/{host-group-name}/hosts/{host-name}",
            Sku = new AzureNative.SoftwarePlan.Inputs.SkuArgs
            {
                Name = "SQL_Server_Perpetual",
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/softwareplan/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := softwareplan.NewHybridUseBenefit(ctx, "hybridUseBenefit", &softwareplan.HybridUseBenefitArgs{
    			PlanId: pulumi.String("94f46eda-45f8-493a-8425-251921463a89"),
    			Scope:  pulumi.String("subscriptions/{sub-id}/resourceGroups/{rg-name}/providers/Microsoft.Compute/HostGroups/{host-group-name}/hosts/{host-name}"),
    			Sku: &softwareplan.SkuArgs{
    				Name: pulumi.String("SQL_Server_Perpetual"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.softwareplan.HybridUseBenefit;
    import com.pulumi.azurenative.softwareplan.HybridUseBenefitArgs;
    import com.pulumi.azurenative.softwareplan.inputs.SkuArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var hybridUseBenefit = new HybridUseBenefit("hybridUseBenefit", HybridUseBenefitArgs.builder()        
                .planId("94f46eda-45f8-493a-8425-251921463a89")
                .scope("subscriptions/{sub-id}/resourceGroups/{rg-name}/providers/Microsoft.Compute/HostGroups/{host-group-name}/hosts/{host-name}")
                .sku(SkuArgs.builder()
                    .name("SQL_Server_Perpetual")
                    .build())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    hybrid_use_benefit = azure_native.softwareplan.HybridUseBenefit("hybridUseBenefit",
        plan_id="94f46eda-45f8-493a-8425-251921463a89",
        scope="subscriptions/{sub-id}/resourceGroups/{rg-name}/providers/Microsoft.Compute/HostGroups/{host-group-name}/hosts/{host-name}",
        sku=azure_native.softwareplan.SkuArgs(
            name="SQL_Server_Perpetual",
        ))
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const hybridUseBenefit = new azure_native.softwareplan.HybridUseBenefit("hybridUseBenefit", {
        planId: "94f46eda-45f8-493a-8425-251921463a89",
        scope: "subscriptions/{sub-id}/resourceGroups/{rg-name}/providers/Microsoft.Compute/HostGroups/{host-group-name}/hosts/{host-name}",
        sku: {
            name: "SQL_Server_Perpetual",
        },
    });
    
    resources:
      hybridUseBenefit:
        type: azure-native:softwareplan:HybridUseBenefit
        properties:
          planId: 94f46eda-45f8-493a-8425-251921463a89
          scope: subscriptions/{sub-id}/resourceGroups/{rg-name}/providers/Microsoft.Compute/HostGroups/{host-group-name}/hosts/{host-name}
          sku:
            name: SQL_Server_Perpetual
    

    Create HybridUseBenefit Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new HybridUseBenefit(name: string, args: HybridUseBenefitArgs, opts?: CustomResourceOptions);
    @overload
    def HybridUseBenefit(resource_name: str,
                         args: HybridUseBenefitArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def HybridUseBenefit(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         scope: Optional[str] = None,
                         sku: Optional[SkuArgs] = None,
                         plan_id: Optional[str] = None)
    func NewHybridUseBenefit(ctx *Context, name string, args HybridUseBenefitArgs, opts ...ResourceOption) (*HybridUseBenefit, error)
    public HybridUseBenefit(string name, HybridUseBenefitArgs args, CustomResourceOptions? opts = null)
    public HybridUseBenefit(String name, HybridUseBenefitArgs args)
    public HybridUseBenefit(String name, HybridUseBenefitArgs args, CustomResourceOptions options)
    
    type: azure-native:softwareplan:HybridUseBenefit
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args HybridUseBenefitArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args HybridUseBenefitArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args HybridUseBenefitArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args HybridUseBenefitArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args HybridUseBenefitArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var hybridUseBenefitResource = new AzureNative.SoftwarePlan.HybridUseBenefit("hybridUseBenefitResource", new()
    {
        Scope = "string",
        Sku = new AzureNative.SoftwarePlan.Inputs.SkuArgs
        {
            Name = "string",
        },
        PlanId = "string",
    });
    
    example, err := softwareplan.NewHybridUseBenefit(ctx, "hybridUseBenefitResource", &softwareplan.HybridUseBenefitArgs{
    Scope: pulumi.String("string"),
    Sku: &softwareplan.SkuArgs{
    Name: pulumi.String("string"),
    },
    PlanId: pulumi.String("string"),
    })
    
    var hybridUseBenefitResource = new HybridUseBenefit("hybridUseBenefitResource", HybridUseBenefitArgs.builder()        
        .scope("string")
        .sku(SkuArgs.builder()
            .name("string")
            .build())
        .planId("string")
        .build());
    
    hybrid_use_benefit_resource = azure_native.softwareplan.HybridUseBenefit("hybridUseBenefitResource",
        scope="string",
        sku=azure_native.softwareplan.SkuArgs(
            name="string",
        ),
        plan_id="string")
    
    const hybridUseBenefitResource = new azure_native.softwareplan.HybridUseBenefit("hybridUseBenefitResource", {
        scope: "string",
        sku: {
            name: "string",
        },
        planId: "string",
    });
    
    type: azure-native:softwareplan:HybridUseBenefit
    properties:
        planId: string
        scope: string
        sku:
            name: string
    

    HybridUseBenefit Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The HybridUseBenefit resource accepts the following input properties:

    Scope string
    The scope at which the operation is performed. This is limited to Microsoft.Compute/virtualMachines and Microsoft.Compute/hostGroups/hosts for now
    Sku Pulumi.AzureNative.SoftwarePlan.Inputs.Sku
    Hybrid use benefit SKU
    PlanId string
    This is a unique identifier for a plan. Should be a guid.
    Scope string
    The scope at which the operation is performed. This is limited to Microsoft.Compute/virtualMachines and Microsoft.Compute/hostGroups/hosts for now
    Sku SkuArgs
    Hybrid use benefit SKU
    PlanId string
    This is a unique identifier for a plan. Should be a guid.
    scope String
    The scope at which the operation is performed. This is limited to Microsoft.Compute/virtualMachines and Microsoft.Compute/hostGroups/hosts for now
    sku Sku
    Hybrid use benefit SKU
    planId String
    This is a unique identifier for a plan. Should be a guid.
    scope string
    The scope at which the operation is performed. This is limited to Microsoft.Compute/virtualMachines and Microsoft.Compute/hostGroups/hosts for now
    sku Sku
    Hybrid use benefit SKU
    planId string
    This is a unique identifier for a plan. Should be a guid.
    scope str
    The scope at which the operation is performed. This is limited to Microsoft.Compute/virtualMachines and Microsoft.Compute/hostGroups/hosts for now
    sku SkuArgs
    Hybrid use benefit SKU
    plan_id str
    This is a unique identifier for a plan. Should be a guid.
    scope String
    The scope at which the operation is performed. This is limited to Microsoft.Compute/virtualMachines and Microsoft.Compute/hostGroups/hosts for now
    sku Property Map
    Hybrid use benefit SKU
    planId String
    This is a unique identifier for a plan. Should be a guid.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the HybridUseBenefit resource produces the following output properties:

    CreatedDate string
    Created date
    Etag int
    Indicates the revision of the hybrid use benefit
    Id string
    The provider-assigned unique ID for this managed resource.
    LastUpdatedDate string
    Last updated date
    Name string
    The name of the resource
    ProvisioningState string
    Provisioning state
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    CreatedDate string
    Created date
    Etag int
    Indicates the revision of the hybrid use benefit
    Id string
    The provider-assigned unique ID for this managed resource.
    LastUpdatedDate string
    Last updated date
    Name string
    The name of the resource
    ProvisioningState string
    Provisioning state
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    createdDate String
    Created date
    etag Integer
    Indicates the revision of the hybrid use benefit
    id String
    The provider-assigned unique ID for this managed resource.
    lastUpdatedDate String
    Last updated date
    name String
    The name of the resource
    provisioningState String
    Provisioning state
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    createdDate string
    Created date
    etag number
    Indicates the revision of the hybrid use benefit
    id string
    The provider-assigned unique ID for this managed resource.
    lastUpdatedDate string
    Last updated date
    name string
    The name of the resource
    provisioningState string
    Provisioning state
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    created_date str
    Created date
    etag int
    Indicates the revision of the hybrid use benefit
    id str
    The provider-assigned unique ID for this managed resource.
    last_updated_date str
    Last updated date
    name str
    The name of the resource
    provisioning_state str
    Provisioning state
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    createdDate String
    Created date
    etag Number
    Indicates the revision of the hybrid use benefit
    id String
    The provider-assigned unique ID for this managed resource.
    lastUpdatedDate String
    Last updated date
    name String
    The name of the resource
    provisioningState String
    Provisioning state
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    Sku, SkuArgs

    Name string
    Name of the SKU to be applied
    Name string
    Name of the SKU to be applied
    name String
    Name of the SKU to be applied
    name string
    Name of the SKU to be applied
    name str
    Name of the SKU to be applied
    name String
    Name of the SKU to be applied

    SkuResponse, SkuResponseArgs

    Name string
    Name of the SKU to be applied
    Name string
    Name of the SKU to be applied
    name String
    Name of the SKU to be applied
    name string
    Name of the SKU to be applied
    name str
    Name of the SKU to be applied
    name String
    Name of the SKU to be applied

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:softwareplan:HybridUseBenefit SQL_{hostGroupName}_{hostName} /{scope}/providers/Microsoft.SoftwarePlan/hybridUseBenefits/{planId} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi