prefixlistglobalrulestack

package
v0.20240214.1100807 Latest Latest
Warning

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

Go to latest
Published: Feb 14, 2024 License: MPL-2.0 Imports: 12 Imported by: 1

README

github.com/hashicorp/go-azure-sdk/resource-manager/paloaltonetworks/2022-08-29/prefixlistglobalrulestack Documentation

The prefixlistglobalrulestack SDK allows for interaction with the Azure Resource Manager Service paloaltonetworks (API Version 2022-08-29).

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/paloaltonetworks/2022-08-29/prefixlistglobalrulestack"

Client Initialization

client := prefixlistglobalrulestack.NewPrefixListGlobalRulestackClientWithBaseURI("https://management.azure.com")
client.Client.Authorizer = authorizer

Example Usage: PrefixListGlobalRulestackClient.CreateOrUpdate

ctx := context.TODO()
id := prefixlistglobalrulestack.NewPrefixListID("globalRulestackValue", "prefixListValue")

payload := prefixlistglobalrulestack.PrefixListGlobalRulestackResource{
	// ...
}


if err := client.CreateOrUpdateThenPoll(ctx, id, payload); err != nil {
	// handle the error
}

Example Usage: PrefixListGlobalRulestackClient.Delete

ctx := context.TODO()
id := prefixlistglobalrulestack.NewPrefixListID("globalRulestackValue", "prefixListValue")

if err := client.DeleteThenPoll(ctx, id); err != nil {
	// handle the error
}

Example Usage: PrefixListGlobalRulestackClient.Get

ctx := context.TODO()
id := prefixlistglobalrulestack.NewPrefixListID("globalRulestackValue", "prefixListValue")

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

ctx := context.TODO()
id := prefixlistglobalrulestack.NewGlobalRulestackID("globalRulestackValue")

// alternatively `client.List(ctx, id)` can be used to do batched pagination
items, err := client.ListComplete(ctx, id)
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 PossibleValuesForProvisioningState

func PossibleValuesForProvisioningState() []string

func ValidateGlobalRulestackID

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

ValidateGlobalRulestackID checks that 'input' can be parsed as a Global Rulestack ID

func ValidatePrefixListID

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

ValidatePrefixListID checks that 'input' can be parsed as a Prefix List ID

Types

type CreateOrUpdateOperationResponse

type CreateOrUpdateOperationResponse struct {
	Poller       pollers.Poller
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *PrefixListGlobalRulestackResource
}

type DeleteOperationResponse

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

type GetOperationResponse

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

type GlobalRulestackId

type GlobalRulestackId struct {
	GlobalRulestackName string
}

GlobalRulestackId is a struct representing the Resource ID for a Global Rulestack

func NewGlobalRulestackID

func NewGlobalRulestackID(globalRulestackName string) GlobalRulestackId

NewGlobalRulestackID returns a new GlobalRulestackId struct

func ParseGlobalRulestackID

func ParseGlobalRulestackID(input string) (*GlobalRulestackId, error)

ParseGlobalRulestackID parses 'input' into a GlobalRulestackId

func ParseGlobalRulestackIDInsensitively

func ParseGlobalRulestackIDInsensitively(input string) (*GlobalRulestackId, error)

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

func (*GlobalRulestackId) FromParseResult

func (id *GlobalRulestackId) FromParseResult(input resourceids.ParseResult) error

func (GlobalRulestackId) ID

func (id GlobalRulestackId) ID() string

ID returns the formatted Global Rulestack ID

func (GlobalRulestackId) Segments

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

Segments returns a slice of Resource ID Segments which comprise this Global Rulestack ID

func (GlobalRulestackId) String

func (id GlobalRulestackId) String() string

String returns a human-readable description of this Global Rulestack ID

type ListCompleteResult

type ListCompleteResult struct {
	LatestHttpResponse *http.Response
	Items              []PrefixListGlobalRulestackResource
}

