README
¶
github.com/hashicorp/go-azure-sdk/resource-manager/security/2020-01-01/servervulnerabilityassessment
Documentation
The servervulnerabilityassessment
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-sdk/resource-manager/security/2020-01-01/servervulnerabilityassessment"
Client Initialization
client := servervulnerabilityassessment.NewServerVulnerabilityAssessmentClientWithBaseURI("https://management.azure.com")
client.Client.Authorizer = authorizer
Example Usage: ServerVulnerabilityAssessmentClient.CreateOrUpdate
ctx := context.TODO()
id := servervulnerabilityassessment.NewProviderID("12345678-1234-9876-4563-123456789012", "example-resource-group", "providerValue", "resourceTypeValue", "resourceValue")
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: ServerVulnerabilityAssessmentClient.Delete
ctx := context.TODO()
id := servervulnerabilityassessment.NewProviderID("12345678-1234-9876-4563-123456789012", "example-resource-group", "providerValue", "resourceTypeValue", "resourceValue")
if err := client.DeleteThenPoll(ctx, id); err != nil {
// handle the error
}
Documentation
¶
Index ¶
- func PossibleValuesForProvisioningState() []string
- func ValidateProviderID(input interface{}, key string) (warnings []string, errors []error)
- type CreateOrUpdateOperationResponse
- type DeleteOperationResponse
- type ProviderId
- type ProvisioningState
- type ServerVulnerabilityAssessment
- type ServerVulnerabilityAssessmentClient
- func (c ServerVulnerabilityAssessmentClient) CreateOrUpdate(ctx context.Context, id ProviderId) (result CreateOrUpdateOperationResponse, err error)
- func (c ServerVulnerabilityAssessmentClient) Delete(ctx context.Context, id ProviderId) (result DeleteOperationResponse, err error)
- func (c ServerVulnerabilityAssessmentClient) DeleteThenPoll(ctx context.Context, id ProviderId) error
- type ServerVulnerabilityAssessmentProperties
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func PossibleValuesForProvisioningState ¶
func PossibleValuesForProvisioningState() []string
func ValidateProviderID ¶
ValidateProviderID checks that 'input' can be parsed as a Provider ID
Types ¶
type CreateOrUpdateOperationResponse ¶
type CreateOrUpdateOperationResponse struct { HttpResponse *http.Response Model *ServerVulnerabilityAssessment }
type DeleteOperationResponse ¶
type DeleteOperationResponse struct { Poller polling.LongRunningPoller HttpResponse *http.Response }
type ProviderId ¶
type ProviderId struct { SubscriptionId string ResourceGroupName string ProviderName string ResourceType string ResourceName string }
ProviderId is a struct representing the Resource ID for a Provider
func NewProviderID ¶
func NewProviderID(subscriptionId string, resourceGroupName string, providerName string, resourceType string, resourceName string) ProviderId
NewProviderID returns a new ProviderId struct
func ParseProviderID ¶
func ParseProviderID(input string) (*ProviderId, error)
ParseProviderID parses 'input' into a ProviderId
func ParseProviderIDInsensitively ¶
func ParseProviderIDInsensitively(input string) (*ProviderId, error)
ParseProviderIDInsensitively parses 'input' case-insensitively into a ProviderId note: this method should only be used for API response data and not user input
func (ProviderId) Segments ¶
func (id ProviderId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Provider ID
func (ProviderId) String ¶
func (id ProviderId) String() string
String returns a human-readable description of this Provider ID
type ProvisioningState ¶
type ProvisioningState string
const ( ProvisioningStateCanceled ProvisioningState = "Canceled" ProvisioningStateDeprovisioning ProvisioningState = "Deprovisioning" ProvisioningStateFailed ProvisioningState = "Failed" ProvisioningStateProvisioning ProvisioningState = "Provisioning" ProvisioningStateSucceeded ProvisioningState = "Succeeded" )
type ServerVulnerabilityAssessment ¶
type ServerVulnerabilityAssessment struct { Id *string `json:"id,omitempty"` Name *string `json:"name,omitempty"` Properties *ServerVulnerabilityAssessmentProperties `json:"properties,omitempty"` Type *string `json:"type,omitempty"` }
type ServerVulnerabilityAssessmentClient ¶
type ServerVulnerabilityAssessmentClient struct { Client autorest.Client // contains filtered or unexported fields }
func NewServerVulnerabilityAssessmentClientWithBaseURI ¶
func NewServerVulnerabilityAssessmentClientWithBaseURI(endpoint string) ServerVulnerabilityAssessmentClient
func (ServerVulnerabilityAssessmentClient) CreateOrUpdate ¶
func (c ServerVulnerabilityAssessmentClient) CreateOrUpdate(ctx context.Context, id ProviderId) (result CreateOrUpdateOperationResponse, err error)
CreateOrUpdate ...
func (ServerVulnerabilityAssessmentClient) Delete ¶
func (c ServerVulnerabilityAssessmentClient) Delete(ctx context.Context, id ProviderId) (result DeleteOperationResponse, err error)
Delete ...
func (ServerVulnerabilityAssessmentClient) DeleteThenPoll ¶
func (c ServerVulnerabilityAssessmentClient) DeleteThenPoll(ctx context.Context, id ProviderId) error
DeleteThenPoll performs Delete then polls until it's completed
type ServerVulnerabilityAssessmentProperties ¶
type ServerVulnerabilityAssessmentProperties struct {
ProvisioningState *ProvisioningState `json:"provisioningState,omitempty"`
}