azure-native.hybridconnectivity.SolutionConfiguration
Explore with Pulumi AI
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:
- Resource
Uri string - The fully qualified Azure Resource manager identifier of the resource.
- Properties
Pulumi.
Azure Native. Hybrid Connectivity. Inputs. Solution Configuration Properties - The resource-specific properties for this resource.
- Solution
Configuration string - Represent Solution Configuration Resource.
- Resource
Uri string - The fully qualified Azure Resource manager identifier of the resource.
- Properties
Solution
Configuration Properties Args - The resource-specific properties for this resource.
- Solution
Configuration string - Represent Solution Configuration Resource.
- resource
Uri String - The fully qualified Azure Resource manager identifier of the resource.
- properties
Solution
Configuration Properties - The resource-specific properties for this resource.
- solution
Configuration String - Represent Solution Configuration Resource.
- resource
Uri string - The fully qualified Azure Resource manager identifier of the resource.
- properties
Solution
Configuration Properties - The resource-specific properties for this resource.
- solution
Configuration string - Represent Solution Configuration Resource.
- resource_
uri str - The fully qualified Azure Resource manager identifier of the resource.
- properties
Solution
Configuration Properties Args - The resource-specific properties for this resource.
- solution_
configuration str - Represent Solution Configuration Resource.
- resource
Uri String - The fully qualified Azure Resource manager identifier of the resource.
- properties Property Map
- The resource-specific properties for this resource.
- solution
Configuration 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
- System
Data Pulumi.Azure Native. Hybrid Connectivity. Outputs. System Data Response - 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
- System
Data SystemData Response - 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
- system
Data SystemData Response - 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
- system
Data SystemData Response - 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 SystemData Response - 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
- system
Data 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
- Solution
Type string - The type of the solution
- Solution
Settings Dictionary<string, string> - Solution settings
- Solution
Type string - The type of the solution
- Solution
Settings map[string]string - Solution settings
- solution
Type String - The type of the solution
- solution
Settings Map<String,String> - Solution settings
- solution
Type string - The type of the solution
- solution
Settings {[key: string]: string} - Solution settings
- solution_
type str - The type of the solution
- solution_
settings Mapping[str, str] - Solution settings
- solution
Type String - The type of the solution
- solution
Settings Map<String> - Solution settings
SolutionConfigurationPropertiesResponse, SolutionConfigurationPropertiesResponseArgs
- Last
Sync stringTime - The last time resources were inventoried
- Provisioning
State string - The resource provisioning state.
- Solution
Type string - The type of the solution
- Status string
- The status of solution configurations
- Status
Details string - The detailed message of status details
- Solution
Settings Dictionary<string, string> - Solution settings
- Last
Sync stringTime - The last time resources were inventoried
- Provisioning
State string - The resource provisioning state.
- Solution
Type string - The type of the solution
- Status string
- The status of solution configurations
- Status
Details string - The detailed message of status details
- Solution
Settings map[string]string - Solution settings
- last
Sync StringTime - The last time resources were inventoried
- provisioning
State String - The resource provisioning state.
- solution
Type String - The type of the solution
- status String
- The status of solution configurations
- status
Details String - The detailed message of status details
- solution
Settings Map<String,String> - Solution settings
- last
Sync stringTime - The last time resources were inventoried
- provisioning
State string - The resource provisioning state.
- solution
Type string - The type of the solution
- status string
- The status of solution configurations
- status
Details string - The detailed message of status details
- solution
Settings {[key: string]: string} - Solution settings
- last_
sync_ strtime - 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
- last
Sync StringTime - The last time resources were inventoried
- provisioning
State String - The resource provisioning state.
- solution
Type String - The type of the solution
- status String
- The status of solution configurations
- status
Details String - The detailed message of status details
- solution
Settings Map<String> - Solution settings
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - 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_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - 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