type ListOperationResponse

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

type PrefixListGlobalRulestackClient

type PrefixListGlobalRulestackClient struct {
	Client *resourcemanager.Client
}

func NewPrefixListGlobalRulestackClientWithBaseURI

func NewPrefixListGlobalRulestackClientWithBaseURI(sdkApi sdkEnv.Api) (*PrefixListGlobalRulestackClient, error)

func (PrefixListGlobalRulestackClient) CreateOrUpdate

CreateOrUpdate ...

func (PrefixListGlobalRulestackClient) CreateOrUpdateThenPoll

CreateOrUpdateThenPoll performs CreateOrUpdate then polls until it's completed

func (PrefixListGlobalRulestackClient) Delete

Delete ...

func (PrefixListGlobalRulestackClient) DeleteThenPoll

DeleteThenPoll performs Delete then polls until it's completed

func (PrefixListGlobalRulestackClient) Get

Get ...

func (PrefixListGlobalRulestackClient) List

List ...

func (PrefixListGlobalRulestackClient) ListComplete

ListComplete retrieves all the results into a single object

func (PrefixListGlobalRulestackClient) ListCompleteMatchingPredicate

ListCompleteMatchingPredicate retrieves all the results and then applies the predicate

type PrefixListGlobalRulestackResource

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

type PrefixListGlobalRulestackResourceOperationPredicate

type PrefixListGlobalRulestackResourceOperationPredicate struct {
	Id   *string
	Name *string
	Type *string
}

func (PrefixListGlobalRulestackResourceOperationPredicate) Matches

type PrefixListId

type PrefixListId struct {
	GlobalRulestackName string
	PrefixListName      string
}

PrefixListId is a struct representing the Resource ID for a Prefix List

func NewPrefixListID

func NewPrefixListID(globalRulestackName string, prefixListName string) PrefixListId

NewPrefixListID returns a new PrefixListId struct

func ParsePrefixListID

func ParsePrefixListID(input string) (*PrefixListId, error)

ParsePrefixListID parses 'input' into a PrefixListId

func ParsePrefixListIDInsensitively

func ParsePrefixListIDInsensitively(input string) (*PrefixListId, error)

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

func (*PrefixListId) FromParseResult

func (id *PrefixListId) FromParseResult(input resourceids.ParseResult) error

func (PrefixListId) ID

func (id PrefixListId) ID() string

ID returns the formatted Prefix List ID

func (PrefixListId) Segments

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

Segments returns a slice of Resource ID Segments which comprise this Prefix List ID

func (PrefixListId) String

func (id PrefixListId) String() string

String returns a human-readable description of this Prefix List ID

type PrefixObject

type PrefixObject struct {
	AuditComment      *string            `json:"auditComment,omitempty"`
	Description       *string            `json:"description,omitempty"`
	Etag              *string            `json:"etag,omitempty"`
	PrefixList        []string           `json:"prefixList"`
	ProvisioningState *ProvisioningState `json:"provisioningState,omitempty"`
}

type ProvisioningState

type ProvisioningState string
const (
	ProvisioningStateAccepted     ProvisioningState = "Accepted"
	ProvisioningStateCanceled     ProvisioningState = "Canceled"
	ProvisioningStateCreating     ProvisioningState = "Creating"
	ProvisioningStateDeleted      ProvisioningState = "Deleted"
	ProvisioningStateDeleting     ProvisioningState = "Deleting"
	ProvisioningStateFailed       ProvisioningState = "Failed"
	ProvisioningStateNotSpecified ProvisioningState = "NotSpecified"
	ProvisioningStateSucceeded    ProvisioningState = "Succeeded"
	ProvisioningStateUpdating     ProvisioningState = "Updating"
)

func (*ProvisioningState) UnmarshalJSON

func (s *ProvisioningState) UnmarshalJSON(bytes []byte) error

Jump to

Keyboard shortcuts

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