applyupdates

package
v0.20230823.1052657 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 23, 2023 License: MPL-2.0 Imports: 11 Imported by: 0

README

github.com/hashicorp/go-azure-sdk/resource-manager/maintenance/2021-05-01/applyupdates Documentation

The applyupdates SDK allows for interaction with the Azure Resource Manager Service maintenance (API Version 2021-05-01).

This readme covers example usages, but further information on using this SDK can be found in the project root.

Import Path

import "github.com/hashicorp/go-azure-sdk/resource-manager/maintenance/2021-05-01/applyupdates"

Client Initialization

client := applyupdates.NewApplyUpdatesClientWithBaseURI("https://management.azure.com")
client.Client.Authorizer = authorizer

Example Usage: ApplyUpdatesClient.CreateOrUpdate

ctx := context.TODO()
id := applyupdates.NewScopeID("/subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/some-resource-group")

read, err := client.CreateOrUpdate(ctx, id)
if err != nil {
	// handle the error
}
if model := read.Model; model != nil {
	// do something with the model/response object
}

Example Usage: ApplyUpdatesClient.CreateOrUpdateParent

ctx := context.TODO()
id := applyupdates.NewScopeID("/subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/some-resource-group")

read, err := client.CreateOrUpdateParent(ctx, id)
if err != nil {
	// handle the error
}
if model := read.Model; model != nil {
	// do something with the model/response object
}

Example Usage: ApplyUpdatesClient.Get

ctx := context.TODO()
id := applyupdates.NewScopedApplyUpdateID("/subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/some-resource-group", "applyUpdateValue")

read, err := client.Get(ctx, id)
if err != nil {
	// handle the error
}
if model := read.Model; model != nil {
	// do something with the model/response object
}

Example Usage: ApplyUpdatesClient.GetParent

ctx := context.TODO()
id := applyupdates.NewScopedApplyUpdateID("/subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/some-resource-group", "applyUpdateValue")

read, err := client.GetParent(ctx, id)
if err != nil {
	// handle the error
}
if model := read.Model; model != nil {
	// do something with the model/response object
}

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func PossibleValuesForUpdateStatus

func PossibleValuesForUpdateStatus() []string

func ValidateScopedApplyUpdateID added in v0.20230714.1170806

func ValidateScopedApplyUpdateID(input interface{}, key string) (warnings []string, errors []error)

ValidateScopedApplyUpdateID checks that 'input' can be parsed as a Scoped Apply Update ID

Types

type ApplyUpdate

type ApplyUpdate struct {
	Id         *string                `json:"id,omitempty"`
	Name       *string                `json:"name,omitempty"`
	Properties *ApplyUpdateProperties `json:"properties,omitempty"`
	SystemData *systemdata.SystemData `json:"systemData,omitempty"`
	Type       *string                `json:"type,omitempty"`
}

type ApplyUpdateProperties

type ApplyUpdateProperties struct {
	LastUpdateTime *string       `json:"lastUpdateTime,omitempty"`
	ResourceId     *string       `json:"resourceId,omitempty"`
	Status         *UpdateStatus `json:"status,omitempty"`
}

func (*ApplyUpdateProperties) GetLastUpdateTimeAsTime

func (o *ApplyUpdateProperties) GetLastUpdateTimeAsTime() (*time.Time, error)

func (*ApplyUpdateProperties) SetLastUpdateTimeAsTime

func (o *ApplyUpdateProperties) SetLastUpdateTimeAsTime(input time.Time)

type ApplyUpdatesClient

type ApplyUpdatesClient struct {
	Client autorest.Client
	// contains filtered or unexported fields
}

func NewApplyUpdatesClientWithBaseURI

func NewApplyUpdatesClientWithBaseURI(endpoint string) ApplyUpdatesClient

func (ApplyUpdatesClient) CreateOrUpdate

CreateOrUpdate ...

func (ApplyUpdatesClient) CreateOrUpdateParent

func (c ApplyUpdatesClient) CreateOrUpdateParent(ctx context.Context, id commonids.ScopeId) (result CreateOrUpdateParentOperationResponse, err error)

CreateOrUpdateParent ...

func (ApplyUpdatesClient) Get

Get ...

func (ApplyUpdatesClient) GetParent

GetParent ...

type CreateOrUpdateOperationResponse

type CreateOrUpdateOperationResponse struct {
	HttpResponse *http.Response
	Model        *ApplyUpdate
}

type CreateOrUpdateParentOperationResponse

type CreateOrUpdateParentOperationResponse struct {
	HttpResponse *http.Response
	Model        *ApplyUpdate
}

type GetOperationResponse

type GetOperationResponse struct {
	HttpResponse *http.Response
	Model        *ApplyUpdate
}

type GetParentOperationResponse

type GetParentOperationResponse struct {
	HttpResponse *http.Response
	Model        *ApplyUpdate
}

type ScopedApplyUpdateId added in v0.20230714.1170806

type ScopedApplyUpdateId struct {
	Scope           string
	ApplyUpdateName string
}

ScopedApplyUpdateId is a struct representing the Resource ID for a Scoped Apply Update

func NewScopedApplyUpdateID added in v0.20230714.1170806

func NewScopedApplyUpdateID(scope string, applyUpdateName string) ScopedApplyUpdateId

NewScopedApplyUpdateID returns a new ScopedApplyUpdateId struct

func ParseScopedApplyUpdateID added in v0.20230714.1170806

func ParseScopedApplyUpdateID(input string) (*ScopedApplyUpdateId, error)

ParseScopedApplyUpdateID parses 'input' into a ScopedApplyUpdateId

func ParseScopedApplyUpdateIDInsensitively added in v0.20230714.1170806

func ParseScopedApplyUpdateIDInsensitively(input string) (*ScopedApplyUpdateId, error)

ParseScopedApplyUpdateIDInsensitively parses 'input' case-insensitively into a ScopedApplyUpdateId note: this method should only be used for API response data and not user input

func (ScopedApplyUpdateId) ID added in v0.20230714.1170806

func (id ScopedApplyUpdateId) ID() string

ID returns the formatted Scoped Apply Update ID

func (ScopedApplyUpdateId) Segments added in v0.20230714.1170806

func (id ScopedApplyUpdateId) Segments() []resourceids.Segment

Segments returns a slice of Resource ID Segments which comprise this Scoped Apply Update ID

func (ScopedApplyUpdateId) String added in v0.20230714.1170806

func (id ScopedApplyUpdateId) String() string

String returns a human-readable description of this Scoped Apply Update ID

type UpdateStatus

type UpdateStatus string
const (
	UpdateStatusCompleted  UpdateStatus = "Completed"
	UpdateStatusInProgress UpdateStatus = "InProgress"
	UpdateStatusPending    UpdateStatus = "Pending"
	UpdateStatusRetryLater UpdateStatus = "RetryLater"
	UpdateStatusRetryNow   UpdateStatus = "RetryNow"
)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL