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

octopusdeploy.getDeploymentFreezes

Explore with Pulumi AI

Provides information about deployment freezes

Example Usage

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

const testFreeze = octopusdeploy.getDeploymentFreezes({
    ids: undefined,
    partialName: "Freeze Name",
    skip: 5,
    take: 100,
});
const projectFreezes = octopusdeploy.getDeploymentFreezes({
    projectIds: ["projects-1"],
    skip: 0,
    take: 5,
});
const tenantFreezes = octopusdeploy.getDeploymentFreezes({
    tenantIds: ["tenants-1"],
    skip: 0,
    take: 10,
});
Copy
import pulumi
import pulumi_octopusdeploy as octopusdeploy

test_freeze = octopusdeploy.get_deployment_freezes(ids=None,
    partial_name="Freeze Name",
    skip=5,
    take=100)
project_freezes = octopusdeploy.get_deployment_freezes(project_ids=["projects-1"],
    skip=0,
    take=5)
tenant_freezes = octopusdeploy.get_deployment_freezes(tenant_ids=["tenants-1"],
    skip=0,
    take=10)
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.GetDeploymentFreezes(ctx, &octopusdeploy.GetDeploymentFreezesArgs{
			Ids:         nil,
			PartialName: pulumi.StringRef("Freeze Name"),
			Skip:        pulumi.Float64Ref(5),
			Take:        pulumi.Float64Ref(100),
		}, nil)
		if err != nil {
			return err
		}
		_, err = octopusdeploy.GetDeploymentFreezes(ctx, &octopusdeploy.GetDeploymentFreezesArgs{
			ProjectIds: []string{
				"projects-1",
			},
			Skip: pulumi.Float64Ref(0),
			Take: pulumi.Float64Ref(5),
		}, nil)
		if err != nil {
			return err
		}
		_, err = octopusdeploy.GetDeploymentFreezes(ctx, &octopusdeploy.GetDeploymentFreezesArgs{
			TenantIds: []string{
				"tenants-1",
			},
			Skip: pulumi.Float64Ref(0),
			Take: pulumi.Float64Ref(10),
		}, 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 testFreeze = Octopusdeploy.GetDeploymentFreezes.Invoke(new()
    {
        Ids = null,
        PartialName = "Freeze Name",
        Skip = 5,
        Take = 100,
    });

    var projectFreezes = Octopusdeploy.GetDeploymentFreezes.Invoke(new()
    {
        ProjectIds = new[]
        {
            "projects-1",
        },
        Skip = 0,
        Take = 5,
    });

    var tenantFreezes = Octopusdeploy.GetDeploymentFreezes.Invoke(new()
    {
        TenantIds = new[]
        {
            "tenants-1",
        },
        Skip = 0,
        Take = 10,
    });

});
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.GetDeploymentFreezesArgs;
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 testFreeze = OctopusdeployFunctions.getDeploymentFreezes(GetDeploymentFreezesArgs.builder()
            .ids(null)
            .partialName("Freeze Name")
            .skip(5)
            .take(100)
            .build());

        final var projectFreezes = OctopusdeployFunctions.getDeploymentFreezes(GetDeploymentFreezesArgs.builder()
            .projectIds("projects-1")
            .skip(0)
            .take(5)
            .build());

        final var tenantFreezes = OctopusdeployFunctions.getDeploymentFreezes(GetDeploymentFreezesArgs.builder()
            .tenantIds("tenants-1")
            .skip(0)
            .take(10)
            .build());

    }
}
Copy
variables:
  testFreeze:
    fn::invoke:
      function: octopusdeploy:getDeploymentFreezes
      arguments:
        ids: null
        partialName: Freeze Name
        skip: 5
        take: 100
  projectFreezes:
    fn::invoke:
      function: octopusdeploy:getDeploymentFreezes
      arguments:
        projectIds:
          - projects-1
        skip: 0
        take: 5
  tenantFreezes:
    fn::invoke:
      function: octopusdeploy:getDeploymentFreezes
      arguments:
        tenantIds:
          - tenants-1
        skip: 0
        take: 10
