targets

package
v0.20230717.1144053 Latest Latest
Warning

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

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

README

github.com/hashicorp/go-azure-sdk/resource-manager/chaosstudio/2022-07-01-preview/targets Documentation

The targets SDK allows for interaction with the Azure Resource Manager Service chaosstudio (API Version 2022-07-01-preview).

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/chaosstudio/2022-07-01-preview/targets"

Client Initialization

client := targets.NewTargetsClientWithBaseURI("https://management.azure.com")
client.Client.Authorizer = authorizer

Example Usage: TargetsClient.CreateOrUpdate

ctx := context.TODO()
id := targets.NewScopedTargetID("/subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/some-resource-group", "targetValue")

payload := targets.Target{
	// ...
}


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

Example Usage: TargetsClient.Delete

ctx := context.TODO()
id := targets.NewScopedTargetID("/subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/some-resource-group", "targetValue")

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

Example Usage: TargetsClient.Get

ctx := context.TODO()
id := targets.NewScopedTargetID("/subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/some-resource-group", "targetValue")

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: TargetsClient.List

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

// alternatively `client.List(ctx, id, targets.DefaultListOperationOptions())` can be used to do batched pagination
items, err := client.ListComplete(ctx, id, targets.DefaultListOperationOptions())
if err != nil {
	// handle the error
}
for _, item := range items {
	// do something
}

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func ValidateScopedTargetID added in v0.20230714.1170806

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

ValidateScopedTargetID checks that 'input' can be parsed as a Scoped Target ID

Types

type CreateOrUpdateOperationResponse

type CreateOrUpdateOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *Target
}

type DeleteOperationResponse

type DeleteOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
}

type GetOperationResponse

type GetOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *Target
}

type ListCompleteResult

type ListCompleteResult struct {
	Items []Target
}

type ListOperationOptions

type ListOperationOptions struct {
	ContinuationToken *string
}

func DefaultListOperationOptions

func DefaultListOperationOptions() ListOperationOptions

func (ListOperationOptions) ToHeaders added in v0.20230206.1124515

func (o ListOperationOptions) ToHeaders() *client.Headers

func (ListOperationOptions) ToOData added in v0.20230206.1124515

func (o ListOperationOptions) ToOData() *odata.Query

func (ListOperationOptions) ToQuery added in v0.20230206.1124515

type ListOperationResponse

type ListOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *[]Target
}

type ScopedTargetId added in v0.20230714.1170806

type ScopedTargetId struct {
	Scope      string
	TargetName string
}

ScopedTargetId is a struct representing the Resource ID for a Scoped Target

func NewScopedTargetID added in v0.20230714.1170806

func NewScopedTargetID(scope string, targetName string) ScopedTargetId

NewScopedTargetID returns a new ScopedTargetId struct

func ParseScopedTargetID added in v0.20230714.1170806

func ParseScopedTargetID(input string) (*ScopedTargetId, error)

ParseScopedTargetID parses 'input' into a ScopedTargetId

func ParseScopedTargetIDInsensitively added in v0.20230714.1170806

func ParseScopedTargetIDInsensitively(input string) (*ScopedTargetId, error)

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

func (ScopedTargetId) ID added in v0.20230714.1170806

func (id ScopedTargetId) ID() string

ID returns the formatted Scoped Target ID

func (ScopedTargetId) Segments added in v0.20230714.1170806

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

Segments returns a slice of Resource ID Segments which comprise this Scoped Target ID

func (ScopedTargetId) String added in v0.20230714.1170806

func (id ScopedTargetId) String() string

String returns a human-readable description of this Scoped Target ID

type Target

type Target struct {
	Id         *string                `json:"id,omitempty"`
	Location   *string                `json:"location,omitempty"`
	Name       *string                `json:"name,omitempty"`
	Properties interface{}            `json:"properties"`
	SystemData *systemdata.SystemData `json:"systemData,omitempty"`
	Type       *string                `json:"type,omitempty"`
}

type TargetOperationPredicate

type TargetOperationPredicate struct {
	Id         *string
	Location   *string
	Name       *string
	Properties *interface{}
	Type       *string
}

func (TargetOperationPredicate) Matches

func (p TargetOperationPredicate) Matches(input Target) bool

type TargetsClient

type TargetsClient struct {
	Client *resourcemanager.Client
}

func NewTargetsClientWithBaseURI

func NewTargetsClientWithBaseURI(api environments.Api) (*TargetsClient, error)

func (TargetsClient) CreateOrUpdate

func (c TargetsClient) CreateOrUpdate(ctx context.Context, id ScopedTargetId, input Target) (result CreateOrUpdateOperationResponse, err error)

CreateOrUpdate ...

func (TargetsClient) Delete

func (c TargetsClient) Delete(ctx context.Context, id ScopedTargetId) (result DeleteOperationResponse, err error)

Delete ...

func (TargetsClient) Get

Get ...

func (TargetsClient) List

List ...

func (TargetsClient) ListComplete

ListComplete retrieves all the results into a single object

func (TargetsClient) ListCompleteMatchingPredicate

func (c TargetsClient) ListCompleteMatchingPredicate(ctx context.Context, id commonids.ScopeId, options ListOperationOptions, predicate TargetOperationPredicate) (result ListCompleteResult, err error)

ListCompleteMatchingPredicate retrieves all the results and then applies the predicate

Jump to

Keyboard shortcuts

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