octopusdeploy 0.43.1 published on Wednesday, Apr 30, 2025 by octopusdeploylabs
octopusdeploy.getAzureCloudServiceDeploymentTargets
Explore with Pulumi AI
octopusdeploy 0.43.1 published on Wednesday, Apr 30, 2025 by octopusdeploylabs
Provides information about existing Azure cloud service deployment targets.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as octopusdeploy from "@pulumi/octopusdeploy";
const example = octopusdeploy.getAzureCloudServiceDeploymentTargets({
healthStatuses: [
"Healthy",
"Unavailable",
],
ids: [
"Machines-123",
"Machines-321",
],
partialName: "Defau",
skip: 5,
take: 100,
});
import pulumi
import pulumi_octopusdeploy as octopusdeploy
example = octopusdeploy.get_azure_cloud_service_deployment_targets(health_statuses=[
"Healthy",
"Unavailable",
],
ids=[
"Machines-123",
"Machines-321",
],
partial_name="Defau",
skip=5,
take=100)
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.GetAzureCloudServiceDeploymentTargets(ctx, &octopusdeploy.GetAzureCloudServiceDeploymentTargetsArgs{
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
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Octopusdeploy = Pulumi.Octopusdeploy;
return await Deployment.RunAsync(() =>
{
var example = Octopusdeploy.GetAzureCloudServiceDeploymentTargets.Invoke(new()
{
HealthStatuses = new[]
{
"Healthy",
"Unavailable",
},
Ids = new[]
{
"Machines-123",
"Machines-321",
},
PartialName = "Defau",
Skip = 5,
Take = 100,
});
});
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.GetAzureCloudServiceDeploymentTargetsArgs;
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.getAzureCloudServiceDeploymentTargets(GetAzureCloudServiceDeploymentTargetsArgs.builder()
.healthStatuses(
"Healthy",
"Unavailable")
.ids(
"Machines-123",
"Machines-321")
.partialName("Defau")
.skip(5)
.take(100)
.build());
}
}
variables:
example:
fn::invoke:
function: octopusdeploy:getAzureCloudServiceDeploymentTargets
arguments:
healthStatuses:
- Healthy
- Unavailable
ids:
- Machines-123
- Machines-321
partialName: Defau
skip: 5
take: 100
Using getAzureCloudServiceDeploymentTargets
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 getAzureCloudServiceDeploymentTargets(args: GetAzureCloudServiceDeploymentTargetsArgs, opts?: InvokeOptions): Promise<GetAzureCloudServiceDeploymentTargetsResult>
function getAzureCloudServiceDeploymentTargetsOutput(args: GetAzureCloudServiceDeploymentTargetsOutputArgs, opts?: InvokeOptions): Output<GetAzureCloudServiceDeploymentTargetsResult>
def get_azure_cloud_service_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) -> GetAzureCloudServiceDeploymentTargetsResult
def get_azure_cloud_service_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[GetAzureCloudServiceDeploymentTargetsResult]
func GetAzureCloudServiceDeploymentTargets(ctx *Context, args *GetAzureCloudServiceDeploymentTargetsArgs, opts ...InvokeOption) (*GetAzureCloudServiceDeploymentTargetsResult, error)
func GetAzureCloudServiceDeploymentTargetsOutput(ctx *Context, args *GetAzureCloudServiceDeploymentTargetsOutputArgs, opts ...InvokeOption) GetAzureCloudServiceDeploymentTargetsResultOutput
> Note: This function is named GetAzureCloudServiceDeploymentTargets
in the Go SDK.
public static class GetAzureCloudServiceDeploymentTargets
{
public static Task<GetAzureCloudServiceDeploymentTargetsResult> InvokeAsync(GetAzureCloudServiceDeploymentTargetsArgs args, InvokeOptions? opts = null)
public static Output<GetAzureCloudServiceDeploymentTargetsResult> Invoke(GetAzureCloudServiceDeploymentTargetsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetAzureCloudServiceDeploymentTargetsResult> getAzureCloudServiceDeploymentTargets(GetAzureCloudServiceDeploymentTargetsArgs args, InvokeOptions options)
public static Output<GetAzureCloudServiceDeploymentTargetsResult> getAzureCloudServiceDeploymentTargets(GetAzureCloudServiceDeploymentTargetsArgs args, InvokeOptions options)
fn::invoke:
function: octopusdeploy:index/getAzureCloudServiceDeploymentTargets:getAzureCloudServiceDeploymentTargets
arguments:
# arguments dictionary
The following arguments are supported:
- Deployment
Id string - A filter to search by deployment ID.
- Environments List<string>
- A filter to search by a list of environment IDs.
- Health
Statuses List<string> - A filter to search by a list of health statuses of resources. Valid health statuses are
HasWarnings
,Healthy
,Unavailable
,Unhealthy
, orUnknown
. - Ids List<string>
- A filter to search by a list of IDs.
- Is
Disabled bool - A filter to search by the disabled status of a resource.
- Name string
- A filter to search by name.
- Partial
Name 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.
- Shell
Names 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.
- Space
Id 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.
- 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
- Deployment
Id string - A filter to search by deployment ID.
- Environments []string
- A filter to search by a list of environment IDs.
- Health
Statuses []string - A filter to search by a list of health statuses of resources. Valid health statuses are
HasWarnings
,Healthy
,Unavailable
,Unhealthy
, orUnknown
. - Ids []string
- A filter to search by a list of IDs.
- Is
Disabled bool - A filter to search by the disabled status of a resource.
- Name string
- A filter to search by name.
- Partial
Name string - A filter to search by the partial match of a name.
- Roles []string
- A filter to search by a list of role IDs.
- Shell
Names []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.
- Space
Id 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.
- []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 String - A filter to search by deployment ID.
- environments List<String>
- A filter to search by a list of environment IDs.
- health
Statuses List<String> - A filter to search by a list of health statuses of resources. Valid health statuses are
HasWarnings
,Healthy
,Unavailable
,Unhealthy
, orUnknown
. - ids List<String>
- A filter to search by a list of IDs.
- is
Disabled Boolean - A filter to search by the disabled status of a resource.
- name String
- A filter to search by name.
- partial
Name 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.
- shell
Names 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.
- space
Id 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.
- 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
- deployment
Id string - A filter to search by deployment ID.
- environments string[]
- A filter to search by a list of environment IDs.
- health
Statuses string[] - A filter to search by a list of health statuses of resources. Valid health statuses are
HasWarnings
,Healthy
,Unavailable
,Unhealthy
, orUnknown
. - ids string[]
- A filter to search by a list of IDs.
- is
Disabled boolean - A filter to search by the disabled status of a resource.
- name string
- A filter to search by name.
- partial
Name string - A filter to search by the partial match of a name.
- roles string[]
- A filter to search by a list of role IDs.
- shell
Names 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.
- space
Id 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.
- 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
, orUnknown
. - 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.
- 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
- deployment
Id String - A filter to search by deployment ID.
- environments List<String>
- A filter to search by a list of environment IDs.
- health
Statuses List<String> - A filter to search by a list of health statuses of resources. Valid health statuses are
HasWarnings
,Healthy
,Unavailable
,Unhealthy
, orUnknown
. - ids List<String>
- A filter to search by a list of IDs.
- is
Disabled Boolean - A filter to search by the disabled status of a resource.
- name String
- A filter to search by name.
- partial
Name 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.
- shell
Names 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.
- space
Id 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.
- 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
getAzureCloudServiceDeploymentTargets Result
The following output properties are available:
- Azure
Cloud List<GetService Deployment Targets Azure Cloud Service Deployment Targets Azure Cloud Service Deployment Target> - A list of Azure cloud service deployment targets that match the filter(s).
- Id string
- An auto-generated identifier that includes the timestamp when this data source was last modified.
- Space
Id string - The space ID associated with this resource.
- Deployment
Id string - A filter to search by deployment ID.
- Environments List<string>
- A filter to search by a list of environment IDs.
- Health
Statuses List<string> - A filter to search by a list of health statuses of resources. Valid health statuses are
HasWarnings
,Healthy
,Unavailable
,Unhealthy
, orUnknown
. - Ids List<string>
- A filter to search by a list of IDs.
- Is
Disabled bool - A filter to search by the disabled status of a resource.
- Name string
- A filter to search by name.
- Partial
Name 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.
- Shell
Names 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.
- 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
- Azure
Cloud []GetService Deployment Targets Azure Cloud Service Deployment Targets Azure Cloud Service Deployment Target - A list of Azure cloud service deployment targets that match the filter(s).
- Id string
- An auto-generated identifier that includes the timestamp when this data source was last modified.
- Space
Id string - The space ID associated with this resource.
- Deployment
Id string - A filter to search by deployment ID.
- Environments []string
- A filter to search by a list of environment IDs.
- Health
Statuses []string - A filter to search by a list of health statuses of resources. Valid health statuses are
HasWarnings
,Healthy
,Unavailable
,Unhealthy
, orUnknown
. - Ids []string
- A filter to search by a list of IDs.
- Is
Disabled bool - A filter to search by the disabled status of a resource.
- Name string
- A filter to search by name.
- Partial
Name string - A filter to search by the partial match of a name.
- Roles []string
- A filter to search by a list of role IDs.
- Shell
Names []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.
- []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
Cloud List<GetService Deployment Targets Azure Cloud Service Deployment Targets Azure Cloud Service Deployment Target> - A list of Azure cloud service deployment targets that match the filter(s).
- id String
- An auto-generated identifier that includes the timestamp when this data source was last modified.
- space
Id String - The space ID associated with this resource.
- deployment
Id String - A filter to search by deployment ID.
- environments List<String>
- A filter to search by a list of environment IDs.
- health
Statuses List<String> - A filter to search by a list of health statuses of resources. Valid health statuses are
HasWarnings
,Healthy
,Unavailable
,Unhealthy
, orUnknown
. - ids List<String>
- A filter to search by a list of IDs.
- is
Disabled Boolean - A filter to search by the disabled status of a resource.
- name String
- A filter to search by name.
- partial
Name 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.
- shell
Names 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.
- 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
- azure
Cloud GetService Deployment Targets Azure Cloud Service Deployment Targets Azure Cloud Service Deployment Target[] - A list of Azure cloud service deployment targets that match the filter(s).
- id string
- An auto-generated identifier that includes the timestamp when this data source was last modified.
- space
Id string - The space ID associated with this resource.
- deployment
Id string - A filter to search by deployment ID.
- environments string[]
- A filter to search by a list of environment IDs.
- health
Statuses string[] - A filter to search by a list of health statuses of resources. Valid health statuses are
HasWarnings
,Healthy
,Unavailable
,Unhealthy
, orUnknown
. - ids string[]
- A filter to search by a list of IDs.
- is
Disabled boolean - A filter to search by the disabled status of a resource.
- name string
- A filter to search by name.
- partial
Name string - A filter to search by the partial match of a name.
- roles string[]
- A filter to search by a list of role IDs.
- shell
Names 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.
- 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_
cloud_ Sequence[Getservice_ deployment_ targets Azure Cloud Service Deployment Targets Azure Cloud Service Deployment Target] - A list of Azure cloud service 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
, orUnknown
. - 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.
- 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
- azure
Cloud List<Property Map>Service Deployment Targets - A list of Azure cloud service deployment targets that match the filter(s).
- id String
- An auto-generated identifier that includes the timestamp when this data source was last modified.
- space
Id String - The space ID associated with this resource.
- deployment
Id String - A filter to search by deployment ID.
- environments List<String>
- A filter to search by a list of environment IDs.
- health
Statuses List<String> - A filter to search by a list of health statuses of resources. Valid health statuses are
HasWarnings
,Healthy
,Unavailable
,Unhealthy
, orUnknown
. - ids List<String>
- A filter to search by a list of IDs.
- is
Disabled Boolean - A filter to search by the disabled status of a resource.
- name String
- A filter to search by name.
- partial
Name 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.
- shell
Names 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.
- 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
GetAzureCloudServiceDeploymentTargetsAzureCloudServiceDeploymentTarget
- Account
Id string - Cloud
Service stringName - Default
Worker stringPool Id - Endpoints
List<Get
Azure Cloud Service Deployment Targets Azure Cloud Service Deployment Target Endpoint> - Environments List<string>
- Has
Latest boolCalamari - Health
Status string - Id string
- Is
Disabled bool - Is
In boolProcess - Machine
Policy stringId - Name string
- Operating
System string - Roles List<string>
- Shell
Name string - Shell
Version string - Slot string
- Space
Id string - Status string
- Status
Summary string - Storage
Account stringName - Swap
If boolPossible - List<string>
- Tenanted
Deployment stringParticipation - Tenants List<string>
- Thumbprint string
- Uri string
- Use
Current boolInstance Count
- Account
Id string - Cloud
Service stringName - Default
Worker stringPool Id - Endpoints
[]Get
Azure Cloud Service Deployment Targets Azure Cloud Service Deployment Target Endpoint - Environments []string
- Has
Latest boolCalamari - Health
Status string - Id string
- Is
Disabled bool - Is
In boolProcess - Machine
Policy stringId - Name string
- Operating
System string - Roles []string
- Shell
Name string - Shell
Version string - Slot string
- Space
Id string - Status string
- Status
Summary string - Storage
Account stringName - Swap
If boolPossible - []string
- Tenanted
Deployment stringParticipation - Tenants []string
- Thumbprint string
- Uri string
- Use
Current boolInstance Count
- account
Id String - cloud
Service StringName - default
Worker StringPool Id - endpoints
List<Get
Azure Cloud Service Deployment Targets Azure Cloud Service Deployment Target Endpoint> - environments List<String>
- has
Latest BooleanCalamari - health
Status String - id String
- is
Disabled Boolean - is
In BooleanProcess - machine
Policy StringId - name String
- operating
System String - roles List<String>
- shell
Name String - shell
Version String - slot String
- space
Id String - status String
- status
Summary String - storage
Account StringName - swap
If BooleanPossible - List<String>
- tenanted
Deployment StringParticipation - tenants List<String>
- thumbprint String
- uri String
- use
Current BooleanInstance Count
- account
Id string - cloud
Service stringName - default
Worker stringPool Id - endpoints
Get
Azure Cloud Service Deployment Targets Azure Cloud Service Deployment Target Endpoint[] - environments string[]
- has
Latest booleanCalamari - health
Status string - id string
- is
Disabled boolean - is
In booleanProcess - machine
Policy stringId - name string
- operating
System string - roles string[]
- shell
Name string - shell
Version string - slot string
- space
Id string - status string
- status
Summary string - storage
Account stringName - swap
If booleanPossible - string[]
- tenanted
Deployment stringParticipation - tenants string[]
- thumbprint string
- uri string
- use
Current booleanInstance Count
- account_
id str - cloud_
service_ strname - default_
worker_ strpool_ id - endpoints
Sequence[Get
Azure Cloud Service Deployment Targets Azure Cloud Service Deployment Target Endpoint] - environments Sequence[str]
- has_
latest_ boolcalamari - health_
status str - id str
- is_
disabled bool - is_
in_ boolprocess - machine_
policy_ strid - name str
- operating_
system str - roles Sequence[str]
- shell_
name str - shell_
version str - slot str
- space_
id str - status str
- status_
summary str - storage_
account_ strname - swap_
if_ boolpossible - Sequence[str]
- tenanted_
deployment_ strparticipation - tenants Sequence[str]
- thumbprint str
- uri str
- use_
current_ boolinstance_ count
- account
Id String - cloud
Service StringName - default
Worker StringPool Id - endpoints List<Property Map>
- environments List<String>
- has
Latest BooleanCalamari - health
Status String - id String
- is
Disabled Boolean - is
In BooleanProcess - machine
Policy StringId - name String
- operating
System String - roles List<String>
- shell
Name String - shell
Version String - slot String
- space
Id String - status String
- status
Summary String - storage
Account StringName - swap
If BooleanPossible - List<String>
- tenanted
Deployment StringParticipation - tenants List<String>
- thumbprint String
- uri String
- use
Current BooleanInstance Count
GetAzureCloudServiceDeploymentTargetsAzureCloudServiceDeploymentTargetEndpoint
- Aad
Client stringCredential Secret - Aad
Credential stringType - Aad
User stringCredential Username - Account
Id string - Applications
Directory string - Authentications
List<Get
Azure Cloud Service Deployment Targets Azure Cloud Service Deployment Target Endpoint Authentication> - Certificate
Signature stringAlgorithm - Certificate
Store stringLocation - Certificate
Store stringName - Client
Certificate stringVariable - Cloud
Service stringName - Cluster
Certificate string - Cluster
Certificate stringPath - Cluster
Url string - Communication
Style string - Connection
Endpoint string - Container
Options string - Containers
List<Get
Azure Cloud Service Deployment Targets Azure Cloud Service Deployment Target Endpoint Container> - Default
Worker stringPool Id - Destinations
List<Get
Azure Cloud Service Deployment Targets Azure Cloud Service Deployment Target Endpoint Destination> - Dot
Net stringCore Platform - Fingerprint string
- Host string
- Id string
- Namespace string
- Port double
- Proxy
Id string - Resource
Group stringName - Running
In boolContainer - Security
Mode string - Server
Certificate stringThumbprint - Skip
Tls boolVerification - Slot string
- Storage
Account stringName - Swap
If boolPossible - Tentacle
Version List<GetDetails Azure Cloud Service Deployment Targets Azure Cloud Service Deployment Target Endpoint Tentacle Version Detail> - Thumbprint string
- Uri string
- Use
Current boolInstance Count - Web
App stringName - Web
App stringSlot Name - Working
Directory string
- Aad
Client stringCredential Secret - Aad
Credential stringType - Aad
User stringCredential Username - Account
Id string - Applications
Directory string - Authentications
[]Get
Azure Cloud Service Deployment Targets Azure Cloud Service Deployment Target Endpoint Authentication - Certificate
Signature stringAlgorithm - Certificate
Store stringLocation - Certificate
Store stringName - Client
Certificate stringVariable - Cloud
Service stringName - Cluster
Certificate string - Cluster
Certificate stringPath - Cluster
Url string - Communication
Style string - Connection
Endpoint string - Container
Options string - Containers
[]Get
Azure Cloud Service Deployment Targets Azure Cloud Service Deployment Target Endpoint Container - Default
Worker stringPool Id - Destinations
[]Get
Azure Cloud Service Deployment Targets Azure Cloud Service Deployment Target Endpoint Destination - Dot
Net stringCore Platform - Fingerprint string
- Host string
- Id string
- Namespace string
- Port float64
- Proxy
Id string - Resource
Group stringName - Running
In boolContainer - Security
Mode string - Server
Certificate stringThumbprint - Skip
Tls boolVerification - Slot string
- Storage
Account stringName - Swap
If boolPossible - Tentacle
Version []GetDetails Azure Cloud Service Deployment Targets Azure Cloud Service Deployment Target Endpoint Tentacle Version Detail - Thumbprint string
- Uri string
- Use
Current boolInstance Count - Web
App stringName - Web
App stringSlot Name - Working
Directory string
- aad
Client StringCredential Secret - aad
Credential StringType - aad
User StringCredential Username - account
Id String - applications
Directory String - authentications
List<Get
Azure Cloud Service Deployment Targets Azure Cloud Service Deployment Target Endpoint Authentication> - certificate
Signature StringAlgorithm - certificate
Store StringLocation - certificate
Store StringName - client
Certificate StringVariable - cloud
Service StringName - cluster
Certificate String - cluster
Certificate StringPath - cluster
Url String - communication
Style String - connection
Endpoint String - container
Options String - containers
List<Get
Azure Cloud Service Deployment Targets Azure Cloud Service Deployment Target Endpoint Container> - default
Worker StringPool Id - destinations
List<Get
Azure Cloud Service Deployment Targets Azure Cloud Service Deployment Target Endpoint Destination> - dot
Net StringCore Platform - fingerprint String
- host String
- id String
- namespace String
- port Double
- proxy
Id String - resource
Group StringName - running
In BooleanContainer - security
Mode String - server
Certificate StringThumbprint - skip
Tls BooleanVerification - slot String
- storage
Account StringName - swap
If BooleanPossible - tentacle
Version List<GetDetails Azure Cloud Service Deployment Targets Azure Cloud Service Deployment Target Endpoint Tentacle Version Detail> - thumbprint String
- uri String
- use
Current BooleanInstance Count - web
App StringName - web
App StringSlot Name - working
Directory String
- aad
Client stringCredential Secret - aad
Credential stringType - aad
User stringCredential Username - account
Id string - applications
Directory string - authentications
Get
Azure Cloud Service Deployment Targets Azure Cloud Service Deployment Target Endpoint Authentication[] - certificate
Signature stringAlgorithm - certificate
Store stringLocation - certificate
Store stringName - client
Certificate stringVariable - cloud
Service stringName - cluster
Certificate string - cluster
Certificate stringPath - cluster
Url string - communication
Style string - connection
Endpoint string - container
Options string - containers
Get
Azure Cloud Service Deployment Targets Azure Cloud Service Deployment Target Endpoint Container[] - default
Worker stringPool Id - destinations
Get
Azure Cloud Service Deployment Targets Azure Cloud Service Deployment Target Endpoint Destination[] - dot
Net stringCore Platform - fingerprint string
- host string
- id string
- namespace string
- port number
- proxy
Id string - resource
Group stringName - running
In booleanContainer - security
Mode string - server
Certificate stringThumbprint - skip
Tls booleanVerification - slot string
- storage
Account stringName - swap
If booleanPossible - tentacle
Version GetDetails Azure Cloud Service Deployment Targets Azure Cloud Service Deployment Target Endpoint Tentacle Version Detail[] - thumbprint string
- uri string
- use
Current booleanInstance Count - web
App stringName - web
App stringSlot Name - working
Directory string
- aad_
client_ strcredential_ secret - aad_
credential_ strtype - aad_
user_ strcredential_ username - account_
id str - applications_
directory str - authentications
Sequence[Get
Azure Cloud Service Deployment Targets Azure Cloud Service Deployment Target Endpoint Authentication] - certificate_
signature_ stralgorithm - certificate_
store_ strlocation - certificate_
store_ strname - client_
certificate_ strvariable - cloud_
service_ strname - cluster_
certificate str - cluster_
certificate_ strpath - cluster_
url str - communication_
style str - connection_
endpoint str - container_
options str - containers
Sequence[Get
Azure Cloud Service Deployment Targets Azure Cloud Service Deployment Target Endpoint Container] - default_
worker_ strpool_ id - destinations
Sequence[Get
Azure Cloud Service Deployment Targets Azure Cloud Service Deployment Target Endpoint Destination] - dot_
net_ strcore_ platform - fingerprint str
- host str
- id str
- namespace str
- port float
- proxy_
id str - resource_
group_ strname - running_
in_ boolcontainer - security_
mode str - server_
certificate_ strthumbprint - skip_
tls_ boolverification - slot str
- storage_
account_ strname - swap_
if_ boolpossible - tentacle_
version_ Sequence[Getdetails Azure Cloud Service Deployment Targets Azure Cloud Service Deployment Target Endpoint Tentacle Version Detail] - thumbprint str
- uri str
- use_
current_ boolinstance_ count - web_
app_ strname - web_
app_ strslot_ name - working_
directory str
- aad
Client StringCredential Secret - aad
Credential StringType - aad
User StringCredential Username - account
Id String - applications
Directory String - authentications List<Property Map>
- certificate
Signature StringAlgorithm - certificate
Store StringLocation - certificate
Store StringName - client
Certificate StringVariable - cloud
Service StringName - cluster
Certificate String - cluster
Certificate StringPath - cluster
Url String - communication
Style String - connection
Endpoint String - container
Options String - containers List<Property Map>
- default
Worker StringPool Id - destinations List<Property Map>
- dot
Net StringCore Platform - fingerprint String
- host String
- id String
- namespace String
- port Number
- proxy
Id String - resource
Group StringName - running
In BooleanContainer - security
Mode String - server
Certificate StringThumbprint - skip
Tls BooleanVerification - slot String
- storage
Account StringName - swap
If BooleanPossible - tentacle
Version List<Property Map>Details - thumbprint String
- uri String
- use
Current BooleanInstance Count - web
App StringName - web
App StringSlot Name - working
Directory String
GetAzureCloudServiceDeploymentTargetsAzureCloudServiceDeploymentTargetEndpointAuthentication
- Account
Id string - Admin
Login string - Assume
Role bool - Assume
Role stringExternal Id - Assume
Role doubleSession Duration - Assumed
Role stringArn - Assumed
Role stringSession - Authentication
Type string - Client
Certificate string - Cluster
Name string - Cluster
Resource stringGroup - Impersonate
Service boolAccount - Project string
- Region string
- Service
Account stringEmails - Token
Path string - Use
Instance boolRole - Use
Vm boolService Account - Zone string
- Account
Id string - Admin
Login string - Assume
Role bool - Assume
Role stringExternal Id - Assume
Role float64Session Duration - Assumed
Role stringArn - Assumed
Role stringSession - Authentication
Type string - Client
Certificate string - Cluster
Name string - Cluster
Resource stringGroup - Impersonate
Service boolAccount - Project string
- Region string
- Service
Account stringEmails - Token
Path string - Use
Instance boolRole - Use
Vm boolService Account - Zone string
- account
Id String - admin
Login String - assume
Role Boolean - assume
Role StringExternal Id - assume
Role DoubleSession Duration - assumed
Role StringArn - assumed
Role StringSession - authentication
Type String - client
Certificate String - cluster
Name String - cluster
Resource StringGroup - impersonate
Service BooleanAccount - project String
- region String
- service
Account StringEmails - token
Path String - use
Instance BooleanRole - use
Vm BooleanService Account - zone String
- account
Id string - admin
Login string - assume
Role boolean - assume
Role stringExternal Id - assume
Role numberSession Duration - assumed
Role stringArn - assumed
Role stringSession - authentication
Type string - client
Certificate string - cluster
Name string - cluster
Resource stringGroup - impersonate
Service booleanAccount - project string
- region string
- service
Account stringEmails - token
Path string - use
Instance booleanRole - use
Vm booleanService Account - zone string
- account_
id str - admin_
login str - assume_
role bool - assume_
role_ strexternal_ id - assume_
role_ floatsession_ duration - assumed_
role_ strarn - assumed_
role_ strsession - authentication_
type str - client_
certificate str - cluster_
name str - cluster_
resource_ strgroup - impersonate_
service_ boolaccount - project str
- region str
- service_
account_ stremails - token_
path str - use_
instance_ boolrole - use_
vm_ boolservice_ account - zone str
- account
Id String - admin
Login String - assume
Role Boolean - assume
Role StringExternal Id - assume
Role NumberSession Duration - assumed
Role StringArn - assumed
Role StringSession - authentication
Type String - client
Certificate String - cluster
Name String - cluster
Resource StringGroup - impersonate
Service BooleanAccount - project String
- region String
- service
Account StringEmails - token
Path String - use
Instance BooleanRole - use
Vm BooleanService Account - zone String
GetAzureCloudServiceDeploymentTargetsAzureCloudServiceDeploymentTargetEndpointContainer
GetAzureCloudServiceDeploymentTargetsAzureCloudServiceDeploymentTargetEndpointDestination
- Destination
Type string - Drop
Folder stringPath
- Destination
Type string - Drop
Folder stringPath
- destination
Type String - drop
Folder StringPath
- destination
Type string - drop
Folder stringPath
- destination_
type str - drop_
folder_ strpath
- destination
Type String - drop
Folder StringPath
GetAzureCloudServiceDeploymentTargetsAzureCloudServiceDeploymentTargetEndpointTentacleVersionDetail
- Upgrade
Locked bool - Upgrade
Required bool - Upgrade
Suggested bool - Version string
- Upgrade
Locked bool - Upgrade
Required bool - Upgrade
Suggested bool - Version string
- upgrade
Locked Boolean - upgrade
Required Boolean - upgrade
Suggested Boolean - version String
- upgrade
Locked boolean - upgrade
Required boolean - upgrade
Suggested boolean - version string
- upgrade_
locked bool - upgrade_
required bool - upgrade_
suggested bool - version str
- upgrade
Locked Boolean - upgrade
Required Boolean - upgrade
Suggested Boolean - version String
Package Details
- Repository
- octopusdeploy octopusdeploylabs/terraform-provider-octopusdeploy
- License
- Notes
- This Pulumi package is based on the
octopusdeploy
Terraform Provider.
octopusdeploy 0.43.1 published on Wednesday, Apr 30, 2025 by octopusdeploylabs