externalsecuritysolutions

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: 10 Imported by: 1

README

github.com/hashicorp/go-azure-sdk/resource-manager/security/2020-01-01/externalsecuritysolutions Documentation

The externalsecuritysolutions SDK allows for interaction with the Azure Resource Manager Service security (API Version 2020-01-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/security/2020-01-01/externalsecuritysolutions"

Client Initialization

client := externalsecuritysolutions.NewExternalSecuritySolutionsClientWithBaseURI("https://management.azure.com")
client.Client.Authorizer = authorizer

Example Usage: ExternalSecuritySolutionsClient.Get

ctx := context.TODO()
id := externalsecuritysolutions.NewExternalSecuritySolutionID("12345678-1234-9876-4563-123456789012", "example-resource-group", "locationValue", "externalSecuritySolutionValue")

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

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

// 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
}

Example Usage: ExternalSecuritySolutionsClient.ListByHomeRegion

ctx := context.TODO()
id := externalsecuritysolutions.NewLocationID("12345678-1234-9876-4563-123456789012", "locationValue")

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

func PossibleValuesForAadConnectivityState() []string

func PossibleValuesForExternalSecuritySolutionKind

func PossibleValuesForExternalSecuritySolutionKind() []string

func ValidateExternalSecuritySolutionID

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

ValidateExternalSecuritySolutionID checks that 'input' can be parsed as a External Security Solution ID

func ValidateLocationID

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

ValidateLocationID checks that 'input' can be parsed as a Location ID

Types

type AadConnectivityState

type AadConnectivityState string
const (
	AadConnectivityStateConnected   AadConnectivityState = "Connected"
	AadConnectivityStateDiscovered  AadConnectivityState = "Discovered"
	AadConnectivityStateNotLicensed AadConnectivityState = "NotLicensed"
)

type AadExternalSecuritySolution

type AadExternalSecuritySolution struct {
	Properties *AadSolutionProperties `json:"properties,omitempty"`

	// Fields inherited from ExternalSecuritySolution
	Id       *string `json:"id,omitempty"`
	Location *string `json:"location,omitempty"`
	Name     *string `json:"name,omitempty"`
	Type     *string `json:"type,omitempty"`
}

func (AadExternalSecuritySolution) MarshalJSON

func (s AadExternalSecuritySolution) MarshalJSON() ([]byte, error)

type AadSolutionProperties

type AadSolutionProperties struct {
	ConnectivityState *AadConnectivityState `json:"connectivityState,omitempty"`
	DeviceType        *string               `json:"deviceType,omitempty"`
	DeviceVendor      *string               `json:"deviceVendor,omitempty"`
	Workspace         *ConnectedWorkspace   `json:"workspace,omitempty"`
}

type AtaExternalSecuritySolution

type AtaExternalSecuritySolution struct {
	Properties *AtaSolutionProperties `json:"properties,omitempty"`

	// Fields inherited from ExternalSecuritySolution
	Id       *string `json:"id,omitempty"`
	Location *string `json:"location,omitempty"`
	Name     *string `json:"name,omitempty"`
	Type     *string `json:"type,omitempty"`
}

func (AtaExternalSecuritySolution) MarshalJSON

func (s AtaExternalSecuritySolution) MarshalJSON() ([]byte, error)

type AtaSolutionProperties

type AtaSolutionProperties struct {
	DeviceType        *string             `json:"deviceType,omitempty"`
	DeviceVendor      *string             `json:"deviceVendor,omitempty"`
	LastEventReceived *string             `json:"lastEventReceived,omitempty"`
	Workspace         *ConnectedWorkspace `json:"workspace,omitempty"`
}

type CefExternalSecuritySolution

type CefExternalSecuritySolution struct {
	Properties *CefSolutionProperties `json:"properties,omitempty"`

	// Fields inherited from ExternalSecuritySolution
	Id       *string `json:"id,omitempty"`
	Location *string `json:"location,omitempty"`
	Name     *string `json:"name,omitempty"`
	Type     *string `json:"type,omitempty"`
}

func (CefExternalSecuritySolution) MarshalJSON

func (s CefExternalSecuritySolution) MarshalJSON() ([]byte, error)

type CefSolutionProperties

type CefSolutionProperties struct {
	Agent             *string             `json:"agent,omitempty"`
	DeviceType        *string             `json:"deviceType,omitempty"`
	DeviceVendor      *string             `json:"deviceVendor,omitempty"`
	Hostname          *string             `json:"hostname,omitempty"`
	LastEventReceived *string             `json:"lastEventReceived,omitempty"`
	Workspace         *ConnectedWorkspace `json:"workspace,omitempty"`
}

type ConnectedWorkspace

type ConnectedWorkspace struct {
	Id *string `json:"id,omitempty"`
}

type ExternalSecuritySolution

type ExternalSecuritySolution interface {
}

type ExternalSecuritySolutionId

type ExternalSecuritySolutionId struct {
	SubscriptionId               string
	ResourceGroupName            string
	LocationName                 string
	ExternalSecuritySolutionName string
}

ExternalSecuritySolutionId is a struct representing the Resource ID for a External Security Solution

func NewExternalSecuritySolutionID

