ArmAppServiceModelFactory.CsmDeploymentStatus Method

Definition

Overloads

CsmDeploymentStatus(ResourceIdentifier, String, ResourceType, SystemData, String, Nullable<DeploymentBuildStatus>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, IEnumerable<String>, IEnumerable<ResponseError>, String)

Source:
ArmAppServiceModelFactory.cs
Source:
ArmAppServiceModelFactory.cs

Initializes a new instance of CsmDeploymentStatus.

public static Azure.ResourceManager.AppService.Models.CsmDeploymentStatus CsmDeploymentStatus(Azure.Core.ResourceIdentifier id = default, string name = default, Azure.Core.ResourceType resourceType = default, Azure.ResourceManager.Models.SystemData systemData = default, string deploymentId = default, Azure.ResourceManager.AppService.Models.DeploymentBuildStatus? status = default, int? numberOfInstancesInProgress = default, int? numberOfInstancesSuccessful = default, int? numberOfInstancesFailed = default, System.Collections.Generic.IEnumerable<string> failedInstancesLogs = default, System.Collections.Generic.IEnumerable<Azure.ResponseError> errors = default, string kind = default);
static member CsmDeploymentStatus : Azure.Core.ResourceIdentifier * string * Azure.Core.ResourceType * Azure.ResourceManager.Models.SystemData * string * Nullable<Azure.ResourceManager.AppService.Models.DeploymentBuildStatus> * Nullable<int> * Nullable<int> * Nullable<int> * seq<string> * seq<Azure.ResponseError> * string -> Azure.ResourceManager.AppService.Models.CsmDeploymentStatus
Public Shared Function CsmDeploymentStatus (Optional id As ResourceIdentifier = Nothing, Optional name As String = Nothing, Optional resourceType As ResourceType = Nothing, Optional systemData As SystemData = Nothing, Optional deploymentId As String = Nothing, Optional status As Nullable(Of DeploymentBuildStatus) = Nothing, Optional numberOfInstancesInProgress As Nullable(Of Integer) = Nothing, Optional numberOfInstancesSuccessful As Nullable(Of Integer) = Nothing, Optional numberOfInstancesFailed As Nullable(Of Integer) = Nothing, Optional failedInstancesLogs As IEnumerable(Of String) = Nothing, Optional errors As IEnumerable(Of ResponseError) = Nothing, Optional kind As String = Nothing) As CsmDeploymentStatus

Parameters

id
ResourceIdentifier

The id.

name
String

The name.

resourceType
ResourceType

The resourceType.

systemData
SystemData

The systemData.

deploymentId
String

Deployment operation id.

status
Nullable<DeploymentBuildStatus>

Deployment build status.

numberOfInstancesInProgress
Nullable<Int32>

Number of site instances currently being provisioned.

numberOfInstancesSuccessful
Nullable<Int32>

Number of site instances provisioned successfully.

numberOfInstancesFailed
Nullable<Int32>

Number of site instances failed to provision.

failedInstancesLogs
IEnumerable<String>

List of URLs pointing to logs for instances which failed to provision.

errors
IEnumerable<ResponseError>

List of errors.

kind
String

Kind of resource.

Returns

A new CsmDeploymentStatus instance for mocking.

Applies to

CsmDeploymentStatus(ResourceIdentifier, String, ResourceType, SystemData, String, String, Nullable<DeploymentBuildStatus>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, IEnumerable<String>, IEnumerable<ResponseError>)

Source:
ArmAppServiceModelFactory.cs

Initializes a new instance of CsmDeploymentStatus.

public static Azure.ResourceManager.AppService.Models.CsmDeploymentStatus CsmDeploymentStatus(Azure.Core.ResourceIdentifier id = default, string name = default, Azure.Core.ResourceType resourceType = default, Azure.ResourceManager.Models.SystemData systemData = default, string kind = default, string deploymentId = default, Azure.ResourceManager.AppService.Models.DeploymentBuildStatus? status = default, int? numberOfInstancesInProgress = default, int? numberOfInstancesSuccessful = default, int? numberOfInstancesFailed = default, System.Collections.Generic.IEnumerable<string> failedInstancesLogs = default, System.Collections.Generic.IEnumerable<Azure.ResponseError> errors = default);
static member CsmDeploymentStatus : Azure.Core.ResourceIdentifier * string * Azure.Core.ResourceType * Azure.ResourceManager.Models.SystemData * string * string * Nullable<Azure.ResourceManager.AppService.Models.DeploymentBuildStatus> * Nullable<int> * Nullable<int> * Nullable<int> * seq<string> * seq<Azure.ResponseError> -> Azure.ResourceManager.AppService.Models.CsmDeploymentStatus
Public Shared Function CsmDeploymentStatus (Optional id As ResourceIdentifier = Nothing, Optional name As String = Nothing, Optional resourceType As ResourceType = Nothing, Optional systemData As SystemData = Nothing, Optional kind As String = Nothing, Optional deploymentId As String = Nothing, Optional status As Nullable(Of DeploymentBuildStatus) = Nothing, Optional numberOfInstancesInProgress As Nullable(Of Integer) = Nothing, Optional numberOfInstancesSuccessful As Nullable(Of Integer) = Nothing, Optional numberOfInstancesFailed As Nullable(Of Integer) = Nothing, Optional failedInstancesLogs As IEnumerable(Of String) = Nothing, Optional errors As IEnumerable(Of ResponseError) = Nothing) As CsmDeploymentStatus

Parameters

id
ResourceIdentifier

The id.

name
String

The name.

resourceType
ResourceType

The resourceType.

systemData
SystemData

The systemData.

kind
String

Kind of resource. Serialized Name: CsmDeploymentStatus.kind

deploymentId
String

Deployment operation id. Serialized Name: CsmDeploymentStatus.properties.deploymentId

status
Nullable<DeploymentBuildStatus>

Deployment build status. Serialized Name: CsmDeploymentStatus.properties.status

numberOfInstancesInProgress
Nullable<Int32>

Number of site instances currently being provisioned. Serialized Name: CsmDeploymentStatus.properties.numberOfInstancesInProgress

numberOfInstancesSuccessful
Nullable<Int32>

Number of site instances provisioned successfully. Serialized Name: CsmDeploymentStatus.properties.numberOfInstancesSuccessful

numberOfInstancesFailed
Nullable<Int32>

Number of site instances failed to provision. Serialized Name: CsmDeploymentStatus.properties.numberOfInstancesFailed

failedInstancesLogs
IEnumerable<String>

List of URLs pointing to logs for instances which failed to provision. Serialized Name: CsmDeploymentStatus.properties.failedInstancesLogs

errors
IEnumerable<ResponseError>

List of errors. Serialized Name: CsmDeploymentStatus.properties.errors

Returns

A new CsmDeploymentStatus instance for mocking.

Applies to