1. Packages
  2. Azure Native
  3. API Docs
  4. hybridconnectivity
  5. SolutionConfiguration
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.0.1 published on Monday, Apr 7, 2025 by Pulumi

azure-native.hybridconnectivity.SolutionConfiguration

Explore with Pulumi AI

This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.0.1 published on Monday, Apr 7, 2025 by Pulumi

Solution Configuration

Uses Azure REST API version 2024-12-01. In version 2.x of the Azure Native provider, it used 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()
    {
        ResourceUri = "ymuj",
        SolutionConfiguration = "keebwujt",
        SolutionSettings = null,
        SolutionType = "nmtqllkyohwtsthxaimsye",
    });

});
Copy
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{
			ResourceUri:           pulumi.String("ymuj"),
			SolutionConfiguration: pulumi.String("keebwujt"),
			SolutionSettings:      pulumi.StringMap{},
			SolutionType:          pulumi.String("nmtqllkyohwtsthxaimsye"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
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 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()
            .resourceUri("ymuj")
            .solutionConfiguration("keebwujt")
            .solutionSettings()
            .solutionType("nmtqllkyohwtsthxaimsye")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const solutionConfiguration = new azure_native.hybridconnectivity.SolutionConfiguration("solutionConfiguration", {
    resourceUri: "ymuj",
    solutionConfiguration: "keebwujt",
    solutionSettings: {},
    solutionType: "nmtqllkyohwtsthxaimsye",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

solution_configuration = azure_native.hybridconnectivity.SolutionConfiguration("solutionConfiguration",
    resource_uri="ymuj",
    solution_configuration="keebwujt",
    solution_settings={},
    solution_type="nmtqllkyohwtsthxaimsye")
Copy
resources:
  solutionConfiguration:
    type: azure-native:hybridconnectivity:SolutionConfiguration
    properties:
      resourceUri: ymuj
      solutionConfiguration: keebwujt
      solutionSettings: {}
      solutionType: nmtqllkyohwtsthxaimsye
Copy

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,
                          solution_type: Optional[str] = None,
                          solution_configuration: Optional[str] = None,
                          solution_settings: Optional[Mapping[str, 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 This property is required. string
The unique name of the resource.
args This property is required. SolutionConfigurationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. SolutionConfigurationArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. SolutionConfigurationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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",
    SolutionType = "string",
    SolutionConfiguration = "string",
    SolutionSettings = 
    {
        { "string", "string" },
    },
});
Copy
example, err := hybridconnectivity.NewSolutionConfiguration(ctx, "solutionConfigurationResource", &hybridconnectivity.SolutionConfigurationArgs{
	ResourceUri:           pulumi.String("string"),
	SolutionType:          pulumi.String("string"),
	SolutionConfiguration: pulumi.String("string"),
	SolutionSettings: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var solutionConfigurationResource = new SolutionConfiguration("solutionConfigurationResource", SolutionConfigurationArgs.builder()
    .resourceUri("string")
    .solutionType("string")
    .solutionConfiguration("string")
    .solutionSettings(Map.of("string", "string"))
    .build());
Copy
solution_configuration_resource = azure_native.hybridconnectivity.SolutionConfiguration("solutionConfigurationResource",
    resource_uri="string",
    solution_type="string",
    solution_configuration="string",
    solution_settings={
        "string": "string",
    })
Copy
const solutionConfigurationResource = new azure_native.hybridconnectivity.SolutionConfiguration("solutionConfigurationResource", {
    resourceUri: "string",
    solutionType: "string",
    solutionConfiguration: "string",
    solutionSettings: {
        string: "string",
    },
});
Copy
type: azure-native:hybridconnectivity:SolutionConfiguration
properties:
    resourceUri: string
    solutionConfiguration: string
    solutionSettings:
        string: string
    solutionType: string
Copy

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

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The SolutionConfiguration resource accepts the following input properties:

ResourceUri
This property is required.
Changes to this property will trigger replacement.
string
The fully qualified Azure Resource manager identifier of the resource.
SolutionType This property is required. string
The type of the solution
SolutionConfiguration Changes to this property will trigger replacement. string
Represent Solution Configuration Resource.
SolutionSettings Dictionary<string, string>
Solution settings
ResourceUri
This property is required.
Changes to this property will trigger replacement.
string
The fully qualified Azure Resource manager identifier of the resource.
SolutionType This property is required. string
The type of the solution
SolutionConfiguration Changes to this property will trigger replacement. string
Represent Solution Configuration Resource.
SolutionSettings map[string]string
Solution settings
resourceUri
This property is required.
Changes to this property will trigger replacement.
String
The fully qualified Azure Resource manager identifier of the resource.
solutionType This property is required. String
The type of the solution
solutionConfiguration Changes to this property will trigger replacement. String
Represent Solution Configuration Resource.
solutionSettings Map<String,String>
Solution settings
resourceUri
This property is required.
Changes to this property will trigger replacement.
string
The fully qualified Azure Resource manager identifier of the resource.
solutionType This property is required. string
The type of the solution
solutionConfiguration Changes to this property will trigger replacement. string
Represent Solution Configuration Resource.
solutionSettings {[key: string]: string}
Solution settings
resource_uri
This property is required.
Changes to this property will trigger replacement.
str
The fully qualified Azure Resource manager identifier of the resource.
solution_type This property is required. str
The type of the solution
solution_configuration Changes to this property will trigger replacement. str
Represent Solution Configuration Resource.
solution_settings Mapping[str, str]
Solution settings
resourceUri
This property is required.
Changes to this property will trigger replacement.
String
The fully qualified Azure Resource manager identifier of the resource.
solutionType This property is required. String
The type of the solution
solutionConfiguration Changes to this property will trigger replacement. String
Represent Solution Configuration Resource.
solutionSettings Map<String>
Solution settings

Outputs

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

AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
LastSyncTime string
The last time resources were inventoried
Name string
The name of the resource
ProvisioningState string
The resource provisioning state.
Status string
The status of solution configurations
StatusDetails string
The detailed message of status details
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"
AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
LastSyncTime string
The last time resources were inventoried
Name string
The name of the resource
ProvisioningState string
The resource provisioning state.
Status string
The status of solution configurations
StatusDetails string
The detailed message of status details
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"
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
lastSyncTime String
The last time resources were inventoried
name String
The name of the resource
provisioningState String
The resource provisioning state.
status String
The status of solution configurations
statusDetails String
The detailed message of status details
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"
azureApiVersion string
The Azure API version of the resource.
id string
The provider-assigned unique ID for this managed resource.
lastSyncTime string
The last time resources were inventoried
name string
The name of the resource
provisioningState string
The resource provisioning state.
status string
The status of solution configurations
statusDetails string
The detailed message of status details
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"
azure_api_version str
The Azure API version of the resource.
id str
The provider-assigned unique ID for this managed resource.
last_sync_time str
The last time resources were inventoried
name str
The name of the resource
provisioning_state str
The resource provisioning state.
status str
The status of solution configurations
status_details str
The detailed message of status details
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"
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
lastSyncTime String
The last time resources were inventoried
name String
The name of the resource
provisioningState String
The resource provisioning state.
status String
The status of solution configurations
statusDetails String
The detailed message of status details
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

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} 
Copy

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

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.0.1 published on Monday, Apr 7, 2025 by Pulumi