azure-native.advisor.Assessment
Explore with Pulumi AI
The Advisor assessment result data structure.
Uses Azure REST API version 2023-09-01-preview.
Example Usage
PutAssessment
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var assessment = new AzureNative.Advisor.Assessment("assessment", new()
{
AssessmentName = "assessment1",
Locale = "en-us",
TypeId = "23513bdb-e8a2-4f0b-8b6b-191ee1f52d34",
WorkloadId = "f72b7134-800f-4f1b-a5bd-691e2140c7d5",
});
});
package main
import (
advisor "github.com/pulumi/pulumi-azure-native-sdk/advisor/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := advisor.NewAssessment(ctx, "assessment", &advisor.AssessmentArgs{
AssessmentName: pulumi.String("assessment1"),
Locale: pulumi.String("en-us"),
TypeId: pulumi.String("23513bdb-e8a2-4f0b-8b6b-191ee1f52d34"),
WorkloadId: pulumi.String("f72b7134-800f-4f1b-a5bd-691e2140c7d5"),
})
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.advisor.Assessment;
import com.pulumi.azurenative.advisor.AssessmentArgs;
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 assessment = new Assessment("assessment", AssessmentArgs.builder()
.assessmentName("assessment1")
.locale("en-us")
.typeId("23513bdb-e8a2-4f0b-8b6b-191ee1f52d34")
.workloadId("f72b7134-800f-4f1b-a5bd-691e2140c7d5")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const assessment = new azure_native.advisor.Assessment("assessment", {
assessmentName: "assessment1",
locale: "en-us",
typeId: "23513bdb-e8a2-4f0b-8b6b-191ee1f52d34",
workloadId: "f72b7134-800f-4f1b-a5bd-691e2140c7d5",
});
import pulumi
import pulumi_azure_native as azure_native
assessment = azure_native.advisor.Assessment("assessment",
assessment_name="assessment1",
locale="en-us",
type_id="23513bdb-e8a2-4f0b-8b6b-191ee1f52d34",
workload_id="f72b7134-800f-4f1b-a5bd-691e2140c7d5")
resources:
assessment:
type: azure-native:advisor:Assessment
properties:
assessmentName: assessment1
locale: en-us
typeId: 23513bdb-e8a2-4f0b-8b6b-191ee1f52d34
workloadId: f72b7134-800f-4f1b-a5bd-691e2140c7d5
Create Assessment Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Assessment(name: string, args?: AssessmentArgs, opts?: CustomResourceOptions);
@overload
def Assessment(resource_name: str,
args: Optional[AssessmentArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Assessment(resource_name: str,
opts: Optional[ResourceOptions] = None,
assessment_name: Optional[str] = None,
locale: Optional[str] = None,
type_id: Optional[str] = None,
workload_id: Optional[str] = None)
func NewAssessment(ctx *Context, name string, args *AssessmentArgs, opts ...ResourceOption) (*Assessment, error)
public Assessment(string name, AssessmentArgs? args = null, CustomResourceOptions? opts = null)
public Assessment(String name, AssessmentArgs args)
public Assessment(String name, AssessmentArgs args, CustomResourceOptions options)
type: azure-native:advisor:Assessment
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 AssessmentArgs
- 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 AssessmentArgs
- 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 AssessmentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AssessmentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AssessmentArgs
- 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 assessmentResource = new AzureNative.Advisor.Assessment("assessmentResource", new()
{
AssessmentName = "string",
Locale = "string",
TypeId = "string",
WorkloadId = "string",
});
example, err := advisor.NewAssessment(ctx, "assessmentResource", &advisor.AssessmentArgs{
AssessmentName: pulumi.String("string"),
Locale: pulumi.String("string"),
TypeId: pulumi.String("string"),
WorkloadId: pulumi.String("string"),
})
var assessmentResource = new Assessment("assessmentResource", AssessmentArgs.builder()
.assessmentName("string")
.locale("string")
.typeId("string")
.workloadId("string")
.build());
assessment_resource = azure_native.advisor.Assessment("assessmentResource",
assessment_name="string",
locale="string",
type_id="string",
workload_id="string")
const assessmentResource = new azure_native.advisor.Assessment("assessmentResource", {
assessmentName: "string",
locale: "string",
typeId: "string",
workloadId: "string",
});
type: azure-native:advisor:Assessment
properties:
assessmentName: string
locale: string
typeId: string
workloadId: string
Assessment 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 Assessment resource accepts the following input properties:
- Assessment
Name string - Advisor assessment name.
- Locale string
- Assessment Type Locale.
- Type
Id string - Assessment Type Id.
- Workload
Id string - Workload Id.
- Assessment
Name string - Advisor assessment name.
- Locale string
- Assessment Type Locale.
- Type
Id string - Assessment Type Id.
- Workload
Id string - Workload Id.
- assessment
Name String - Advisor assessment name.
- locale String
- Assessment Type Locale.
- type
Id String - Assessment Type Id.
- workload
Id String - Workload Id.
- assessment
Name string - Advisor assessment name.
- locale string
- Assessment Type Locale.
- type
Id string - Assessment Type Id.
- workload
Id string - Workload Id.
- assessment_
name str - Advisor assessment name.
- locale str
- Assessment Type Locale.
- type_
id str - Assessment Type Id.
- workload_
id str - Workload Id.
- assessment
Name String - Advisor assessment name.
- locale String
- Assessment Type Locale.
- type
Id String - Assessment Type Id.
- workload
Id String - Workload Id.
Outputs
All input properties are implicitly available as output properties. Additionally, the Assessment resource produces the following output properties:
- Assessment
Id string - Assessment Id.
- Description string
- Assessment Type Description.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Assessment Name
- Score int
- Assessment Score.
- State string
- Assessment State.
- System
Data Pulumi.Azure Native. Advisor. Outputs. System Data Response - Metadata pertaining to creation and last modification of the resource.
- Type string
- Resource Type
- Type
Version string - Assessment Type Version.
- Workload
Name string - Workload Name.
- Assessment
Id string - Assessment Id.
- Description string
- Assessment Type Description.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Assessment Name
- Score int
- Assessment Score.
- State string
- Assessment State.
- System
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- Type string
- Resource Type
- Type
Version string - Assessment Type Version.
- Workload
Name string - Workload Name.
- assessment
Id String - Assessment Id.
- description String
- Assessment Type Description.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Assessment Name
- score Integer
- Assessment Score.
- state String
- Assessment State.
- system
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type String
- Resource Type
- type
Version String - Assessment Type Version.
- workload
Name String - Workload Name.
- assessment
Id string - Assessment Id.
- description string
- Assessment Type Description.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Assessment Name
- score number
- Assessment Score.
- state string
- Assessment State.
- system
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type string
- Resource Type
- type
Version string - Assessment Type Version.
- workload
Name string - Workload Name.
- assessment_
id str - Assessment Id.
- description str
- Assessment Type Description.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Assessment Name
- score int
- Assessment Score.
- state str
- Assessment State.
- system_
data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type str
- Resource Type
- type_
version str - Assessment Type Version.
- workload_
name str - Workload Name.
- assessment
Id String - Assessment Id.
- description String
- Assessment Type Description.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Assessment Name
- score Number
- Assessment Score.
- state String
- Assessment State.
- system
Data Property Map - Metadata pertaining to creation and last modification of the resource.
- type String
- Resource Type
- type
Version String - Assessment Type Version.
- workload
Name String - Workload Name.
Supporting Types
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:advisor:Assessment MCWAR1 /subscriptions/{subscriptionId}/providers/Microsoft.Advisor/assessments/{assessmentName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0