1. Packages
  2. Octopusdeploy Provider
  3. API Docs
  4. getAzureServiceFabricClusterDeploymentTargets
octopusdeploy 0.43.0 published on Thursday, Apr 17, 2025 by octopusdeploylabs

octopusdeploy.getAzureServiceFabricClusterDeploymentTargets

Explore with Pulumi AI

Provides information about existing Azure service fabric cluster deployment targets.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as octopusdeploy from "@pulumi/octopusdeploy";

const example = octopusdeploy.getAzureServiceFabricClusterDeploymentTargets({
    healthStatuses: [
        "Healthy",
        "Unavailable",
    ],
    ids: [
        "Machines-123",
        "Machines-321",
    ],
    partialName: "Defau",
    skip: 5,
    take: 100,
});
Copy
import pulumi
import pulumi_octopusdeploy as octopusdeploy

example = octopusdeploy.get_azure_service_fabric_cluster_deployment_targets(health_statuses=[
        "Healthy",
        "Unavailable",
    ],
    ids=[
        "Machines-123",
        "Machines-321",
    ],
    partial_name="Defau",
    skip=5,
    take=100)
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/octopusdeploy/octopusdeploy"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := octopusdeploy.GetAzureServiceFabricClusterDeploymentTargets(ctx, &octopusdeploy.GetAzureServiceFabricClusterDeploymentTargetsArgs{
			HealthStatuses: []string{
				"Healthy",
				"Unavailable",
			},
			Ids: []string{
				"Machines-123",
				"Machines-321",
			},
			PartialName: pulumi.StringRef("Defau"),
			Skip:        pulumi.Float64Ref(5),
			Take:        pulumi.Float64Ref(100),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Octopusdeploy = Pulumi.Octopusdeploy;