func NewExternalSecuritySolutionID(subscriptionId string, resourceGroupName string, locationName string, externalSecuritySolutionName string) ExternalSecuritySolutionId

NewExternalSecuritySolutionID returns a new ExternalSecuritySolutionId struct

func ParseExternalSecuritySolutionID

func ParseExternalSecuritySolutionID(input string) (*ExternalSecuritySolutionId, error)

ParseExternalSecuritySolutionID parses 'input' into a ExternalSecuritySolutionId

func ParseExternalSecuritySolutionIDInsensitively

func ParseExternalSecuritySolutionIDInsensitively(input string) (*ExternalSecuritySolutionId, error)

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

func (*ExternalSecuritySolutionId) FromParseResult

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

func (ExternalSecuritySolutionId) ID

ID returns the formatted External Security Solution ID

func (ExternalSecuritySolutionId) Segments

Segments returns a slice of Resource ID Segments which comprise this External Security Solution ID

func (ExternalSecuritySolutionId) String

func (id ExternalSecuritySolutionId) String() string

String returns a human-readable description of this External Security Solution ID

type ExternalSecuritySolutionKind

type ExternalSecuritySolutionKind string
const (
	ExternalSecuritySolutionKindAAD ExternalSecuritySolutionKind = "AAD"
	ExternalSecuritySolutionKindATA ExternalSecuritySolutionKind = "ATA"
	ExternalSecuritySolutionKindCEF ExternalSecuritySolutionKind = "CEF"
)

type ExternalSecuritySolutionOperationPredicate

type ExternalSecuritySolutionOperationPredicate struct {
}

func (ExternalSecuritySolutionOperationPredicate) Matches

type ExternalSecuritySolutionsClient

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

func NewExternalSecuritySolutionsClientWithBaseURI

func NewExternalSecuritySolutionsClientWithBaseURI(endpoint string) ExternalSecuritySolutionsClient

func (ExternalSecuritySolutionsClient) Get

Get ...

func (ExternalSecuritySolutionsClient) List

List ...

func (ExternalSecuritySolutionsClient) ListByHomeRegion

ListByHomeRegion ...

func (ExternalSecuritySolutionsClient) ListByHomeRegionComplete

ListByHomeRegionComplete retrieves all of the results into a single object

func (ExternalSecuritySolutionsClient) ListByHomeRegionCompleteMatchingPredicate

func (c ExternalSecuritySolutionsClient) ListByHomeRegionCompleteMatchingPredicate(ctx context.Context, id LocationId, predicate ExternalSecuritySolutionOperationPredicate) (resp ListByHomeRegionCompleteResult, err error)

ListByHomeRegionCompleteMatchingPredicate retrieves all of the results and then applied the predicate

func (ExternalSecuritySolutionsClient) ListComplete

ListComplete retrieves all of the results into a single object

func (ExternalSecuritySolutionsClient) ListCompleteMatchingPredicate

ListCompleteMatchingPredicate retrieves all of the results and then applied the predicate

type GetOperationResponse

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

type ListByHomeRegionCompleteResult

type ListByHomeRegionCompleteResult struct {
	Items []ExternalSecuritySolution
}

type ListByHomeRegionOperationResponse

type ListByHomeRegionOperationResponse struct {
	HttpResponse *http.Response
	Model        *[]ExternalSecuritySolution
	// contains filtered or unexported fields
}

func (ListByHomeRegionOperationResponse) HasMore

func (ListByHomeRegionOperationResponse) LoadMore

type ListCompleteResult

type ListCompleteResult struct {
	Items []ExternalSecuritySolution
}

type ListOperationResponse

type ListOperationResponse struct {
	HttpResponse *http.Response
	Model        *[]ExternalSecuritySolution
	// contains filtered or unexported fields
}

func (ListOperationResponse) HasMore

func (r ListOperationResponse) HasMore() bool

func (ListOperationResponse) LoadMore

func (r ListOperationResponse) LoadMore(ctx context.Context) (resp ListOperationResponse, err error)

type LocationId

type LocationId struct {
	SubscriptionId string
	LocationName   string
}

LocationId is a struct representing the Resource ID for a Location

func NewLocationID

func NewLocationID(subscriptionId string, locationName string) LocationId

NewLocationID returns a new LocationId struct

func ParseLocationID

func ParseLocationID(input string) (*LocationId, error)

ParseLocationID parses 'input' into a LocationId

func ParseLocationIDInsensitively

func ParseLocationIDInsensitively(input string) (*LocationId, error)

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

func (*LocationId) FromParseResult

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

func (LocationId) ID

func (id LocationId) ID() string

ID returns the formatted Location ID

func (LocationId) Segments

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

Segments returns a slice of Resource ID Segments which comprise this Location ID

func (LocationId) String

func (id LocationId) String() string

String returns a human-readable description of this Location ID

type RawExternalSecuritySolutionImpl

type RawExternalSecuritySolutionImpl struct {
	Type   string
	Values map[string]interface{}
}

RawExternalSecuritySolutionImpl is returned when the Discriminated Value doesn't match any of the defined types NOTE: this should only be used when a type isn't defined for this type of Object (as a workaround) and is used only for Deserialization (e.g. this cannot be used as a Request Payload).

Jump to

Keyboard shortcuts

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