networkmanagers

package
v0.20240524.1090207 Latest Latest
Warning

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

Go to latest
Published: May 24, 2024 License: MPL-2.0 Imports: 16 Imported by: 0

README

github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-09-01/networkmanagers Documentation

The networkmanagers SDK allows for interaction with the Azure Resource Manager Service network (API Version 2023-09-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-helpers/resourcemanager/commonids"
import "github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-09-01/networkmanagers"

Client Initialization

client := networkmanagers.NewNetworkManagersClientWithBaseURI("https://management.azure.com")
client.Client.Authorizer = authorizer

Example Usage: NetworkManagersClient.CreateOrUpdate

ctx := context.TODO()
id := networkmanagers.NewNetworkManagerID("12345678-1234-9876-4563-123456789012", "example-resource-group", "networkManagerValue")

payload := networkmanagers.NetworkManager{
	// ...
}


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: NetworkManagersClient.Delete

ctx := context.TODO()
id := networkmanagers.NewNetworkManagerID("12345678-1234-9876-4563-123456789012", "example-resource-group", "networkManagerValue")

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

Example Usage: NetworkManagersClient.Get

ctx := context.TODO()
id := networkmanagers.NewNetworkManagerID("12345678-1234-9876-4563-123456789012", "example-resource-group", "networkManagerValue")

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

ctx := context.TODO()
id := commonids.NewResourceGroupID("12345678-1234-9876-4563-123456789012", "example-resource-group")

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

Example Usage: NetworkManagersClient.ListBySubscription

ctx := context.TODO()
id := commonids.NewSubscriptionID("12345678-1234-9876-4563-123456789012")

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

Example Usage: NetworkManagersClient.NetworkManagerCommitsPost

ctx := context.TODO()
id := networkmanagers.NewNetworkManagerID("12345678-1234-9876-4563-123456789012", "example-resource-group", "networkManagerValue")

payload := networkmanagers.NetworkManagerCommit{
	// ...
}


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

Example Usage: NetworkManagersClient.NetworkManagerDeploymentStatusList

ctx := context.TODO()
id := networkmanagers.NewNetworkManagerID("12345678-1234-9876-4563-123456789012", "example-resource-group", "networkManagerValue")

payload := networkmanagers.NetworkManagerDeploymentStatusParameter{
	// ...
}


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

Example Usage: NetworkManagersClient.Patch

ctx := context.TODO()
id := networkmanagers.NewNetworkManagerID("12345678-1234-9876-4563-123456789012", "example-resource-group", "networkManagerValue")

payload := networkmanagers.PatchObject{
	// ...
}


read, err := client.Patch(ctx, id, payload)
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 PossibleValuesForConfigurationType

func PossibleValuesForConfigurationType() []string

func PossibleValuesForDeploymentStatus

func PossibleValuesForDeploymentStatus() []string

func PossibleValuesForProvisioningState

func PossibleValuesForProvisioningState() []string

func ValidateNetworkManagerID

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

ValidateNetworkManagerID checks that 'input' can be parsed as a Network Manager ID

Types

type ConfigurationType

type ConfigurationType string
const (
	ConfigurationTypeConnectivity  ConfigurationType = "Connectivity"
	ConfigurationTypeSecurityAdmin ConfigurationType = "SecurityAdmin"
)

func (*ConfigurationType) UnmarshalJSON

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

type CreateOrUpdateOperationResponse

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

type CrossTenantScopes

type CrossTenantScopes struct {
	ManagementGroups *[]string `json:"managementGroups,omitempty"`
	Subscriptions    *[]string `json:"subscriptions,omitempty"`
	TenantId         *string   `json:"tenantId,omitempty"`
}

type DeleteOperationOptions

type DeleteOperationOptions struct {
	Force *bool
}

func DefaultDeleteOperationOptions

func DefaultDeleteOperationOptions() DeleteOperationOptions

func (DeleteOperationOptions) ToHeaders

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

func (DeleteOperationOptions) ToOData

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

func (DeleteOperationOptions) ToQuery

type DeleteOperationResponse

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

type DeploymentStatus

type DeploymentStatus string
const (
	DeploymentStatusDeployed   DeploymentStatus = "Deployed"
	DeploymentStatusDeploying  DeploymentStatus = "Deploying"
	DeploymentStatusFailed     DeploymentStatus = "Failed"
	DeploymentStatusNotStarted DeploymentStatus = "NotStarted"
)

func (*DeploymentStatus) UnmarshalJSON

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

type GetOperationResponse

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

type ListBySubscriptionCompleteResult

type ListBySubscriptionCompleteResult struct {
	LatestHttpResponse *http.Response
	Items              []NetworkManager
}

type ListBySubscriptionOperationOptions

type ListBySubscriptionOperationOptions struct {
	Top *int64
}

func DefaultListBySubscriptionOperationOptions

func DefaultListBySubscriptionOperationOptions() ListBySubscriptionOperationOptions

func (ListBySubscriptionOperationOptions) ToHeaders

func (ListBySubscriptionOperationOptions) ToOData

func (ListBySubscriptionOperationOptions) ToQuery

type ListBySubscriptionOperationResponse

type ListBySubscriptionOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *[]NetworkManager
}

type ListCompleteResult

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

type ListOperationOptions

type ListOperationOptions struct {
	Top *int64
}

func DefaultListOperationOptions

func DefaultListOperationOptions() ListOperationOptions

func (ListOperationOptions) ToHeaders

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

func (ListOperationOptions) ToOData

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

func (ListOperationOptions) ToQuery

type ListOperationResponse

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

type NetworkManager

type NetworkManager struct {
	Etag       *string                   `json:"etag,omitempty"`
	Id         *string                   `json:"id,omitempty"`
	Location   *string                   `json:"location,omitempty"`
	Name       *string                   `json:"name,omitempty"`
	Properties *NetworkManagerProperties `json:"properties,omitempty"`
	SystemData *systemdata.SystemData    `json:"systemData,omitempty"`
	Tags       *map[string]string        `json:"tags,omitempty"`
	Type       *string                   `json:"type,omitempty"`
}

type NetworkManagerCommit

type NetworkManagerCommit struct {
	CommitId         *string           `json:"commitId,omitempty"`
	CommitType       ConfigurationType `json:"commitType"`
	ConfigurationIds *[]string         `json:"configurationIds,omitempty"`
	TargetLocations  []string          `json:"targetLocations"`
}

type NetworkManagerCommitsPostOperationResponse

type NetworkManagerCommitsPostOperationResponse struct {
	Poller       pollers.Poller
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *NetworkManagerCommit
}

type NetworkManagerDeploymentStatus

type NetworkManagerDeploymentStatus struct {
	CommitTime       *string            `json:"commitTime,omitempty"`
	ConfigurationIds *[]string          `json:"configurationIds,omitempty"`
	DeploymentStatus *DeploymentStatus  `json:"deploymentStatus,omitempty"`
	DeploymentType   *ConfigurationType `json:"deploymentType,omitempty"`
	ErrorMessage     *string            `json:"errorMessage,omitempty"`
	Region           *string            `json:"region,omitempty"`
}

func (*NetworkManagerDeploymentStatus) GetCommitTimeAsTime

func (o *NetworkManagerDeploymentStatus) GetCommitTimeAsTime() (*time.Time, error)

func (*NetworkManagerDeploymentStatus) SetCommitTimeAsTime

func (o *NetworkManagerDeploymentStatus) SetCommitTimeAsTime(input time.Time)

type NetworkManagerDeploymentStatusListOperationResponse

type NetworkManagerDeploymentStatusListOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *NetworkManagerDeploymentStatusListResult
}

type NetworkManagerDeploymentStatusListResult

type NetworkManagerDeploymentStatusListResult struct {
	SkipToken *string                           `json:"skipToken,omitempty"`
	Value     *[]NetworkManagerDeploymentStatus `json:"value,omitempty"`
}

type NetworkManagerDeploymentStatusParameter

type NetworkManagerDeploymentStatusParameter struct {
	DeploymentTypes *[]ConfigurationType `json:"deploymentTypes,omitempty"`
	Regions         *[]string            `json:"regions,omitempty"`
	SkipToken       *string              `json:"skipToken,omitempty"`
}

type NetworkManagerId

type NetworkManagerId struct {
	SubscriptionId     string
	ResourceGroupName  string
	NetworkManagerName string
}

NetworkManagerId is a struct representing the Resource ID for a Network Manager

func NewNetworkManagerID

func NewNetworkManagerID(subscriptionId string, resourceGroupName string, networkManagerName string) NetworkManagerId

NewNetworkManagerID returns a new NetworkManagerId struct

func ParseNetworkManagerID

func ParseNetworkManagerID(input string) (*NetworkManagerId, error)

ParseNetworkManagerID parses 'input' into a NetworkManagerId

func ParseNetworkManagerIDInsensitively

func ParseNetworkManagerIDInsensitively(input string) (*NetworkManagerId, error)

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

func (*NetworkManagerId) FromParseResult

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

func (NetworkManagerId) ID

func (id NetworkManagerId) ID() string

ID returns the formatted Network Manager ID

func (NetworkManagerId) Segments

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

Segments returns a slice of Resource ID Segments which comprise this Network Manager ID

func (NetworkManagerId) String

func (id NetworkManagerId) String() string

String returns a human-readable description of this Network Manager ID

type NetworkManagerOperationPredicate

type NetworkManagerOperationPredicate struct {
	Etag     *string
	Id       *string
	Location *string
	Name     *string
	Type     *string
}

func (NetworkManagerOperationPredicate) Matches

type NetworkManagerProperties

type NetworkManagerProperties struct {
	Description                 *string                                      `json:"description,omitempty"`
	NetworkManagerScopeAccesses []ConfigurationType                          `json:"networkManagerScopeAccesses"`
	NetworkManagerScopes        NetworkManagerPropertiesNetworkManagerScopes `json:"networkManagerScopes"`
	ProvisioningState           *ProvisioningState                           `json:"provisioningState,omitempty"`
	ResourceGuid                *string                                      `json:"resourceGuid,omitempty"`
}

type NetworkManagerPropertiesNetworkManagerScopes

type NetworkManagerPropertiesNetworkManagerScopes struct {
	CrossTenantScopes *[]CrossTenantScopes `json:"crossTenantScopes,omitempty"`
	ManagementGroups  *[]string            `json:"managementGroups,omitempty"`
	Subscriptions     *[]string            `json:"subscriptions,omitempty"`
}

type NetworkManagersClient

type NetworkManagersClient struct {
	Client *resourcemanager.Client
}

func NewNetworkManagersClientWithBaseURI

func NewNetworkManagersClientWithBaseURI(sdkApi sdkEnv.Api) (*NetworkManagersClient, error)

func (NetworkManagersClient) CreateOrUpdate

CreateOrUpdate ...

func (NetworkManagersClient) Delete

Delete ...

func (NetworkManagersClient) DeleteThenPoll

DeleteThenPoll performs Delete then polls until it's completed

func (NetworkManagersClient) Get

Get ...

func (NetworkManagersClient) List

List ...

func (NetworkManagersClient) ListBySubscription

ListBySubscription ...

func (NetworkManagersClient) ListBySubscriptionComplete

ListBySubscriptionComplete retrieves all the results into a single object

func (NetworkManagersClient) ListBySubscriptionCompleteMatchingPredicate

ListBySubscriptionCompleteMatchingPredicate retrieves all the results and then applies the predicate

func (NetworkManagersClient) ListComplete

ListComplete retrieves all the results into a single object

func (NetworkManagersClient) ListCompleteMatchingPredicate

func (c NetworkManagersClient) ListCompleteMatchingPredicate(ctx context.Context, id commonids.ResourceGroupId, options ListOperationOptions, predicate NetworkManagerOperationPredicate) (result ListCompleteResult, err error)

ListCompleteMatchingPredicate retrieves all the results and then applies the predicate

func (NetworkManagersClient) NetworkManagerCommitsPost

NetworkManagerCommitsPost ...

func (NetworkManagersClient) NetworkManagerCommitsPostThenPoll

func (c NetworkManagersClient) NetworkManagerCommitsPostThenPoll(ctx context.Context, id NetworkManagerId, input NetworkManagerCommit) error

NetworkManagerCommitsPostThenPoll performs NetworkManagerCommitsPost then polls until it's completed

func (NetworkManagersClient) NetworkManagerDeploymentStatusList

NetworkManagerDeploymentStatusList ...

func (NetworkManagersClient) Patch

Patch ...

type PatchObject

type PatchObject struct {
	Tags *map[string]string `json:"tags,omitempty"`
}

type PatchOperationResponse

type PatchOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *NetworkManager
}

type ProvisioningState

type ProvisioningState string
const (
	ProvisioningStateDeleting  ProvisioningState = "Deleting"
	ProvisioningStateFailed    ProvisioningState = "Failed"
	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