Copy

Using getDeploymentFreezes

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 getDeploymentFreezes(args: GetDeploymentFreezesArgs, opts?: InvokeOptions): Promise<GetDeploymentFreezesResult>
function getDeploymentFreezesOutput(args: GetDeploymentFreezesOutputArgs, opts?: InvokeOptions): Output<GetDeploymentFreezesResult>
Copy
def get_deployment_freezes(environment_ids: Optional[Sequence[str]] = None,
                           ids: Optional[Sequence[str]] = None,
                           include_complete: Optional[bool] = None,
                           partial_name: Optional[str] = None,
                           project_ids: Optional[Sequence[str]] = None,
                           skip: Optional[float] = None,
                           status: Optional[str] = None,
                           take: Optional[float] = None,
                           tenant_ids: Optional[Sequence[str]] = None,
                           opts: Optional[InvokeOptions] = None) -> GetDeploymentFreezesResult
def get_deployment_freezes_output(environment_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                           ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                           include_complete: Optional[pulumi.Input[bool]] = None,
                           partial_name: Optional[pulumi.Input[str]] = None,
                           project_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                           skip: Optional[pulumi.Input[float]] = None,
                           status: Optional[pulumi.Input[str]] = None,
                           take: Optional[pulumi.Input[float]] = None,
                           tenant_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                           opts: Optional[InvokeOptions] = None) -> Output[GetDeploymentFreezesResult]
Copy
func GetDeploymentFreezes(ctx *Context, args *GetDeploymentFreezesArgs, opts ...InvokeOption) (*GetDeploymentFreezesResult, error)
func GetDeploymentFreezesOutput(ctx *Context, args *GetDeploymentFreezesOutputArgs, opts ...InvokeOption) GetDeploymentFreezesResultOutput
Copy

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

