Documentation ¶
Index ¶
- func ValidateCommunityGalleryImageVersionID(input interface{}, key string) (warnings []string, errors []error)
- type CommunityGalleryIdentifier
- type CommunityGalleryImageVersion
- type CommunityGalleryImageVersionId
- func NewCommunityGalleryImageVersionID(subscriptionId string, locationName string, communityGalleryName string, ...) CommunityGalleryImageVersionId
- func ParseCommunityGalleryImageVersionID(input string) (*CommunityGalleryImageVersionId, error)
- func ParseCommunityGalleryImageVersionIDInsensitively(input string) (*CommunityGalleryImageVersionId, error)
- type CommunityGalleryImageVersionProperties
- func (o *CommunityGalleryImageVersionProperties) GetEndOfLifeDateAsTime() (*time.Time, error)
- func (o *CommunityGalleryImageVersionProperties) GetPublishedDateAsTime() (*time.Time, error)
- func (o *CommunityGalleryImageVersionProperties) SetEndOfLifeDateAsTime(input time.Time)
- func (o *CommunityGalleryImageVersionProperties) SetPublishedDateAsTime(input time.Time)
- type CommunityGalleryImageVersionsClient
- type GetOperationResponse
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ValidateCommunityGalleryImageVersionID ¶ added in v0.20230523.1140858
func ValidateCommunityGalleryImageVersionID(input interface{}, key string) (warnings []string, errors []error)
ValidateCommunityGalleryImageVersionID checks that 'input' can be parsed as a Community Gallery Image Version ID
Types ¶
type CommunityGalleryIdentifier ¶
type CommunityGalleryIdentifier struct {
UniqueId *string `json:"uniqueId,omitempty"`
}
type CommunityGalleryImageVersion ¶
type CommunityGalleryImageVersion struct { Identifier *CommunityGalleryIdentifier `json:"identifier,omitempty"` Location *string `json:"location,omitempty"` Name *string `json:"name,omitempty"` Properties *CommunityGalleryImageVersionProperties `json:"properties,omitempty"` Type *string `json:"type,omitempty"` }
type CommunityGalleryImageVersionId ¶ added in v0.20230523.1140858
type CommunityGalleryImageVersionId struct { SubscriptionId string LocationName string CommunityGalleryName string ImageName string VersionName string }
CommunityGalleryImageVersionId is a struct representing the Resource ID for a Community Gallery Image Version
func NewCommunityGalleryImageVersionID ¶ added in v0.20230523.1140858
func NewCommunityGalleryImageVersionID(subscriptionId string, locationName string, communityGalleryName string, imageName string, versionName string) CommunityGalleryImageVersionId
NewCommunityGalleryImageVersionID returns a new CommunityGalleryImageVersionId struct
func ParseCommunityGalleryImageVersionID ¶ added in v0.20230523.1140858
func ParseCommunityGalleryImageVersionID(input string) (*CommunityGalleryImageVersionId, error)
ParseCommunityGalleryImageVersionID parses 'input' into a CommunityGalleryImageVersionId
func ParseCommunityGalleryImageVersionIDInsensitively ¶ added in v0.20230523.1140858
func ParseCommunityGalleryImageVersionIDInsensitively(input string) (*CommunityGalleryImageVersionId, error)
ParseCommunityGalleryImageVersionIDInsensitively parses 'input' case-insensitively into a CommunityGalleryImageVersionId note: this method should only be used for API response data and not user input
func (CommunityGalleryImageVersionId) ID ¶ added in v0.20230523.1140858
func (id CommunityGalleryImageVersionId) ID() string
ID returns the formatted Community Gallery Image Version ID
func (CommunityGalleryImageVersionId) Segments ¶ added in v0.20230523.1140858
func (id CommunityGalleryImageVersionId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Community Gallery Image Version ID
func (CommunityGalleryImageVersionId) String ¶ added in v0.20230523.1140858
func (id CommunityGalleryImageVersionId) String() string
String returns a human-readable description of this Community Gallery Image Version ID
type CommunityGalleryImageVersionProperties ¶
type CommunityGalleryImageVersionProperties struct { EndOfLifeDate *string `json:"endOfLifeDate,omitempty"` PublishedDate *string `json:"publishedDate,omitempty"` }
func (*CommunityGalleryImageVersionProperties) GetEndOfLifeDateAsTime ¶
func (o *CommunityGalleryImageVersionProperties) GetEndOfLifeDateAsTime() (*time.Time, error)
func (*CommunityGalleryImageVersionProperties) GetPublishedDateAsTime ¶
func (o *CommunityGalleryImageVersionProperties) GetPublishedDateAsTime() (*time.Time, error)
func (*CommunityGalleryImageVersionProperties) SetEndOfLifeDateAsTime ¶
func (o *CommunityGalleryImageVersionProperties) SetEndOfLifeDateAsTime(input time.Time)
func (*CommunityGalleryImageVersionProperties) SetPublishedDateAsTime ¶
func (o *CommunityGalleryImageVersionProperties) SetPublishedDateAsTime(input time.Time)
type CommunityGalleryImageVersionsClient ¶
type CommunityGalleryImageVersionsClient struct { Client autorest.Client // contains filtered or unexported fields }
func NewCommunityGalleryImageVersionsClientWithBaseURI ¶
func NewCommunityGalleryImageVersionsClientWithBaseURI(endpoint string) CommunityGalleryImageVersionsClient
func (CommunityGalleryImageVersionsClient) Get ¶
func (c CommunityGalleryImageVersionsClient) Get(ctx context.Context, id CommunityGalleryImageVersionId) (result GetOperationResponse, err error)
Get ...
type GetOperationResponse ¶
type GetOperationResponse struct { HttpResponse *http.Response Model *CommunityGalleryImageVersion }