1. Packages
  2. Azure Native
  3. API Docs
  4. hybridconnectivity
  5. SolutionConfiguration
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.63.0 published on Tuesday, Sep 24, 2024 by Pulumi

azure-native.hybridconnectivity.SolutionConfiguration

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.63.0 published on Tuesday, Sep 24, 2024 by Pulumi

    Solution Configuration Azure REST API version: 2024-12-01.

    Example Usage

    SolutionConfigurations_CreateOrUpdate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var solutionConfiguration = new AzureNative.HybridConnectivity.SolutionConfiguration("solutionConfiguration", new()
        {
            Properties = new AzureNative.HybridConnectivity.Inputs.SolutionConfigurationPropertiesArgs
            {
                SolutionSettings = null,
                SolutionType = "nmtqllkyohwtsthxaimsye",
            },
            ResourceUri = "ymuj",
            SolutionConfiguration = "keebwujt",
        });
    
    });
    
    package main
    
    import (
    	hybridconnectivity "github.com/pulumi/pulumi-azure-native-sdk/hybridconnectivity/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := hybridconnectivity.NewSolutionConfiguration(ctx, "solutionConfiguration", &hybridconnectivity.SolutionConfigurationArgs{
    			Properties: &hybridconnectivity.SolutionConfigurationPropertiesArgs{
    				SolutionSettings: nil,
    				SolutionType:     pulumi.String("nmtqllkyohwtsthxaimsye"),
    			},
    			ResourceUri:           pulumi.String("ymuj"),
    			SolutionConfiguration: pulumi.String("keebwujt"),
    		})
    		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.hybridconnectivity.SolutionConfiguration;
    import com.pulumi.azurenative.hybridconnectivity.SolutionConfigurationArgs;
    import com.pulumi.azurenative.hybridconnectivity.inputs.SolutionConfigurationPropertiesArgs;
    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 solutionConfiguration = new SolutionConfiguration("solutionConfiguration", SolutionConfigurationArgs.builder()
                .properties(SolutionConfigurationPropertiesArgs.builder()
                    .solutionSettings()
                    .solutionType("nmtqllkyohwtsthxaimsye")
                    .build())
                .resourceUri("ymuj")
                .solutionConfiguration("keebwujt")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    solution_configuration = azure_native.hybridconnectivity.SolutionConfiguration("solutionConfiguration",
        properties={
            "solution_settings": {},
            "solution_type": "nmtqllkyohwtsthxaimsye",
        },
        resource_uri="ymuj",
        solution_configuration="keebwujt")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const solutionConfiguration = new azure_native.hybridconnectivity.SolutionConfiguration("solutionConfiguration", {
        properties: {
            solutionSettings: {},
            solutionType: "nmtqllkyohwtsthxaimsye",
        },
        resourceUri: "ymuj",
        solutionConfiguration: "keebwujt",
    });
    
    resources:
      solutionConfiguration:
        type: azure-native:hybridconnectivity:SolutionConfiguration
        properties:
          properties:
            solutionSettings: {}
            solutionType: nmtqllkyohwtsthxaimsye
          resourceUri: ymuj
          solutionConfiguration: keebwujt
    

    Create SolutionConfiguration Resource

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

    Constructor syntax

    new SolutionConfiguration(name: string, args: SolutionConfigurationArgs, opts?: CustomResourceOptions);
    @overload
    def SolutionConfiguration(resource_name: str,
                              args: SolutionConfigurationArgs,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def SolutionConfiguration(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              resource_uri: Optional[str] = None,
                              properties: Optional[SolutionConfigurationPropertiesArgs] = None,
                              solution_configuration: Optional[str] = None)
    func NewSolutionConfiguration(ctx *Context, name string, args SolutionConfigurationArgs, opts ...ResourceOption) (*SolutionConfiguration, error)
    public SolutionConfiguration(string name, SolutionConfigurationArgs args, CustomResourceOptions? opts = null)
    public SolutionConfiguration(String name, SolutionConfigurationArgs args)
    public SolutionConfiguration(String name, SolutionConfigurationArgs args, CustomResourceOptions options)
    
    type: azure-native:hybridconnectivity:SolutionConfiguration
    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 SolutionConfigurationArgs
    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 SolutionConfigurationArgs
    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 SolutionConfigurationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SolutionConfigurationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SolutionConfigurationArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

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

    var solutionConfigurationResource = new AzureNative.HybridConnectivity.SolutionConfiguration("solutionConfigurationResource", new()
    {
        ResourceUri = "string",
        Properties = new AzureNative.HybridConnectivity.Inputs.SolutionConfigurationPropertiesArgs
        {
            SolutionType = "string",
            SolutionSettings = 
            {
                { "string", "string" },
            },
        },
        SolutionConfiguration = "string",
    });
    
    example, err := hybridconnectivity.NewSolutionConfiguration(ctx, "solutionConfigurationResource", &hybridconnectivity.SolutionConfigurationArgs{
    	ResourceUri: pulumi.String("string"),
    	Properties: &hybridconnectivity.SolutionConfigurationPropertiesArgs{
    		SolutionType: pulumi.String("string"),
    		SolutionSettings: pulumi.StringMap{
    			"string": pulumi.String("string"),
    		},
    	},
    	SolutionConfiguration: pulumi.String("string"),
    })
    
    var solutionConfigurationResource = new SolutionConfiguration("solutionConfigurationResource", SolutionConfigurationArgs.builder()
        .resourceUri("string")
        .properties(SolutionConfigurationPropertiesArgs.builder()
            .solutionType("string")
            .solutionSettings(Map.of("string", "string"))
            .build())
        .solutionConfiguration("string")
        .build());
    
    solution_configuration_resource = azure_native.hybridconnectivity.SolutionConfiguration("solutionConfigurationResource",
        resource_uri="string",
        properties={
            "solutionType": "string",
            "solutionSettings": {
                "string": "string",
            },
        },
        solution_configuration="string")
    
    const solutionConfigurationResource = new azure_native.hybridconnectivity.SolutionConfiguration("solutionConfigurationResource", {
        resourceUri: "string",
        properties: {
            solutionType: "string",
            solutionSettings: {
                string: "string",
            },
        },
        solutionConfiguration: "string",
    });
    
    type: azure-native:hybridconnectivity:SolutionConfiguration
    properties:
        properties:
            solutionSettings:
                string: string
            solutionType: string
        resourceUri: string
        solutionConfiguration: string
    

    SolutionConfiguration 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 SolutionConfiguration resource accepts the following input properties:

    ResourceUri string
    The fully qualified Azure Resource manager identifier of the resource.
    Properties Pulumi.AzureNative.HybridConnectivity.Inputs.SolutionConfigurationProperties
    The resource-specific properties for this resource.
    SolutionConfiguration string
    Represent Solution Configuration Resource.
    ResourceUri string
    The fully qualified Azure Resource manager identifier of the resource.
    Properties SolutionConfigurationPropertiesArgs
    The resource-specific properties for this resource.
    SolutionConfiguration string
    Represent Solution Configuration Resource.
    resourceUri String
    The fully qualified Azure Resource manager identifier of the resource.
    properties SolutionConfigurationProperties
    The resource-specific properties for this resource.
    solutionConfiguration String
    Represent Solution Configuration Resource.
    resourceUri string
    The fully qualified Azure Resource manager identifier of the resource.
    properties SolutionConfigurationProperties
    The resource-specific properties for this resource.
    solutionConfiguration string
    Represent Solution Configuration Resource.
    resource_uri str
    The fully qualified Azure Resource manager identifier of the resource.
    properties SolutionConfigurationPropertiesArgs
    The resource-specific properties for this resource.
    solution_configuration str
    Represent Solution Configuration Resource.
    resourceUri String
    The fully qualified Azure Resource manager identifier of the resource.
    properties Property Map
    The resource-specific properties for this resource.
    solutionConfiguration String
    Represent Solution Configuration Resource.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.HybridConnectivity.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    SolutionConfigurationProperties, SolutionConfigurationPropertiesArgs

    SolutionType string
    The type of the solution
    SolutionSettings Dictionary<string, string>
    Solution settings
    SolutionType string
    The type of the solution
    SolutionSettings map[string]string
    Solution settings
    solutionType String
    The type of the solution
    solutionSettings Map<String,String>
    Solution settings
    solutionType string
    The type of the solution
    solutionSettings {[key: string]: string}
    Solution settings
    solution_type str
    The type of the solution
    solution_settings Mapping[str, str]
    Solution settings
    solutionType String
    The type of the solution
    solutionSettings Map<String>
    Solution settings

    SolutionConfigurationPropertiesResponse, SolutionConfigurationPropertiesResponseArgs

    LastSyncTime string
    The last time resources were inventoried
    ProvisioningState string
    The resource provisioning state.
    SolutionType string
    The type of the solution
    Status string
    The status of solution configurations
    StatusDetails string
    The detailed message of status details
    SolutionSettings Dictionary<string, string>
    Solution settings
    LastSyncTime string
    The last time resources were inventoried
    ProvisioningState string
    The resource provisioning state.
    SolutionType string
    The type of the solution
    Status string
    The status of solution configurations
    StatusDetails string
    The detailed message of status details
    SolutionSettings map[string]string
    Solution settings
    lastSyncTime String
    The last time resources were inventoried
    provisioningState String
    The resource provisioning state.
    solutionType String
    The type of the solution
    status String
    The status of solution configurations
    statusDetails String
    The detailed message of status details
    solutionSettings Map<String,String>
    Solution settings
    lastSyncTime string
    The last time resources were inventoried
    provisioningState string
    The resource provisioning state.
    solutionType string
    The type of the solution
    status string
    The status of solution configurations
    statusDetails string
    The detailed message of status details
    solutionSettings {[key: string]: string}
    Solution settings
    last_sync_time str
    The last time resources were inventoried
    provisioning_state str
    The resource provisioning state.
    solution_type str
    The type of the solution
    status str
    The status of solution configurations
    status_details str
    The detailed message of status details
    solution_settings Mapping[str, str]
    Solution settings
    lastSyncTime String
    The last time resources were inventoried
    provisioningState String
    The resource provisioning state.
    solutionType String
    The type of the solution
    status String
    The status of solution configurations
    statusDetails String
    The detailed message of status details
    solutionSettings Map<String>
    Solution settings

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    Import

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

    $ pulumi import azure-native:hybridconnectivity:SolutionConfiguration qpwubemzmootxmtlxaerir /{resourceUri}/providers/Microsoft.HybridConnectivity/solutionConfigurations/{solutionConfiguration} 
    

    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.63.0 published on Tuesday, Sep 24, 2024 by Pulumi