return await Deployment.RunAsync(() => 
{
    var example = Octopusdeploy.GetAzureServiceFabricClusterDeploymentTargets.Invoke(new()
    {
        HealthStatuses = new[]
        {
            "Healthy",
            "Unavailable",
        },
        Ids = new[]
        {
            "Machines-123",
            "Machines-321",
        },
        PartialName = "Defau",
        Skip = 5,
        Take = 100,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.octopusdeploy.OctopusdeployFunctions;
import com.pulumi.octopusdeploy.inputs.GetAzureServiceFabricClusterDeploymentTargetsArgs;
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) {
        final var example = OctopusdeployFunctions.getAzureServiceFabricClusterDeploymentTargets(GetAzureServiceFabricClusterDeploymentTargetsArgs.builder()
            .healthStatuses(            
                "Healthy",
                "Unavailable")
            .ids(            
                "Machines-123",
                "Machines-321")
            .partialName("Defau")
            .skip(5)
            .take(100)
            .build());

    }
}
Copy
variables:
  example:
    fn::invoke:
      function: octopusdeploy:getAzureServiceFabricClusterDeploymentTargets
      arguments:
        healthStatuses:
          - Healthy
          - Unavailable
        ids:
          - Machines-123
          - Machines-321
        partialName: Defau
        skip: 5
        take: 100
Copy

Using getAzureServiceFabricClusterDeploymentTargets

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getAzureServiceFabricClusterDeploymentTargets(args: GetAzureServiceFabricClusterDeploymentTargetsArgs, opts?: InvokeOptions): Promise<GetAzureServiceFabricClusterDeploymentTargetsResult>
function getAzureServiceFabricClusterDeploymentTargetsOutput(args: GetAzureServiceFabricClusterDeploymentTargetsOutputArgs, opts?: InvokeOptions): Output<GetAzureServiceFabricClusterDeploymentTargetsResult>
Copy
def get_azure_service_fabric_cluster_deployment_targets(deployment_id: Optional[str] = None,
                                                        environments: Optional[Sequence[str]] = None,
                                                        health_statuses: Optional[Sequence[str]] = None,
                                                        ids: Optional[Sequence[str]] = None,
                                                        is_disabled: Optional[bool] = None,
                                                        name: Optional[str] = None,
                                                        partial_name: Optional[str] = None,
                                                        roles: Optional[Sequence[str]] = None,
                                                        shell_names: Optional[Sequence[str]] = None,
                                                        skip: Optional[float] = None,
                                                        space_id: Optional[str] = None,
                                                        take: Optional[float] = None,
                                                        tenant_tags: Optional[Sequence[str]] = None,
                                                        tenants: Optional[Sequence[str]] = None,
                                                        thumbprint: Optional[str] = None,
                                                        opts: Optional[InvokeOptions] = None) -> GetAzureServiceFabricClusterDeploymentTargetsResult
def get_azure_service_fabric_cluster_deployment_targets_output(deployment_id: Optional[pulumi.Input[str]] = None,
                                                        environments: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                                        health_statuses: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                                        ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                                        is_disabled: Optional[pulumi.Input[bool]] = None,
                                                        name: Optional[pulumi.Input[str]] = None,
                                                        partial_name: Optional[pulumi.Input[str]] = None,
                                                        roles: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                                        shell_names: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                                        skip: Optional[pulumi.Input[float]] = None,
                                                        space_id: Optional[pulumi.Input[str]] = None,
                                                        take: Optional[pulumi.Input[float]] = None,
                                                        tenant_tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                                        tenants: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                                        thumbprint: Optional[pulumi.Input[str]] = None,
                                                        opts: Optional[InvokeOptions] = None) -> Output[GetAzureServiceFabricClusterDeploymentTargetsResult]
Copy
func GetAzureServiceFabricClusterDeploymentTargets(ctx *Context, args *GetAzureServiceFabricClusterDeploymentTargetsArgs, opts ...InvokeOption) (*GetAzureServiceFabricClusterDeploymentTargetsResult, error)
func GetAzureServiceFabricClusterDeploymentTargetsOutput(ctx *Context, args *GetAzureServiceFabricClusterDeploymentTargetsOutputArgs, opts ...InvokeOption) GetAzureServiceFabricClusterDeploymentTargetsResultOutput
Copy

> Note: This function is named GetAzureServiceFabricClusterDeploymentTargets in the Go SDK.

public static class GetAzureServiceFabricClusterDeploymentTargets 
{
    public static Task<GetAzureServiceFabricClusterDeploymentTargetsResult> InvokeAsync(GetAzureServiceFabricClusterDeploymentTargetsArgs args, InvokeOptions? opts = null)
    public static Output<GetAzureServiceFabricClusterDeploymentTargetsResult> Invoke(GetAzureServiceFabricClusterDeploymentTargetsInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetAzureServiceFabricClusterDeploymentTargetsResult> getAzureServiceFabricClusterDeploymentTargets(GetAzureServiceFabricClusterDeploymentTargetsArgs args, InvokeOptions options)
public static Output<GetAzureServiceFabricClusterDeploymentTargetsResult> getAzureServiceFabricClusterDeploymentTargets(GetAzureServiceFabricClusterDeploymentTargetsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: octopusdeploy:index/getAzureServiceFabricClusterDeploymentTargets:getAzureServiceFabricClusterDeploymentTargets
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

DeploymentId string
A filter to search by deployment ID.
Environments List<string>
A filter to search by a list of environment IDs.
HealthStatuses List<string>
A filter to search by a list of health statuses of resources. Valid health statuses are HasWarnings, Healthy, Unavailable, Unhealthy, or Unknown.
Ids List<string>
A filter to search by a list of IDs.
IsDisabled bool
A filter to search by the disabled status of a resource.
Name string
A filter to search by name.
PartialName string
A filter to search by the partial match of a name.
Roles List<string>
A filter to search by a list of role IDs.
ShellNames List<string>
A list of shell names to match in the query and/or search
Skip double
A filter to specify the number of items to skip in the response.
SpaceId string
The space ID associated with this resource.
Take double
A filter to specify the number of items to take (or return) in the response.
TenantTags List<string>
A filter to search by a list of tenant tags.
Tenants List<string>
A filter to search by a list of tenant IDs.
Thumbprint string
The thumbprint of the deployment target to match in the query and/or search
DeploymentId string
A filter to search by deployment ID.
Environments []string
A filter to search by a list of environment IDs.
HealthStatuses []string
A filter to search by a list of health statuses of resources. Valid health statuses are HasWarnings, Healthy, Unavailable, Unhealthy, or Unknown.
Ids []string
A filter to search by a list of IDs.
IsDisabled bool
A filter to search by the disabled status of a resource.
Name string
A filter to search by name.
PartialName string
A filter to search by the partial match of a name.
Roles []string
A filter to search by a list of role IDs.
ShellNames []string
A list of shell names to match in the query and/or search
Skip float64
A filter to specify the number of items to skip in the response.
SpaceId string
The space ID associated with this resource.
Take float64
A filter to specify the number of items to take (or return) in the response.
TenantTags []string
A filter to search by a list of tenant tags.
Tenants []string
A filter to search by a list of tenant IDs.
Thumbprint string
The thumbprint of the deployment target to match in the query and/or search
deploymentId String
A filter to search by deployment ID.
environments List<String>
A filter to search by a list of environment IDs.
healthStatuses List<String>
A filter to search by a list of health statuses of resources. Valid health statuses are HasWarnings, Healthy, Unavailable, Unhealthy, or Unknown.
ids List<String>
A filter to search by a list of IDs.
isDisabled Boolean
A filter to search by the disabled status of a resource.
name String
A filter to search by name.
partialName String
A filter to search by the partial match of a name.
roles List<String>
A filter to search by a list of role IDs.
shellNames List<String>
A list of shell names to match in the query and/or search
skip Double
A filter to specify the number of items to skip in the response.
spaceId String
The space ID associated with this resource.
take Double
A filter to specify the number of items to take (or return) in the response.
tenantTags List<String>
A filter to search by a list of tenant tags.
tenants List<String>
A filter to search by a list of tenant IDs.
thumbprint String
The thumbprint of the deployment target to match in the query and/or search
deploymentId string
A filter to search by deployment ID.
environments string[]
A filter to search by a list of environment IDs.
healthStatuses string[]
A filter to search by a list of health statuses of resources. Valid health statuses are HasWarnings, Healthy, Unavailable, Unhealthy, or Unknown.
ids string[]
A filter to search by a list of IDs.
isDisabled boolean
A filter to search by the disabled status of a resource.
name string
A filter to search by name.
partialName string
A filter to search by the partial match of a name.
roles string[]
A filter to search by a list of role IDs.
shellNames string[]
A list of shell names to match in the query and/or search
skip number
A filter to specify the number of items to skip in the response.
spaceId string
The space ID associated with this resource.
take number
A filter to specify the number of items to take (or return) in the response.
tenantTags string[]
A filter to search by a list of tenant tags.
tenants string[]
A filter to search by a list of tenant IDs.
thumbprint string
The thumbprint of the deployment target to match in the query and/or search
deployment_id str
A filter to search by deployment ID.
environments Sequence[str]
A filter to search by a list of environment IDs.
health_statuses Sequence[str]
A filter to search by a list of health statuses of resources. Valid health statuses are HasWarnings, Healthy, Unavailable, Unhealthy, or Unknown.
ids Sequence[str]
A filter to search by a list of IDs.
is_disabled bool
A filter to search by the disabled status of a resource.
name str
A filter to search by name.
partial_name str
A filter to search by the partial match of a name.
roles Sequence[str]
A filter to search by a list of role IDs.
shell_names Sequence[str]
A list of shell names to match in the query and/or search
skip float
A filter to specify the number of items to skip in the response.
space_id str
The space ID associated with this resource.
take float
A filter to specify the number of items to take (or return) in the response.
tenant_tags Sequence[str]
A filter to search by a list of tenant tags.
tenants Sequence[str]
A filter to search by a list of tenant IDs.
thumbprint str
The thumbprint of the deployment target to match in the query and/or search
deploymentId String
A filter to search by deployment ID.
environments List<String>
A filter to search by a list of environment IDs.
healthStatuses List<String>
A filter to search by a list of health statuses of resources. Valid health statuses are HasWarnings, Healthy, Unavailable, Unhealthy, or Unknown.
ids List<String>
A filter to search by a list of IDs.
isDisabled Boolean
A filter to search by the disabled status of a resource.
name String
A filter to search by name.
partialName String
A filter to search by the partial match of a name.
roles List<String>
A filter to search by a list of role IDs.
shellNames List<String>
A list of shell names to match in the query and/or search
skip Number
A filter to specify the number of items to skip in the response.
spaceId String
The space ID associated with this resource.
take Number
A filter to specify the number of items to take (or return) in the response.
tenantTags List<String>
A filter to search by a list of tenant tags.
tenants List<String>
A filter to search by a list of tenant IDs.
thumbprint String
The thumbprint of the deployment target to match in the query and/or search

getAzureServiceFabricClusterDeploymentTargets Result

The following output properties are available:

AzureServiceFabricClusterDeploymentTargets List<GetAzureServiceFabricClusterDeploymentTargetsAzureServiceFabricClusterDeploymentTarget>
A list of Azure service fabric cluster deployment targets that match the filter(s).
Id string
An auto-generated identifier that includes the timestamp when this data source was last modified.
SpaceId string
The space ID associated with this resource.
DeploymentId string
A filter to search by deployment ID.
Environments List<string>
A filter to search by a list of environment IDs.
HealthStatuses List<string>
A filter to search by a list of health statuses of resources. Valid health statuses are HasWarnings, Healthy, Unavailable, Unhealthy, or Unknown.
Ids List<string>
A filter to search by a list of IDs.
IsDisabled bool
A filter to search by the disabled status of a resource.
Name string
A filter to search by name.
PartialName string
A filter to search by the partial match of a name.
Roles List<string>
A filter to search by a list of role IDs.
ShellNames List<string>
A list of shell names to match in the query and/or search
Skip double
A filter to specify the number of items to skip in the response.
Take double
A filter to specify the number of items to take (or return) in the response.
TenantTags List<string>
A filter to search by a list of tenant tags.
Tenants List<string>
A filter to search by a list of tenant IDs.
Thumbprint string
The thumbprint of the deployment target to match in the query and/or search
AzureServiceFabricClusterDeploymentTargets []GetAzureServiceFabricClusterDeploymentTargetsAzureServiceFabricClusterDeploymentTarget
A list of Azure service fabric cluster deployment targets that match the filter(s).
Id string
An auto-generated identifier that includes the timestamp when this data source was last modified.
SpaceId string
The space ID associated with this resource.
DeploymentId string
A filter to search by deployment ID.
Environments []string
A filter to search by a list of environment IDs.
HealthStatuses []string
A filter to search by a list of health statuses of resources. Valid health statuses are HasWarnings, Healthy, Unavailable, Unhealthy, or Unknown.
Ids []string
A filter to search by a list of IDs.
IsDisabled bool
A filter to search by the disabled status of a resource.
Name string
A filter to search by name.
PartialName string
A filter to search by the partial match of a name.
Roles []string
A filter to search by a list of role IDs.
ShellNames []string
A list of shell names to match in the query and/or search
Skip float64
A filter to specify the number of items to skip in the response.
Take float64
A filter to specify the number of items to take (or return) in the response.
TenantTags []string
A filter to search by a list of tenant tags.
Tenants []string
A filter to search by a list of tenant IDs.
Thumbprint string
The thumbprint of the deployment target to match in the query and/or search
azureServiceFabricClusterDeploymentTargets List<GetAzureServiceFabricClusterDeploymentTargetsAzureServiceFabricClusterDeploymentTarget>
A list of Azure service fabric cluster deployment targets that match the filter(s).
id String
An auto-generated identifier that includes the timestamp when this data source was last modified.
spaceId String
The space ID associated with this resource.
deploymentId String
A filter to search by deployment ID.
environments List<String>
A filter to search by a list of environment IDs.
healthStatuses List<String>
A filter to search by a list of health statuses of resources. Valid health statuses are HasWarnings, Healthy, Unavailable, Unhealthy, or Unknown.
ids List<String>
A filter to search by a list of IDs.
isDisabled Boolean
A filter to search by the disabled status of a resource.
name String
A filter to search by name.
partialName String
A filter to search by the partial match of a name.
roles List<String>
A filter to search by a list of role IDs.
shellNames List<String>
A list of shell names to match in the query and/or search
skip Double
A filter to specify the number of items to skip in the response.
take Double
A filter to specify the number of items to take (or return) in the response.
tenantTags List<String>
A filter to search by a list of tenant tags.
tenants List<String>
A filter to search by a list of tenant IDs.
thumbprint String
The thumbprint of the deployment target to match in the query and/or search
azureServiceFabricClusterDeploymentTargets GetAzureServiceFabricClusterDeploymentTargetsAzureServiceFabricClusterDeploymentTarget[]
A list of Azure service fabric cluster deployment targets that match the filter(s).
id string
An auto-generated identifier that includes the timestamp when this data source was last modified.
spaceId string
The space ID associated with this resource.
deploymentId string
A filter to search by deployment ID.
environments string[]
A filter to search by a list of environment IDs.
healthStatuses string[]
A filter to search by a list of health statuses of resources. Valid health statuses are HasWarnings, Healthy, Unavailable, Unhealthy, or Unknown.
ids string[]
A filter to search by a list of IDs.
isDisabled boolean
A filter to search by the disabled status of a resource.
name string
A filter to search by name.
partialName string
A filter to search by the partial match of a name.
roles string[]
A filter to search by a list of role IDs.
shellNames string[]
A list of shell names to match in the query and/or search
skip number
A filter to specify the number of items to skip in the response.
take number
A filter to specify the number of items to take (or return) in the response.
tenantTags string[]
A filter to search by a list of tenant tags.
tenants string[]
A filter to search by a list of tenant IDs.
thumbprint string
The thumbprint of the deployment target to match in the query and/or search
azure_service_fabric_cluster_deployment_targets Sequence[GetAzureServiceFabricClusterDeploymentTargetsAzureServiceFabricClusterDeploymentTarget]
A list of Azure service fabric cluster deployment targets that match the filter(s).
id str
An auto-generated identifier that includes the timestamp when this data source was last modified.
space_id str
The space ID associated with this resource.
deployment_id str
A filter to search by deployment ID.
environments Sequence[str]
A filter to search by a list of environment IDs.
health_statuses Sequence[str]
A filter to search by a list of health statuses of resources. Valid health statuses are HasWarnings, Healthy, Unavailable, Unhealthy, or Unknown.
ids Sequence[str]
A filter to search by a list of IDs.
is_disabled bool
A filter to search by the disabled status of a resource.
name str
A filter to search by name.
partial_name str
A filter to search by the partial match of a name.
roles Sequence[str]
A filter to search by a list of role IDs.
shell_names Sequence[str]
A list of shell names to match in the query and/or search
skip float
A filter to specify the number of items to skip in the response.
take float
A filter to specify the number of items to take (or return) in the response.
tenant_tags Sequence[str]
A filter to search by a list of tenant tags.
tenants Sequence[str]
A filter to search by a list of tenant IDs.
thumbprint str
The thumbprint of the deployment target to match in the query and/or search
azureServiceFabricClusterDeploymentTargets List<Property Map>
A list of Azure service fabric cluster deployment targets that match the filter(s).
id String
An auto-generated identifier that includes the timestamp when this data source was last modified.
spaceId String
The space ID associated with this resource.
deploymentId String
A filter to search by deployment ID.
environments List<String>
A filter to search by a list of environment IDs.
healthStatuses List<String>
A filter to search by a list of health statuses of resources. Valid health statuses are HasWarnings, Healthy, Unavailable, Unhealthy, or Unknown.
ids List<String>
A filter to search by a list of IDs.
isDisabled Boolean
A filter to search by the disabled status of a resource.
name String
A filter to search by name.
partialName String
A filter to search by the partial match of a name.
roles List<String>
A filter to search by a list of role IDs.
shellNames List<String>
A list of shell names to match in the query and/or search
skip Number
A filter to specify the number of items to skip in the response.
take Number
A filter to specify the number of items to take (or return) in the response.
tenantTags List<String>
A filter to search by a list of tenant tags.
tenants List<String>
A filter to search by a list of tenant IDs.
thumbprint String
The thumbprint of the deployment target to match in the query and/or search

Supporting Types

GetAzureServiceFabricClusterDeploymentTargetsAzureServiceFabricClusterDeploymentTarget

AadClientCredentialSecret This property is required. string
AadCredentialType This property is required. string
AadUserCredentialPassword This property is required. string
AadUserCredentialUsername This property is required. string
CertificateStoreLocation This property is required. string
CertificateStoreName This property is required. string
ClientCertificateVariable This property is required. string
ConnectionEndpoint This property is required. string
Endpoints This property is required. List<GetAzureServiceFabricClusterDeploymentTargetsAzureServiceFabricClusterDeploymentTargetEndpoint>
Environments This property is required. List<string>
HasLatestCalamari This property is required. bool
HealthStatus This property is required. string
Id This property is required. string
IsDisabled This property is required. bool
IsInProcess This property is required. bool
MachinePolicyId This property is required. string
Name This property is required. string
OperatingSystem This property is required. string
Roles This property is required. List<string>
SecurityMode This property is required. string
ServerCertificateThumbprint This property is required. string
ShellName This property is required. string
ShellVersion This property is required. string
SpaceId This property is required. string
Status This property is required. string
StatusSummary This property is required. string
TenantTags This property is required. List<string>
TenantedDeploymentParticipation This property is required. string
Tenants This property is required. List<string>
Thumbprint This property is required. string
Uri This property is required. string
AadClientCredentialSecret This property is required. string
AadCredentialType This property is required. string
AadUserCredentialPassword This property is required. string
AadUserCredentialUsername This property is required. string
CertificateStoreLocation This property is required. string
CertificateStoreName This property is required. string
ClientCertificateVariable This property is required. string
ConnectionEndpoint This property is required. string
Endpoints This property is required. []GetAzureServiceFabricClusterDeploymentTargetsAzureServiceFabricClusterDeploymentTargetEndpoint
Environments This property is required. []string
HasLatestCalamari This property is required. bool
HealthStatus This property is required. string
Id This property is required. string
IsDisabled This property is required. bool
IsInProcess This property is required. bool
MachinePolicyId This property is required. string
Name This property is required. string
OperatingSystem This property is required. string
Roles This property is required. []string
SecurityMode This property is required. string
ServerCertificateThumbprint This property is required. string
ShellName This property is required. string
ShellVersion This property is required. string
SpaceId This property is required. string
Status This property is required. string
StatusSummary This property is required. string
TenantTags This property is required. []string
TenantedDeploymentParticipation This property is required. string
Tenants This property is required. []string
Thumbprint This property is required. string
Uri This property is required. string
aadClientCredentialSecret This property is required. String
aadCredentialType This property is required. String
aadUserCredentialPassword This property is required. String
aadUserCredentialUsername This property is required. String
certificateStoreLocation This property is required. String
certificateStoreName This property is required. String
clientCertificateVariable This property is required. String
connectionEndpoint This property is required. String
endpoints This property is required. List<GetAzureServiceFabricClusterDeploymentTargetsAzureServiceFabricClusterDeploymentTargetEndpoint>
environments This property is required. List<String>
hasLatestCalamari This property is required. Boolean
healthStatus This property is required. String
id This property is required. String
isDisabled This property is required. Boolean
isInProcess This property is required. Boolean
machinePolicyId This property is required. String
name This property is required. String
operatingSystem This property is required. String
roles This property is required. List<String>
securityMode This property is required. String
serverCertificateThumbprint This property is required. String
shellName This property is required. String
shellVersion This property is required. String
spaceId This property is required. String
status This property is required. String
statusSummary This property is required. String
tenantTags This property is required. List<String>
tenantedDeploymentParticipation This property is required. String
tenants This property is required. List<String>
thumbprint This property is required. String
uri This property is required. String
aadClientCredentialSecret This property is required. string
aadCredentialType This property is required. string
aadUserCredentialPassword This property is required. string
aadUserCredentialUsername This property is required. string
certificateStoreLocation This property is required. string
certificateStoreName This property is required. string
clientCertificateVariable This property is required. string
connectionEndpoint This property is required. string
endpoints This property is required. GetAzureServiceFabricClusterDeploymentTargetsAzureServiceFabricClusterDeploymentTargetEndpoint[]
environments This property is required. string[]
hasLatestCalamari This property is required. boolean
healthStatus This property is required. string
id This property is required. string
isDisabled This property is required. boolean
isInProcess This property is required. boolean
machinePolicyId This property is required. string
name This property is required. string
operatingSystem This property is required. string
roles This property is required. string[]
securityMode This property is required. string
serverCertificateThumbprint This property is required. string
shellName This property is required. string
shellVersion This property is required. string
spaceId This property is required. string
status This property is required. string
statusSummary This property is required. string
tenantTags This property is required. string[]
tenantedDeploymentParticipation This property is required. string
tenants This property is required. string[]
thumbprint This property is required. string
uri This property is required. string
aad_client_credential_secret This property is required. str
aad_credential_type This property is required. str
aad_user_credential_password This property is required. str
aad_user_credential_username This property is required. str
certificate_store_location This property is required. str
certificate_store_name This property is required. str
client_certificate_variable This property is required. str
connection_endpoint This property is required. str
endpoints This property is required. Sequence[GetAzureServiceFabricClusterDeploymentTargetsAzureServiceFabricClusterDeploymentTargetEndpoint]
environments This property is required. Sequence[str]
has_latest_calamari This property is required. bool
health_status This property is required. str
id This property is required. str
is_disabled This property is required. bool
is_in_process This property is required. bool
machine_policy_id This property is required. str
name This property is required. str
operating_system This property is required. str
roles This property is required. Sequence[str]
security_mode This property is required. str
server_certificate_thumbprint This property is required. str
shell_name This property is required. str
shell_version This property is required. str
space_id This property is required. str
status This property is required. str
status_summary This property is required. str
tenant_tags This property is required. Sequence[str]
tenanted_deployment_participation This property is required. str
tenants This property is required. Sequence[str]
thumbprint This property is required. str
uri This property is required. str
aadClientCredentialSecret This property is required. String
aadCredentialType This property is required. String
aadUserCredentialPassword This property is required. String
aadUserCredentialUsername This property is required. String
certificateStoreLocation This property is required. String
certificateStoreName This property is required. String
clientCertificateVariable This property is required. String
connectionEndpoint This property is required. String
endpoints This property is required. List<Property Map>
environments This property is required. List<String>
hasLatestCalamari This property is required. Boolean
healthStatus This property is required. String
id This property is required. String
isDisabled This property is required. Boolean
isInProcess This property is required. Boolean
machinePolicyId This property is required. String
name This property is required. String
operatingSystem This property is required. String
roles This property is required. List<String>
securityMode This property is required. String
serverCertificateThumbprint This property is required. String
shellName This property is required. String
shellVersion This property is required. String
spaceId This property is required. String
status This property is required. String
statusSummary This property is required. String
tenantTags This property is required. List<String>
tenantedDeploymentParticipation This property is required. String
tenants This property is required. List<String>
thumbprint This property is required. String
uri This property is required. String

GetAzureServiceFabricClusterDeploymentTargetsAzureServiceFabricClusterDeploymentTargetEndpoint

AadClientCredentialSecret This property is required. string
AadCredentialType This property is required. string
AadUserCredentialUsername This property is required. string
AccountId This property is required. string
ApplicationsDirectory This property is required. string
Authentications This property is required. List<GetAzureServiceFabricClusterDeploymentTargetsAzureServiceFabricClusterDeploymentTargetEndpointAuthentication>
CertificateSignatureAlgorithm This property is required. string
CertificateStoreLocation This property is required. string
CertificateStoreName This property is required. string
ClientCertificateVariable This property is required. string
CloudServiceName This property is required. string
ClusterCertificate This property is required. string
ClusterCertificatePath This property is required. string
ClusterUrl This property is required. string
CommunicationStyle This property is required. string
ConnectionEndpoint This property is required. string
ContainerOptions This property is required. string
Containers This property is required. List<GetAzureServiceFabricClusterDeploymentTargetsAzureServiceFabricClusterDeploymentTargetEndpointContainer>
DefaultWorkerPoolId This property is required. string
Destinations This property is required. List<GetAzureServiceFabricClusterDeploymentTargetsAzureServiceFabricClusterDeploymentTargetEndpointDestination>
DotNetCorePlatform This property is required. string
Fingerprint This property is required. string
Host This property is required. string
Id This property is required. string
Namespace This property is required. string
Port This property is required. double
ProxyId This property is required. string
ResourceGroupName This property is required. string
RunningInContainer This property is required. bool
SecurityMode This property is required. string
ServerCertificateThumbprint This property is required. string
SkipTlsVerification This property is required. bool
Slot This property is required. string
StorageAccountName This property is required. string
SwapIfPossible This property is required. bool
TentacleVersionDetails This property is required. List<GetAzureServiceFabricClusterDeploymentTargetsAzureServiceFabricClusterDeploymentTargetEndpointTentacleVersionDetail>
Thumbprint This property is required. string
Uri This property is required. string
UseCurrentInstanceCount This property is required. bool
WebAppName This property is required. string
WebAppSlotName This property is required. string
WorkingDirectory This property is required. string
AadClientCredentialSecret This property is required. string
AadCredentialType This property is required. string
AadUserCredentialUsername This property is required. string
AccountId This property is required. string
ApplicationsDirectory This property is required. string
Authentications This property is required. []GetAzureServiceFabricClusterDeploymentTargetsAzureServiceFabricClusterDeploymentTargetEndpointAuthentication
CertificateSignatureAlgorithm This property is required. string
CertificateStoreLocation This property is required. string
CertificateStoreName This property is required. string
ClientCertificateVariable This property is required. string
CloudServiceName This property is required. string
ClusterCertificate This property is required. string
ClusterCertificatePath This property is required. string
ClusterUrl This property is required. string
CommunicationStyle This property is required. string
ConnectionEndpoint This property is required. string
ContainerOptions This property is required. string
Containers This property is required. []GetAzureServiceFabricClusterDeploymentTargetsAzureServiceFabricClusterDeploymentTargetEndpointContainer
DefaultWorkerPoolId This property is required. string
Destinations This property is required. []GetAzureServiceFabricClusterDeploymentTargetsAzureServiceFabricClusterDeploymentTargetEndpointDestination
DotNetCorePlatform This property is required. string
Fingerprint This property is required. string
Host This property is required. string
Id This property is required. string
Namespace This property is required. string
Port This property is required. float64
ProxyId This property is required. string
ResourceGroupName This property is required. string
RunningInContainer This property is required. bool
SecurityMode This property is required. string
ServerCertificateThumbprint This property is required. string
SkipTlsVerification This property is required. bool
Slot This property is required. string
StorageAccountName This property is required. string
SwapIfPossible This property is required. bool
TentacleVersionDetails This property is required. []GetAzureServiceFabricClusterDeploymentTargetsAzureServiceFabricClusterDeploymentTargetEndpointTentacleVersionDetail
Thumbprint This property is required. string
Uri This property is required. string
UseCurrentInstanceCount This property is required. bool
WebAppName This property is required. string
WebAppSlotName This property is required. string
WorkingDirectory This property is required. string
aadClientCredentialSecret This property is required. String
aadCredentialType This property is required. String
aadUserCredentialUsername This property is required. String
accountId This property is required. String
applicationsDirectory This property is required. String
authentications This property is required. List<GetAzureServiceFabricClusterDeploymentTargetsAzureServiceFabricClusterDeploymentTargetEndpointAuthentication>
certificateSignatureAlgorithm This property is required. String
certificateStoreLocation This property is required. String
certificateStoreName This property is required. String
clientCertificateVariable This property is required. String
cloudServiceName This property is required. String
clusterCertificate This property is required. String
clusterCertificatePath This property is required. String
clusterUrl This property is required. String
communicationStyle This property is required. String
connectionEndpoint This property is required. String
containerOptions This property is required. String
containers This property is required. List<GetAzureServiceFabricClusterDeploymentTargetsAzureServiceFabricClusterDeploymentTargetEndpointContainer>
defaultWorkerPoolId This property is required. String
destinations This property is required. List<GetAzureServiceFabricClusterDeploymentTargetsAzureServiceFabricClusterDeploymentTargetEndpointDestination>
dotNetCorePlatform This property is required. String
fingerprint This property is required. String
host This property is required. String
id This property is required. String
namespace This property is required. String
port This property is required. Double
proxyId This property is required. String
resourceGroupName This property is required. String
runningInContainer This property is required. Boolean
securityMode This property is required. String
serverCertificateThumbprint This property is required. String
skipTlsVerification This property is required. Boolean
slot This property is required. String
storageAccountName This property is required. String
swapIfPossible This property is required. Boolean
tentacleVersionDetails This property is required. List<GetAzureServiceFabricClusterDeploymentTargetsAzureServiceFabricClusterDeploymentTargetEndpointTentacleVersionDetail>
thumbprint This property is required. String
uri This property is required. String
useCurrentInstanceCount This property is required. Boolean
webAppName This property is required. String
webAppSlotName This property is required. String
workingDirectory This property is required. String
aadClientCredentialSecret This property is required. string
aadCredentialType This property is required. string
aadUserCredentialUsername This property is required. string
accountId This property is required. string
applicationsDirectory This property is required. string
authentications This property is required. GetAzureServiceFabricClusterDeploymentTargetsAzureServiceFabricClusterDeploymentTargetEndpointAuthentication[]
certificateSignatureAlgorithm This property is required. string
certificateStoreLocation This property is required. string
certificateStoreName This property is required. string
clientCertificateVariable This property is required. string
cloudServiceName This property is required. string
clusterCertificate This property is required. string
clusterCertificatePath This property is required. string
clusterUrl This property is required. string
communicationStyle This property is required. string
connectionEndpoint This property is required. string
containerOptions This property is required. string
containers This property is required. GetAzureServiceFabricClusterDeploymentTargetsAzureServiceFabricClusterDeploymentTargetEndpointContainer[]
defaultWorkerPoolId This property is required. string
destinations This property is required. GetAzureServiceFabricClusterDeploymentTargetsAzureServiceFabricClusterDeploymentTargetEndpointDestination[]
dotNetCorePlatform This property is required. string
fingerprint This property is required. string
host This property is required. string
id This property is required. string
namespace This property is required. string
port This property is required. number
proxyId This property is required. string
resourceGroupName This property is required. string
runningInContainer This property is required. boolean
securityMode This property is required. string
serverCertificateThumbprint This property is required. string
skipTlsVerification This property is required. boolean
slot This property is required. string
storageAccountName This property is required. string
swapIfPossible This property is required. boolean
tentacleVersionDetails This property is required. GetAzureServiceFabricClusterDeploymentTargetsAzureServiceFabricClusterDeploymentTargetEndpointTentacleVersionDetail[]
thumbprint This property is required. string
uri This property is required. string
useCurrentInstanceCount This property is required. boolean
webAppName This property is required. string
webAppSlotName This property is required. string
workingDirectory This property is required. string
aad_client_credential_secret This property is required. str
aad_credential_type This property is required. str
aad_user_credential_username This property is required. str
account_id This property is required. str
applications_directory This property is required. str
authentications This property is required. Sequence[GetAzureServiceFabricClusterDeploymentTargetsAzureServiceFabricClusterDeploymentTargetEndpointAuthentication]
certificate_signature_algorithm This property is required. str
certificate_store_location This property is required. str
certificate_store_name This property is required. str
client_certificate_variable This property is required. str
cloud_service_name This property is required. str
cluster_certificate This property is required. str
cluster_certificate_path This property is required. str
cluster_url This property is required. str
communication_style This property is required. str
connection_endpoint This property is required. str
container_options This property is required. str
containers This property is required. Sequence[GetAzureServiceFabricClusterDeploymentTargetsAzureServiceFabricClusterDeploymentTargetEndpointContainer]
default_worker_pool_id This property is required. str
destinations This property is required. Sequence[GetAzureServiceFabricClusterDeploymentTargetsAzureServiceFabricClusterDeploymentTargetEndpointDestination]
dot_net_core_platform This property is required. str
fingerprint This property is required. str
host This property is required. str
id This property is required. str
namespace This property is required. str
port This property is required. float
proxy_id This property is required. str
resource_group_name This property is required. str
running_in_container This property is required. bool
security_mode This property is required. str
server_certificate_thumbprint This property is required. str
skip_tls_verification This property is required. bool
slot This property is required. str
storage_account_name This property is required. str
swap_if_possible This property is required. bool
tentacle_version_details This property is required. Sequence[GetAzureServiceFabricClusterDeploymentTargetsAzureServiceFabricClusterDeploymentTargetEndpointTentacleVersionDetail]
thumbprint This property is required. str
uri This property is required. str
use_current_instance_count This property is required. bool
web_app_name This property is required. str
web_app_slot_name This property is required. str
working_directory This property is required. str
aadClientCredentialSecret This property is required. String
aadCredentialType This property is required. String
aadUserCredentialUsername This property is required. String
accountId This property is required. String
applicationsDirectory This property is required. String
authentications This property is required. List<Property Map>
certificateSignatureAlgorithm This property is required. String
certificateStoreLocation This property is required. String
certificateStoreName This property is required. String
clientCertificateVariable This property is required. String
cloudServiceName This property is required. String
clusterCertificate This property is required. String
clusterCertificatePath This property is required. String
clusterUrl This property is required. String
communicationStyle This property is required. String
connectionEndpoint This property is required. String
containerOptions This property is required. String
containers This property is required. List<Property Map>
defaultWorkerPoolId This property is required. String
destinations This property is required. List<Property Map>
dotNetCorePlatform This property is required. String
fingerprint This property is required. String
host This property is required. String
id This property is required. String
namespace This property is required. String
port This property is required. Number
proxyId This property is required. String
resourceGroupName This property is required. String
runningInContainer This property is required. Boolean
securityMode This property is required. String
serverCertificateThumbprint This property is required. String
skipTlsVerification This property is required. Boolean
slot This property is required. String
storageAccountName This property is required. String
swapIfPossible This property is required. Boolean
tentacleVersionDetails This property is required. List<Property Map>
thumbprint This property is required. String
uri This property is required. String
useCurrentInstanceCount This property is required. Boolean
webAppName This property is required. String
webAppSlotName This property is required. String
workingDirectory This property is required. String

GetAzureServiceFabricClusterDeploymentTargetsAzureServiceFabricClusterDeploymentTargetEndpointAuthentication

AccountId This property is required. string
AdminLogin This property is required. string
AssumeRole This property is required. bool
AssumeRoleExternalId This property is required. string
AssumeRoleSessionDuration This property is required. double
AssumedRoleArn This property is required. string
AssumedRoleSession This property is required. string
AuthenticationType This property is required. string
ClientCertificate This property is required. string
ClusterName This property is required. string
ClusterResourceGroup This property is required. string
ImpersonateServiceAccount This property is required. bool
Project This property is required. string
Region This property is required. string
ServiceAccountEmails This property is required. string
TokenPath This property is required. string
UseInstanceRole This property is required. bool
UseVmServiceAccount This property is required. bool
Zone This property is required. string
AccountId This property is required. string
AdminLogin This property is required. string
AssumeRole This property is required. bool
AssumeRoleExternalId This property is required. string
AssumeRoleSessionDuration This property is required. float64
AssumedRoleArn This property is required. string
AssumedRoleSession This property is required. string
AuthenticationType This property is required. string
ClientCertificate This property is required. string
ClusterName This property is required. string
ClusterResourceGroup This property is required. string
ImpersonateServiceAccount This property is required. bool
Project This property is required. string
Region This property is required. string
ServiceAccountEmails This property is required. string
TokenPath This property is required. string
UseInstanceRole This property is required. bool
UseVmServiceAccount This property is required. bool
Zone This property is required. string
accountId This property is required. String
adminLogin This property is required. String
assumeRole This property is required. Boolean
assumeRoleExternalId This property is required. String
assumeRoleSessionDuration This property is required. Double
assumedRoleArn This property is required. String
assumedRoleSession This property is required. String
authenticationType This property is required. String
clientCertificate This property is required. String
clusterName This property is required. String
clusterResourceGroup This property is required. String
impersonateServiceAccount This property is required. Boolean
project This property is required. String
region This property is required. String
serviceAccountEmails This property is required. String
tokenPath This property is required. String
useInstanceRole This property is required. Boolean
useVmServiceAccount This property is required. Boolean
zone This property is required. String
accountId This property is required. string
adminLogin This property is required. string
assumeRole This property is required. boolean
assumeRoleExternalId This property is required. string
assumeRoleSessionDuration This property is required. number
assumedRoleArn This property is required. string
assumedRoleSession This property is required. string
authenticationType This property is required. string
clientCertificate This property is required. string
clusterName This property is required. string
clusterResourceGroup This property is required. string
impersonateServiceAccount This property is required. boolean
project This property is required. string
region This property is required. string
serviceAccountEmails This property is required. string
tokenPath This property is required. string
useInstanceRole This property is required. boolean
useVmServiceAccount This property is required. boolean
zone This property is required. string
account_id This property is required. str
admin_login This property is required. str
assume_role This property is required. bool
assume_role_external_id This property is required. str
assume_role_session_duration This property is required. float
assumed_role_arn This property is required. str
assumed_role_session This property is required. str
authentication_type This property is required. str
client_certificate This property is required. str
cluster_name This property is required. str
cluster_resource_group This property is required. str
impersonate_service_account This property is required. bool
project This property is required. str
region This property is required. str
service_account_emails This property is required. str
token_path This property is required. str
use_instance_role This property is required. bool
use_vm_service_account This property is required. bool
zone This property is required. str
accountId This property is required. String
adminLogin This property is required. String
assumeRole This property is required. Boolean
assumeRoleExternalId This property is required. String
assumeRoleSessionDuration This property is required. Number
assumedRoleArn This property is required. String
assumedRoleSession This property is required. String
authenticationType This property is required. String
clientCertificate This property is required. String
clusterName This property is required. String
clusterResourceGroup This property is required. String
impersonateServiceAccount This property is required. Boolean
project This property is required. String
region This property is required. String
serviceAccountEmails This property is required. String
tokenPath This property is required. String
useInstanceRole This property is required. Boolean
useVmServiceAccount This property is required. Boolean
zone This property is required. String

GetAzureServiceFabricClusterDeploymentTargetsAzureServiceFabricClusterDeploymentTargetEndpointContainer

FeedId This property is required. string
Image This property is required. string
FeedId This property is required. string
Image This property is required. string
feedId This property is required. String
image This property is required. String
feedId This property is required. string
image This property is required. string
feed_id This property is required. str
image This property is required. str
feedId This property is required. String
image This property is required. String

GetAzureServiceFabricClusterDeploymentTargetsAzureServiceFabricClusterDeploymentTargetEndpointDestination

DestinationType This property is required. string
DropFolderPath This property is required. string
DestinationType This property is required. string
DropFolderPath This property is required. string
destinationType This property is required. String
dropFolderPath This property is required. String
destinationType This property is required. string
dropFolderPath This property is required. string
destination_type This property is required. str
drop_folder_path This property is required. str
destinationType This property is required. String
dropFolderPath This property is required. String

GetAzureServiceFabricClusterDeploymentTargetsAzureServiceFabricClusterDeploymentTargetEndpointTentacleVersionDetail

UpgradeLocked This property is required. bool
UpgradeRequired This property is required. bool
UpgradeSuggested This property is required. bool
Version This property is required. string
UpgradeLocked This property is required. bool
UpgradeRequired This property is required. bool
UpgradeSuggested This property is required. bool
Version This property is required. string
upgradeLocked This property is required. Boolean
upgradeRequired This property is required. Boolean
upgradeSuggested This property is required. Boolean
version This property is required. String
upgradeLocked This property is required. boolean
upgradeRequired This property is required. boolean
upgradeSuggested This property is required. boolean
version This property is required. string
upgrade_locked This property is required. bool
upgrade_required This property is required. bool
upgrade_suggested This property is required. bool
version This property is required. str
upgradeLocked This property is required. Boolean
upgradeRequired This property is required. Boolean
upgradeSuggested This property is required. Boolean
version This property is required. String

Package Details

Repository
octopusdeploy octopusdeploylabs/terraform-provider-octopusdeploy
License
Notes
This Pulumi package is based on the octopusdeploy Terraform Provider.