Share via


DeploymentOperationsExtensions.GetByName Method (IDeploymentOperations, String, String)

 

Returns configuration information, status, and system properties for a deployment.

Namespace:   Microsoft.WindowsAzure.Management.Compute
Assembly:  Microsoft.WindowsAzure.Management.Compute (in Microsoft.WindowsAzure.Management.Compute.dll)

Syntax

public static DeploymentGetResponse GetByName(
    this IDeploymentOperations operations,
    string serviceName,
    string deploymentName
)
public:
[ExtensionAttribute]
static DeploymentGetResponse^ GetByName(
    IDeploymentOperations^ operations,
    String^ serviceName,
    String^ deploymentName
)
static member GetByName : 
        operations:IDeploymentOperations *
        serviceName:string *
        deploymentName:string -> DeploymentGetResponse
<ExtensionAttribute>
Public Shared Function GetByName (
    operations As IDeploymentOperations,
    serviceName As String,
    deploymentName As String
) As DeploymentGetResponse

Parameters

  • serviceName
    Type: System.String

    The name of the cloud service that contains the deployment.

  • deploymentName
    Type: System.String

    The name of the deployment for which information should be retrieved.

Return Value

Type: Microsoft.WindowsAzure.Management.Compute.Models.DeploymentGetResponse

An DeploymentGetResponse object that contains the information about the deployment.

Remarks

For more information about getting deployment information, see the following resources:

See Also

DeploymentOperationsExtensions Class
Microsoft.WindowsAzure.Management.Compute Namespace

Return to top