public static class GetDeploymentFreezes 
{
    public static Task<GetDeploymentFreezesResult> InvokeAsync(GetDeploymentFreezesArgs args, InvokeOptions? opts = null)
    public static Output<GetDeploymentFreezesResult> Invoke(GetDeploymentFreezesInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetDeploymentFreezesResult> getDeploymentFreezes(GetDeploymentFreezesArgs args, InvokeOptions options)
public static Output<GetDeploymentFreezesResult> getDeploymentFreezes(GetDeploymentFreezesArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: octopusdeploy:index/getDeploymentFreezes:getDeploymentFreezes
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

EnvironmentIds List<string>
A filter to search by a list of environment IDs
Ids List<string>
A filter to search by a list of IDs.
IncludeComplete bool
Include deployment freezes that completed, default is true
PartialName string
A filter to search by a partial name.
ProjectIds List<string>
A filter to search by a list of project IDs
Skip double
A filter to specify the number of items to skip in the response.
Status string
Filter by the status of the deployment freeze, value values are Expired, Active, Scheduled (case-insensitive)
Take double
A filter to specify the number of items to take (or return) in the response.
TenantIds List<string>
A filter to search by a list of tenant IDs
EnvironmentIds []string
A filter to search by a list of environment IDs
Ids []string
A filter to search by a list of IDs.
IncludeComplete bool
Include deployment freezes that completed, default is true
PartialName string
A filter to search by a partial name.
ProjectIds []string
A filter to search by a list of project IDs
Skip float64
A filter to specify the number of items to skip in the response.
Status string
Filter by the status of the deployment freeze, value values are Expired, Active, Scheduled (case-insensitive)
Take float64
A filter to specify the number of items to take (or return) in the response.
TenantIds []string
A filter to search by a list of tenant IDs
environmentIds List<String>
A filter to search by a list of environment IDs
ids List<String>
A filter to search by a list of IDs.
includeComplete Boolean
Include deployment freezes that completed, default is true
partialName String
A filter to search by a partial name.
projectIds List<String>
A filter to search by a list of project IDs
skip Double
A filter to specify the number of items to skip in the response.
status String
Filter by the status of the deployment freeze, value values are Expired, Active, Scheduled (case-insensitive)
take Double
A filter to specify the number of items to take (or return) in the response.
tenantIds List<String>
A filter to search by a list of tenant IDs
environmentIds string[]
A filter to search by a list of environment IDs
ids string[]
A filter to search by a list of IDs.
includeComplete boolean
Include deployment freezes that completed, default is true
partialName string
A filter to search by a partial name.
projectIds string[]
A filter to search by a list of project IDs
skip number
A filter to specify the number of items to skip in the response.
status string
Filter by the status of the deployment freeze, value values are Expired, Active, Scheduled (case-insensitive)
take number
A filter to specify the number of items to take (or return) in the response.
tenantIds string[]
A filter to search by a list of tenant IDs
environment_ids Sequence[str]
A filter to search by a list of environment IDs
ids Sequence[str]
A filter to search by a list of IDs.
include_complete bool
Include deployment freezes that completed, default is true
partial_name str
A filter to search by a partial name.
project_ids Sequence[str]
A filter to search by a list of project IDs
skip float
A filter to specify the number of items to skip in the response.
status str
Filter by the status of the deployment freeze, value values are Expired, Active, Scheduled (case-insensitive)
take float
A filter to specify the number of items to take (or return) in the response.
tenant_ids Sequence[str]
A filter to search by a list of tenant IDs
environmentIds List<String>
A filter to search by a list of environment IDs
ids List<String>
A filter to search by a list of IDs.
includeComplete Boolean
Include deployment freezes that completed, default is true
partialName String
A filter to search by a partial name.
projectIds List<String>
A filter to search by a list of project IDs
skip Number
A filter to specify the number of items to skip in the response.
status String
Filter by the status of the deployment freeze, value values are Expired, Active, Scheduled (case-insensitive)
take Number
A filter to specify the number of items to take (or return) in the response.
tenantIds List<String>
A filter to search by a list of tenant IDs

getDeploymentFreezes Result

The following output properties are available:

DeploymentFreezes List<GetDeploymentFreezesDeploymentFreeze>
Id string
The unique ID for this resource.
IncludeComplete bool
Include deployment freezes that completed, default is true
EnvironmentIds List<string>
A filter to search by a list of environment IDs
Ids List<string>
A filter to search by a list of IDs.
PartialName string
A filter to search by a partial name.
ProjectIds List<string>
A filter to search by a list of project IDs
Skip double
A filter to specify the number of items to skip in the response.
Status string
Filter by the status of the deployment freeze, value values are Expired, Active, Scheduled (case-insensitive)
Take double
A filter to specify the number of items to take (or return) in the response.
TenantIds List<string>
A filter to search by a list of tenant IDs
DeploymentFreezes []GetDeploymentFreezesDeploymentFreeze
Id string
The unique ID for this resource.
IncludeComplete bool
Include deployment freezes that completed, default is true
EnvironmentIds []string
A filter to search by a list of environment IDs
Ids []string
A filter to search by a list of IDs.
PartialName string
A filter to search by a partial name.
ProjectIds []string
A filter to search by a list of project IDs
Skip float64
A filter to specify the number of items to skip in the response.
Status string
Filter by the status of the deployment freeze, value values are Expired, Active, Scheduled (case-insensitive)
Take float64
A filter to specify the number of items to take (or return) in the response.
TenantIds []string
A filter to search by a list of tenant IDs
deploymentFreezes List<GetDeploymentFreezesDeploymentFreeze>
id String
The unique ID for this resource.
includeComplete Boolean
Include deployment freezes that completed, default is true
environmentIds List<String>
A filter to search by a list of environment IDs
ids List<String>
A filter to search by a list of IDs.
partialName String
A filter to search by a partial name.
projectIds List<String>
A filter to search by a list of project IDs
skip Double
A filter to specify the number of items to skip in the response.
status String
Filter by the status of the deployment freeze, value values are Expired, Active, Scheduled (case-insensitive)
take Double
A filter to specify the number of items to take (or return) in the response.
tenantIds List<String>
A filter to search by a list of tenant IDs
deploymentFreezes GetDeploymentFreezesDeploymentFreeze[]
id string
The unique ID for this resource.
includeComplete boolean
Include deployment freezes that completed, default is true
environmentIds string[]
A filter to search by a list of environment IDs
ids string[]
A filter to search by a list of IDs.
partialName string
A filter to search by a partial name.
projectIds string[]
A filter to search by a list of project IDs
skip number
A filter to specify the number of items to skip in the response.
status string
Filter by the status of the deployment freeze, value values are Expired, Active, Scheduled (case-insensitive)
take number
A filter to specify the number of items to take (or return) in the response.
tenantIds string[]
A filter to search by a list of tenant IDs
deployment_freezes Sequence[GetDeploymentFreezesDeploymentFreeze]
id str
The unique ID for this resource.
include_complete bool
Include deployment freezes that completed, default is true
environment_ids Sequence[str]
A filter to search by a list of environment IDs
ids Sequence[str]
A filter to search by a list of IDs.
partial_name str
A filter to search by a partial name.
project_ids Sequence[str]
A filter to search by a list of project IDs
skip float
A filter to specify the number of items to skip in the response.
status str
Filter by the status of the deployment freeze, value values are Expired, Active, Scheduled (case-insensitive)
take float
A filter to specify the number of items to take (or return) in the response.
tenant_ids Sequence[str]
A filter to search by a list of tenant IDs
deploymentFreezes List<Property Map>
id String
The unique ID for this resource.
includeComplete Boolean
Include deployment freezes that completed, default is true
environmentIds List<String>
A filter to search by a list of environment IDs
ids List<String>
A filter to search by a list of IDs.
partialName String
A filter to search by a partial name.
projectIds List<String>
A filter to search by a list of project IDs
skip Number
A filter to specify the number of items to skip in the response.
status String
Filter by the status of the deployment freeze, value values are Expired, Active, Scheduled (case-insensitive)
take Number
A filter to specify the number of items to take (or return) in the response.
tenantIds List<String>
A filter to search by a list of tenant IDs

Supporting Types

GetDeploymentFreezesDeploymentFreeze

End This property is required. string
The end time of the freeze
Id This property is required. string
The unique ID for this resource.
Name This property is required. string
The name of this resource.
ProjectEnvironmentScope This property is required. Dictionary<string, ImmutableArray<string>>
The project environment scope of the deployment freeze
RecurringSchedule This property is required. GetDeploymentFreezesDeploymentFreezeRecurringSchedule
Start This property is required. string
The start time of the freeze
TenantProjectEnvironmentScopes This property is required. List<GetDeploymentFreezesDeploymentFreezeTenantProjectEnvironmentScope>
The tenant project environment scope of the deployment freeze
End This property is required. string
The end time of the freeze
Id This property is required. string
The unique ID for this resource.
Name This property is required. string
The name of this resource.
ProjectEnvironmentScope This property is required. map[string][]string
The project environment scope of the deployment freeze
RecurringSchedule This property is required. GetDeploymentFreezesDeploymentFreezeRecurringSchedule
Start This property is required. string
The start time of the freeze
TenantProjectEnvironmentScopes This property is required. []GetDeploymentFreezesDeploymentFreezeTenantProjectEnvironmentScope
The tenant project environment scope of the deployment freeze
end This property is required. String
The end time of the freeze
id This property is required. String
The unique ID for this resource.
name This property is required. String
The name of this resource.
projectEnvironmentScope This property is required. Map<String,List<String>>
The project environment scope of the deployment freeze
recurringSchedule This property is required. GetDeploymentFreezesDeploymentFreezeRecurringSchedule
start This property is required. String
The start time of the freeze
tenantProjectEnvironmentScopes This property is required. List<GetDeploymentFreezesDeploymentFreezeTenantProjectEnvironmentScope>
The tenant project environment scope of the deployment freeze
end This property is required. string
The end time of the freeze
id This property is required. string
The unique ID for this resource.
name This property is required. string
The name of this resource.
projectEnvironmentScope This property is required. {[key: string]: string[]}
The project environment scope of the deployment freeze
recurringSchedule This property is required. GetDeploymentFreezesDeploymentFreezeRecurringSchedule
start This property is required. string
The start time of the freeze
tenantProjectEnvironmentScopes This property is required. GetDeploymentFreezesDeploymentFreezeTenantProjectEnvironmentScope[]
The tenant project environment scope of the deployment freeze
end This property is required. str
The end time of the freeze
id This property is required. str
The unique ID for this resource.
name This property is required. str
The name of this resource.
project_environment_scope This property is required. Mapping[str, Sequence[str]]
The project environment scope of the deployment freeze
recurring_schedule This property is required. GetDeploymentFreezesDeploymentFreezeRecurringSchedule
start This property is required. str
The start time of the freeze
tenant_project_environment_scopes This property is required. Sequence[GetDeploymentFreezesDeploymentFreezeTenantProjectEnvironmentScope]
The tenant project environment scope of the deployment freeze
end This property is required. String
The end time of the freeze
id This property is required. String
The unique ID for this resource.
name This property is required. String
The name of this resource.
projectEnvironmentScope This property is required. Map<List<String>>
The project environment scope of the deployment freeze
recurringSchedule This property is required. Property Map
start This property is required. String
The start time of the freeze
tenantProjectEnvironmentScopes This property is required. List<Property Map>
The tenant project environment scope of the deployment freeze

GetDeploymentFreezesDeploymentFreezeRecurringSchedule

DateOfMonth This property is required. string
The date of the month for monthly schedules
DayNumberOfMonth This property is required. string
The day number of the month for monthly schedules
DayOfWeek This property is required. string
The day of the week for monthly schedules
DaysOfWeeks This property is required. List<string>
List of days of the week for weekly schedules
EndAfterOccurrences This property is required. double
Number of occurrences after which the schedule should end
EndOnDate This property is required. string
The date when the recurring schedule should end
EndType This property is required. string
When the recurring schedule should end (Never, OnDate, AfterOccurrences)
MonthlyScheduleType This property is required. string
Type of monthly schedule (DayOfMonth, DateOfMonth)
Type This property is required. string
Type of recurring schedule (OnceDaily, DaysPerWeek, DaysPerMonth, Annually)
Unit This property is required. double
The unit value for the schedule
DateOfMonth This property is required. string
The date of the month for monthly schedules
DayNumberOfMonth This property is required. string
The day number of the month for monthly schedules
DayOfWeek This property is required. string
The day of the week for monthly schedules
DaysOfWeeks This property is required. []string
List of days of the week for weekly schedules
EndAfterOccurrences This property is required. float64
Number of occurrences after which the schedule should end
EndOnDate This property is required. string
The date when the recurring schedule should end
EndType This property is required. string
When the recurring schedule should end (Never, OnDate, AfterOccurrences)
MonthlyScheduleType This property is required. string
Type of monthly schedule (DayOfMonth, DateOfMonth)
Type This property is required. string
Type of recurring schedule (OnceDaily, DaysPerWeek, DaysPerMonth, Annually)
Unit This property is required. float64
The unit value for the schedule
dateOfMonth This property is required. String
The date of the month for monthly schedules
dayNumberOfMonth This property is required. String
The day number of the month for monthly schedules
dayOfWeek This property is required. String
The day of the week for monthly schedules
daysOfWeeks This property is required. List<String>
List of days of the week for weekly schedules
endAfterOccurrences This property is required. Double
Number of occurrences after which the schedule should end
endOnDate This property is required. String
The date when the recurring schedule should end
endType This property is required. String
When the recurring schedule should end (Never, OnDate, AfterOccurrences)
monthlyScheduleType This property is required. String
Type of monthly schedule (DayOfMonth, DateOfMonth)
type This property is required. String
Type of recurring schedule (OnceDaily, DaysPerWeek, DaysPerMonth, Annually)
unit This property is required. Double
The unit value for the schedule
dateOfMonth This property is required. string
The date of the month for monthly schedules
dayNumberOfMonth This property is required. string
The day number of the month for monthly schedules
dayOfWeek This property is required. string
The day of the week for monthly schedules
daysOfWeeks This property is required. string[]
List of days of the week for weekly schedules
endAfterOccurrences This property is required. number
Number of occurrences after which the schedule should end
endOnDate This property is required. string
The date when the recurring schedule should end
endType This property is required. string
When the recurring schedule should end (Never, OnDate, AfterOccurrences)
monthlyScheduleType This property is required. string
Type of monthly schedule (DayOfMonth, DateOfMonth)
type This property is required. string
Type of recurring schedule (OnceDaily, DaysPerWeek, DaysPerMonth, Annually)
unit This property is required. number
The unit value for the schedule
date_of_month This property is required. str
The date of the month for monthly schedules
day_number_of_month This property is required. str
The day number of the month for monthly schedules
day_of_week This property is required. str
The day of the week for monthly schedules
days_of_weeks This property is required. Sequence[str]
List of days of the week for weekly schedules
end_after_occurrences This property is required. float
Number of occurrences after which the schedule should end
end_on_date This property is required. str
The date when the recurring schedule should end
end_type This property is required. str
When the recurring schedule should end (Never, OnDate, AfterOccurrences)
monthly_schedule_type This property is required. str
Type of monthly schedule (DayOfMonth, DateOfMonth)
type This property is required. str
Type of recurring schedule (OnceDaily, DaysPerWeek, DaysPerMonth, Annually)
unit This property is required. float
The unit value for the schedule
dateOfMonth This property is required. String
The date of the month for monthly schedules
dayNumberOfMonth This property is required. String
The day number of the month for monthly schedules
dayOfWeek This property is required. String
The day of the week for monthly schedules
daysOfWeeks This property is required. List<String>
List of days of the week for weekly schedules
endAfterOccurrences This property is required. Number
Number of occurrences after which the schedule should end
endOnDate This property is required. String
The date when the recurring schedule should end
endType This property is required. String
When the recurring schedule should end (Never, OnDate, AfterOccurrences)
monthlyScheduleType This property is required. String
Type of monthly schedule (DayOfMonth, DateOfMonth)
type This property is required. String
Type of recurring schedule (OnceDaily, DaysPerWeek, DaysPerMonth, Annually)
unit This property is required. Number
The unit value for the schedule

GetDeploymentFreezesDeploymentFreezeTenantProjectEnvironmentScope

EnvironmentId This property is required. string
The environment ID
ProjectId This property is required. string
The project ID
TenantId This property is required. string
The tenant ID
EnvironmentId This property is required. string
The environment ID
ProjectId This property is required. string
The project ID
TenantId This property is required. string
The tenant ID
environmentId This property is required. String
The environment ID
projectId This property is required. String
The project ID
tenantId This property is required. String
The tenant ID
environmentId This property is required. string
The environment ID
projectId This property is required. string
The project ID
tenantId This property is required. string
The tenant ID
environment_id This property is required. str
The environment ID
project_id This property is required. str
The project ID
tenant_id This property is required. str
The tenant ID
environmentId This property is required. String
The environment ID
projectId This property is required. String
The project ID
tenantId This property is required. String
The tenant ID

Package Details

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