Skip to content

Latest commit

 

History

History
189 lines (143 loc) · 4.3 KB

Get-PfContainerImageTag.md

File metadata and controls

189 lines (143 loc) · 4.3 KB
external help file Module Name online version schema
PlayFabMultiplayerApi
2.0.0

Get-PfContainerImageTag

SYNOPSIS

Lists the tags for a custom container image.

SYNTAX

ListExpanded (Default)

Get-PfContainerImageTag [-CustomTags <IAny>] [-ImageName <String>] [-PageSize <Single>] [-SkipToken <String>]
 [-Confirm] [-WhatIf] [<CommonParameters>]

List

Get-PfContainerImageTag -ListContainerImageTagsRequest <IListContainerImageTagsRequest> [-Confirm] [-WhatIf]
 [<CommonParameters>]

DESCRIPTION

Lists the tags for a custom container image.

EXAMPLES

Example 1: List all tags for a container image

PS C:\> Get-PfContainerImageTag -ImageName exampleContainer | ConvertTo-Json -depth 5

{
  "Code": 200,
  "Data": {
    "Tags": [
      "0.1",
      "0.2",
      "0.3",
      "0.4"
    ]
  },
  "Status": "OK"
}

PARAMETERS

-CustomTags

The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.).

Type: PlayFab.Multiplayer.Models.IAny
Parameter Sets: ListExpanded
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-ImageName

The container images we want to list tags for.

Type: System.String
Parameter Sets: ListExpanded
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-ListContainerImageTagsRequest

Returns a list of the tags for a particular container image that exists in the container registry for a title. To construct, see NOTES section for LISTCONTAINERIMAGETAGSREQUEST properties and create a hash table.

Type: PlayFab.Multiplayer.Models.IListContainerImageTagsRequest
Parameter Sets: List
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False

-PageSize

The page size for the request.

Type: System.Single
Parameter Sets: ListExpanded
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-SkipToken

The skip token for the paged request.

Type: System.String
Parameter Sets: ListExpanded
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Confirm

Prompts you for confirmation before running the cmdlet.

Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: cf

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-WhatIf

Shows what would happen if the cmdlet runs. The cmdlet is not run.

Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: wi

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

PlayFab.Multiplayer.Models.IListContainerImageTagsRequest

OUTPUTS

PlayFab.Multiplayer.Models.IComponents1Y9Ri2TResponsesListcontainerimagetagsresponseContentApplicationJsonSchema

NOTES

ALIASES

COMPLEX PARAMETER PROPERTIES

To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.

LISTCONTAINERIMAGETAGSREQUEST : Returns a list of the tags for a particular container image that exists in the container registry for a title.

  • [CustomTags <IAny>]: The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.).
  • [ImageName <String>]: The container images we want to list tags for.
  • [PageSize <Single?>]: The page size for the request.
  • [SkipToken <String>]: The skip token for the paged request.

RELATED LINKS