-
Notifications
You must be signed in to change notification settings - Fork 46
Get OctopusChannel
dalmiro grañas edited this page Mar 19, 2017
·
7 revisions
###Summary Gets information about Octopus Channels
###Parameters
Name | DataType | Description |
---|---|---|
ChannelName | System.Collections.Generic.List`1System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 | Channel name |
Name | System.Collections.Generic.List`1System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 | Channel name This is an alias of the ChannelName parameter. |
ProjectName | System.Collections.Generic.List`1System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 | Project name |
Project | System.Collections.Generic.List`1System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 | Project name This is an alias of the ProjectName parameter. |
ResourceOnly | System.Management.Automation.SwitchParameter | If set to TRUE the cmdlet will return the basic Octopur resource. If not set or set to FALSE, the cmdlet will return a human friendly Octoposh output object |
###Syntax
Get-OctopusChannel [[-ChannelName] <List`1>] [[-ProjectName] <List`1>] [-ResourceOnly <SwitchParameter>]
[<CommonParameters>]
###Examples EXAMPLE 1
Gets all the channels in all the projects of the instance
PS C:\>PS C:\> Get-OctopusChannel
EXAMPLE 2
Gets all the channels of the project "MyFinantialApp"
PS C:\>PS C:\> Get-OctopusChannel -Project "MyFinantialApp"
EXAMPLE 3
Gets the Channel with the name "Hotfix_Website" of the project "MyFinantialApp"
PS C:\>PS C:\> Get-OctopusChannel -name "Hotfix_Website" -Project "MyFinantialApp"
EXAMPLE 4
Gets the Channels with the names "Hotfix_Website" and "Hotfix_WebService" of the project "MyFinantialApp"
PS C:\>PS C:\> Get-OctopusChannel -name "Hotfix_Website","Hotfix_WebService" -Project "MyFinantialApp"
EXAMPLE 5
Gets all the Channels whose name starts with "Hotfix_" of the project "MyFinantialApp"
PS C:\>PS C:\> Get-OctopusChannel -name "Hotfix_*" -Project "MyFinantialApp"
Getting Started
Cmdlets & Examples
- Get-OctopusChannel
- Get-OctopusConnectionInfo
- Get-OctopusDashboard
- Get-OctopusDeployment
- Get-OctopusEnvironment
- Get-OctopusFeed
- Get-OctopusLifecycle
- Get-OctopusMachine
- Get-OctopusProject
- Get-OctopusProjectGroup
- Get-OctopusRelease
- Get-OctopusResourceModel
- Get-OctopusServerThumbprint
- Get-OctopusTagSet
- Get-OctopusTeam
- Get-OctopusTenant
- Get-OctopusToolPath
- Get-OctopusToolsFolder
- Get-OctopusToolVersion
- Get-OctopusUser
- Get-OctopusVariableSet
- Install-OctopusTool
- New-OctopusConnection
- New-OctopusResource
- Remove-OctopusResource
- Set-OctopusConnectionInfo
- Set-OctopusReleaseStatus
- Set-OctopusToolPath
- Set-OctopusToolsFolder
- Update-OctopusResource
Advanced Examples
Real Life Scenarios
Release Notes