azure-native.edge.SolutionVersion
Explore with Pulumi AI
Solution Version Resource. It has the resolved configuration along with edge specification.
Uses Azure REST API version 2025-06-01.
Example Usage
SolutionVersions_CreateOrUpdate_MaximumSet
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var solutionVersion = new AzureNative.Edge.SolutionVersion("solutionVersion", new()
{
ExtendedLocation = new AzureNative.Edge.Inputs.AzureResourceManagerCommonTypesExtendedLocationArgs
{
Name = "szjrwimeqyiue",
Type = AzureNative.Edge.ExtendedLocationType.EdgeZone,
},
Properties = new AzureNative.Edge.Inputs.SolutionVersionPropertiesArgs
{
Specification = null,
},
ResourceGroupName = "rgconfigurationmanager",
SolutionName = "testname",
SolutionVersionName = "testname",
TargetName = "testname",
});
});
package main
import (
edge "github.com/pulumi/pulumi-azure-native-sdk/edge/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := edge.NewSolutionVersion(ctx, "solutionVersion", &edge.SolutionVersionArgs{
ExtendedLocation: &edge.AzureResourceManagerCommonTypesExtendedLocationArgs{
Name: pulumi.String("szjrwimeqyiue"),
Type: pulumi.String(edge.ExtendedLocationTypeEdgeZone),
},
Properties: &edge.SolutionVersionPropertiesArgs{
Specification: pulumi.Any(map[string]interface{}{}),
},
ResourceGroupName: pulumi.String("rgconfigurationmanager"),
SolutionName: pulumi.String("testname"),
SolutionVersionName: pulumi.String("testname"),
TargetName: pulumi.String("testname"),
})
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.edge.SolutionVersion;
import com.pulumi.azurenative.edge.SolutionVersionArgs;
import com.pulumi.azurenative.edge.inputs.AzureResourceManagerCommonTypesExtendedLocationArgs;
import com.pulumi.azurenative.edge.inputs.SolutionVersionPropertiesArgs;
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 solutionVersion = new SolutionVersion("solutionVersion", SolutionVersionArgs.builder()
.extendedLocation(AzureResourceManagerCommonTypesExtendedLocationArgs.builder()
.name("szjrwimeqyiue")
.type("EdgeZone")
.build())
.properties(SolutionVersionPropertiesArgs.builder()
.specification(Map.ofEntries(
))
.build())
.resourceGroupName("rgconfigurationmanager")
.solutionName("testname")
.solutionVersionName("testname")
.targetName("testname")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const solutionVersion = new azure_native.edge.SolutionVersion("solutionVersion", {
extendedLocation: {
name: "szjrwimeqyiue",
type: azure_native.edge.ExtendedLocationType.EdgeZone,
},
properties: {
specification: {},
},
resourceGroupName: "rgconfigurationmanager",
solutionName: "testname",
solutionVersionName: "testname",
targetName: "testname",
});
import pulumi
import pulumi_azure_native as azure_native
solution_version = azure_native.edge.SolutionVersion("solutionVersion",
extended_location={
"name": "szjrwimeqyiue",
"type": azure_native.edge.ExtendedLocationType.EDGE_ZONE,
},
properties={
"specification": {},
},
resource_group_name="rgconfigurationmanager",
solution_name="testname",
solution_version_name="testname",
target_name="testname")
resources:
solutionVersion:
type: azure-native:edge:SolutionVersion
properties:
extendedLocation:
name: szjrwimeqyiue
type: EdgeZone
properties:
specification: {}
resourceGroupName: rgconfigurationmanager
solutionName: testname
solutionVersionName: testname
targetName: testname
Create SolutionVersion Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SolutionVersion(name: string, args: SolutionVersionArgs, opts?: CustomResourceOptions);
@overload
def SolutionVersion(resource_name: str,
args: SolutionVersionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SolutionVersion(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
solution_name: Optional[str] = None,
target_name: Optional[str] = None,
extended_location: Optional[AzureResourceManagerCommonTypesExtendedLocationArgs] = None,
properties: Optional[SolutionVersionPropertiesArgs] = None,
solution_version_name: Optional[str] = None)
func NewSolutionVersion(ctx *Context, name string, args SolutionVersionArgs, opts ...ResourceOption) (*SolutionVersion, error)
public SolutionVersion(string name, SolutionVersionArgs args, CustomResourceOptions? opts = null)
public SolutionVersion(String name, SolutionVersionArgs args)
public SolutionVersion(String name, SolutionVersionArgs args, CustomResourceOptions options)
type: azure-native:edge:SolutionVersion
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 SolutionVersionArgs
- 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 SolutionVersionArgs
- 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 SolutionVersionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SolutionVersionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SolutionVersionArgs
- 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 solutionVersionResource = new AzureNative.Edge.SolutionVersion("solutionVersionResource", new()
{
ResourceGroupName = "string",
SolutionName = "string",
TargetName = "string",
ExtendedLocation = new AzureNative.Edge.Inputs.AzureResourceManagerCommonTypesExtendedLocationArgs
{
Name = "string",
Type = "string",
},
Properties = new AzureNative.Edge.Inputs.SolutionVersionPropertiesArgs
{
Specification = "any",
},
SolutionVersionName = "string",
});
example, err := edge.NewSolutionVersion(ctx, "solutionVersionResource", &edge.SolutionVersionArgs{
ResourceGroupName: pulumi.String("string"),
SolutionName: pulumi.String("string"),
TargetName: pulumi.String("string"),
ExtendedLocation: &edge.AzureResourceManagerCommonTypesExtendedLocationArgs{
Name: pulumi.String("string"),
Type: pulumi.String("string"),
},
Properties: &edge.SolutionVersionPropertiesArgs{
Specification: pulumi.Any("any"),
},
SolutionVersionName: pulumi.String("string"),
})
var solutionVersionResource = new SolutionVersion("solutionVersionResource", SolutionVersionArgs.builder()
.resourceGroupName("string")
.solutionName("string")
.targetName("string")
.extendedLocation(AzureResourceManagerCommonTypesExtendedLocationArgs.builder()
.name("string")
.type("string")
.build())
.properties(SolutionVersionPropertiesArgs.builder()
.specification("any")
.build())
.solutionVersionName("string")
.build());
solution_version_resource = azure_native.edge.SolutionVersion("solutionVersionResource",
resource_group_name="string",
solution_name="string",
target_name="string",
extended_location={
"name": "string",
"type": "string",
},
properties={
"specification": "any",
},
solution_version_name="string")
const solutionVersionResource = new azure_native.edge.SolutionVersion("solutionVersionResource", {
resourceGroupName: "string",
solutionName: "string",
targetName: "string",
extendedLocation: {
name: "string",
type: "string",
},
properties: {
specification: "any",
},
solutionVersionName: "string",
});
type: azure-native:edge:SolutionVersion
properties:
extendedLocation:
name: string
type: string
properties:
specification: any
resourceGroupName: string
solutionName: string
solutionVersionName: string
targetName: string
SolutionVersion 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 SolutionVersion resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Solution
Name string - Name of the solution
- Target
Name string - Name of the target
- Extended
Location Pulumi.Azure Native. Edge. Inputs. Azure Resource Manager Common Types Extended Location - The complex type of the extended location.
- Properties
Pulumi.
Azure Native. Edge. Inputs. Solution Version Properties - The resource-specific properties for this resource.
- Solution
Version stringName - Name of the solution version
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Solution
Name string - Name of the solution
- Target
Name string - Name of the target
- Extended
Location AzureResource Manager Common Types Extended Location Args - The complex type of the extended location.
- Properties
Solution
Version Properties Args - The resource-specific properties for this resource.
- Solution
Version stringName - Name of the solution version
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- solution
Name String - Name of the solution
- target
Name String - Name of the target
- extended
Location AzureResource Manager Common Types Extended Location - The complex type of the extended location.
- properties
Solution
Version Properties - The resource-specific properties for this resource.
- solution
Version StringName - Name of the solution version
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- solution
Name string - Name of the solution
- target
Name string - Name of the target
- extended
Location AzureResource Manager Common Types Extended Location - The complex type of the extended location.
- properties
Solution
Version Properties - The resource-specific properties for this resource.
- solution
Version stringName - Name of the solution version
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- solution_
name str - Name of the solution
- target_
name str - Name of the target
- extended_
location AzureResource Manager Common Types Extended Location Args - The complex type of the extended location.
- properties
Solution
Version Properties Args - The resource-specific properties for this resource.
- solution_
version_ strname - Name of the solution version
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- solution
Name String - Name of the solution
- target
Name String - Name of the target
- extended
Location Property Map - The complex type of the extended location.
- properties Property Map
- The resource-specific properties for this resource.
- solution
Version StringName - Name of the solution version
Outputs
All input properties are implicitly available as output properties. Additionally, the SolutionVersion resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- ETag string
- If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Edge. 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"
- Azure
Api stringVersion - The Azure API version of the resource.
- ETag string
- If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- 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"
- azure
Api StringVersion - The Azure API version of the resource.
- e
Tag String - If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- 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"
- azure
Api stringVersion - The Azure API version of the resource.
- e
Tag string - If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- 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"
- azure_
api_ strversion - The Azure API version of the resource.
- e_
tag str - If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- 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"
- azure
Api StringVersion - The Azure API version of the resource.
- e
Tag String - If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- 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
AzureResourceManagerCommonTypesExtendedLocation, AzureResourceManagerCommonTypesExtendedLocationArgs
- Name string
- The name of the extended location.
- Type
string | Pulumi.
Azure Native. Edge. Extended Location Type - The type of the extended location.
- Name string
- The name of the extended location.
- Type
string | Extended
Location Type - The type of the extended location.
- name String
- The name of the extended location.
- type
String | Extended
Location Type - The type of the extended location.
- name string
- The name of the extended location.
- type
string | Extended
Location Type - The type of the extended location.
- name str
- The name of the extended location.
- type
str | Extended
Location Type - The type of the extended location.
- name String
- The name of the extended location.
- type
String | "Edge
Zone" | "Custom Location" - The type of the extended location.
AzureResourceManagerCommonTypesExtendedLocationResponse, AzureResourceManagerCommonTypesExtendedLocationResponseArgs
ErrorAdditionalInfoResponse, ErrorAdditionalInfoResponseArgs
ErrorDetailResponse, ErrorDetailResponseArgs
- Additional
Info List<Pulumi.Azure Native. Edge. Inputs. Error Additional Info Response> - The error additional info.
- Code string
- The error code.
- Details
List<Pulumi.
Azure Native. Edge. Inputs. Error Detail Response> - The error details.
- Message string
- The error message.
- Target string
- The error target.
- Additional
Info []ErrorAdditional Info Response - The error additional info.
- Code string
- The error code.
- Details
[]Error
Detail Response - The error details.
- Message string
- The error message.
- Target string
- The error target.
- additional
Info List<ErrorAdditional Info Response> - The error additional info.
- code String
- The error code.
- details
List<Error
Detail Response> - The error details.
- message String
- The error message.
- target String
- The error target.
- additional
Info ErrorAdditional Info Response[] - The error additional info.
- code string
- The error code.
- details
Error
Detail Response[] - The error details.
- message string
- The error message.
- target string
- The error target.
- additional_
info Sequence[ErrorAdditional Info Response] - The error additional info.
- code str
- The error code.
- details
Sequence[Error
Detail Response] - The error details.
- message str
- The error message.
- target str
- The error target.
- additional
Info List<Property Map> - The error additional info.
- code String
- The error code.
- details List<Property Map>
- The error details.
- message String
- The error message.
- target String
- The error target.
ExtendedLocationType, ExtendedLocationTypeArgs
- Edge
Zone - EdgeZoneAzure Edge Zones location type
- Custom
Location - CustomLocationAzure Custom Locations type
- Extended
Location Type Edge Zone - EdgeZoneAzure Edge Zones location type
- Extended
Location Type Custom Location - CustomLocationAzure Custom Locations type
- Edge
Zone - EdgeZoneAzure Edge Zones location type
- Custom
Location - CustomLocationAzure Custom Locations type
- Edge
Zone - EdgeZoneAzure Edge Zones location type
- Custom
Location - CustomLocationAzure Custom Locations type
- EDGE_ZONE
- EdgeZoneAzure Edge Zones location type
- CUSTOM_LOCATION
- CustomLocationAzure Custom Locations type
- "Edge
Zone" - EdgeZoneAzure Edge Zones location type
- "Custom
Location" - CustomLocationAzure Custom Locations type
SolutionDependencyResponse, SolutionDependencyResponseArgs
- Solution
Template stringVersion Id - Solution Template Version Id
- Solution
Version stringId - Solution Version Id
- Target
Id string - Target Id
- Dependencies
List<Pulumi.
Azure Native. Edge. Inputs. Solution Dependency Response> - Solution dependencies
- Solution
Instance stringName - Solution Instance Name
- Solution
Template stringVersion Id - Solution Template Version Id
- Solution
Version stringId - Solution Version Id
- Target
Id string - Target Id
- Dependencies
[]Solution
Dependency Response - Solution dependencies
- Solution
Instance stringName - Solution Instance Name
- solution
Template StringVersion Id - Solution Template Version Id
- solution
Version StringId - Solution Version Id
- target
Id String - Target Id
- dependencies
List<Solution
Dependency Response> - Solution dependencies
- solution
Instance StringName - Solution Instance Name
- solution
Template stringVersion Id - Solution Template Version Id
- solution
Version stringId - Solution Version Id
- target
Id string - Target Id
- dependencies
Solution
Dependency Response[] - Solution dependencies
- solution
Instance stringName - Solution Instance Name
- solution_
template_ strversion_ id - Solution Template Version Id
- solution_
version_ strid - Solution Version Id
- target_
id str - Target Id
- dependencies
Sequence[Solution
Dependency Response] - Solution dependencies
- solution_
instance_ strname - Solution Instance Name
- solution
Template StringVersion Id - Solution Template Version Id
- solution
Version StringId - Solution Version Id
- target
Id String - Target Id
- dependencies List<Property Map>
- Solution dependencies
- solution
Instance StringName - Solution Instance Name
SolutionVersionProperties, SolutionVersionPropertiesArgs
- Specification object
- App components spec
- Specification interface{}
- App components spec
- specification Object
- App components spec
- specification any
- App components spec
- specification Any
- App components spec
- specification Any
- App components spec
SolutionVersionPropertiesResponse, SolutionVersionPropertiesResponseArgs
- Action
Type string - The type of the latest action performed on this solution version.
- Configuration string
- Resolved configuration values
- Error
Details Pulumi.Azure Native. Edge. Inputs. Error Detail Response - Error Details if any failure is there
- External
Validation stringId - External validation id
- Latest
Action stringTracking Uri - The URI for tracking the latest action performed on this solution version.
- Provisioning
State string - Provisioning state of resource
- Review
Id string - Review id of resolved config for this solution version
- Revision int
- Revision number of resolved config for this solution version
- Solution
Dependencies List<Pulumi.Azure Native. Edge. Inputs. Solution Dependency Response> - Solution Dependency Context
- Solution
Instance stringName - Solution instance name
- Solution
Template stringVersion Id - Solution Template Version Id
- Specification object
- App components spec
- State string
- State of solution instance
- Target
Display stringName - Name of applicable target's display name
- Target
Level stringConfiguration - Configuration on the line level across all solution template versions
- Action
Type string - The type of the latest action performed on this solution version.
- Configuration string
- Resolved configuration values
- Error
Details ErrorDetail Response - Error Details if any failure is there
- External
Validation stringId - External validation id
- Latest
Action stringTracking Uri - The URI for tracking the latest action performed on this solution version.
- Provisioning
State string - Provisioning state of resource
- Review
Id string - Review id of resolved config for this solution version
- Revision int
- Revision number of resolved config for this solution version
- Solution
Dependencies []SolutionDependency Response - Solution Dependency Context
- Solution
Instance stringName - Solution instance name
- Solution
Template stringVersion Id - Solution Template Version Id
- Specification interface{}
- App components spec
- State string
- State of solution instance
- Target
Display stringName - Name of applicable target's display name
- Target
Level stringConfiguration - Configuration on the line level across all solution template versions
- action
Type String - The type of the latest action performed on this solution version.
- configuration String
- Resolved configuration values
- error
Details ErrorDetail Response - Error Details if any failure is there
- external
Validation StringId - External validation id
- latest
Action StringTracking Uri - The URI for tracking the latest action performed on this solution version.
- provisioning
State String - Provisioning state of resource
- review
Id String - Review id of resolved config for this solution version
- revision Integer
- Revision number of resolved config for this solution version
- solution
Dependencies List<SolutionDependency Response> - Solution Dependency Context
- solution
Instance StringName - Solution instance name
- solution
Template StringVersion Id - Solution Template Version Id
- specification Object
- App components spec
- state String
- State of solution instance
- target
Display StringName - Name of applicable target's display name
- target
Level StringConfiguration - Configuration on the line level across all solution template versions
- action
Type string - The type of the latest action performed on this solution version.
- configuration string
- Resolved configuration values
- error
Details ErrorDetail Response - Error Details if any failure is there
- external
Validation stringId - External validation id
- latest
Action stringTracking Uri - The URI for tracking the latest action performed on this solution version.
- provisioning
State string - Provisioning state of resource
- review
Id string - Review id of resolved config for this solution version
- revision number
- Revision number of resolved config for this solution version
- solution
Dependencies SolutionDependency Response[] - Solution Dependency Context
- solution
Instance stringName - Solution instance name
- solution
Template stringVersion Id - Solution Template Version Id
- specification any
- App components spec
- state string
- State of solution instance
- target
Display stringName - Name of applicable target's display name
- target
Level stringConfiguration - Configuration on the line level across all solution template versions
- action_
type str - The type of the latest action performed on this solution version.
- configuration str
- Resolved configuration values
- error_
details ErrorDetail Response - Error Details if any failure is there
- external_
validation_ strid - External validation id
- latest_
action_ strtracking_ uri - The URI for tracking the latest action performed on this solution version.
- provisioning_
state str - Provisioning state of resource
- review_
id str - Review id of resolved config for this solution version
- revision int
- Revision number of resolved config for this solution version
- solution_
dependencies Sequence[SolutionDependency Response] - Solution Dependency Context
- solution_
instance_ strname - Solution instance name
- solution_
template_ strversion_ id - Solution Template Version Id
- specification Any
- App components spec
- state str
- State of solution instance
- target_
display_ strname - Name of applicable target's display name
- target_
level_ strconfiguration - Configuration on the line level across all solution template versions
- action
Type String - The type of the latest action performed on this solution version.
- configuration String
- Resolved configuration values
- error
Details Property Map - Error Details if any failure is there
- external
Validation StringId - External validation id
- latest
Action StringTracking Uri - The URI for tracking the latest action performed on this solution version.
- provisioning
State String - Provisioning state of resource
- review
Id String - Review id of resolved config for this solution version
- revision Number
- Revision number of resolved config for this solution version
- solution
Dependencies List<Property Map> - Solution Dependency Context
- solution
Instance StringName - Solution instance name
- solution
Template StringVersion Id - Solution Template Version Id
- specification Any
- App components spec
- state String
- State of solution instance
- target
Display StringName - Name of applicable target's display name
- target
Level StringConfiguration - Configuration on the line level across all solution template versions
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:edge:SolutionVersion lk /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/targets/{targetName}/solutions/{solutionName}/versions/{solutionVersionName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0