Show / Hide Table of Contents

    Class StepResource

    The resource representation of a rollout step.

    Inheritance
    Object
    Resource
    TrackedResource
    StepResource
    Inherited Members
    Resource.Id
    Resource.Name
    Resource.Type
    TrackedResource.Location
    TrackedResource.Tags
    Namespace: System.Dynamic.ExpandoObject
    Assembly: Microsoft.Azure.Management.DeploymentManager.dll
    Syntax
    public class StepResource : Microsoft.Azure.Management.DeploymentManager.Models.TrackedResource

    Constructors

    StepResource()

    Initializes a new instance of the StepResource class.

    Declaration
    public StepResource ();

    StepResource(String, StepProperties, String, String, String, IDictionary<String,String>)

    Initializes a new instance of the StepResource class.

    Declaration
    public StepResource (string location, Microsoft.Azure.Management.DeploymentManager.Models.StepProperties properties, string id = null, string name = null, string type = null, System.Collections.Generic.IDictionary<string,string> tags = null);
    Parameters
    String location

    The geo-location where the resource lives

    StepProperties properties

    The properties that define the step.

    String id

    Fully qualified resource Id for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}

    String name

    The name of the resource

    String type

    The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.

    IDictionary<String,String> tags

    Resource tags.

    Properties

    Properties

    Gets or sets the properties that define the step.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="properties")]
    public Microsoft.Azure.Management.DeploymentManager.Models.StepProperties Properties { get; set; }
    Property Value
    StepProperties

    Methods

    Validate()

    Validate the object.

    Declaration
    public override void Validate ();
    Exceptions
    ValidationException

    Thrown if validation fails

    Back to top Azure SDK for Net