blobinventorypolicies

package
v0.20220623.1061522 Latest Latest
Warning

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

Go to latest
Published: Jun 23, 2022 License: MPL-2.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func PossibleValuesForBlobInventoryPolicyName

func PossibleValuesForBlobInventoryPolicyName() []string

func PossibleValuesForFormat

func PossibleValuesForFormat() []string

func PossibleValuesForInventoryRuleType

func PossibleValuesForInventoryRuleType() []string

func PossibleValuesForObjectType

func PossibleValuesForObjectType() []string

func PossibleValuesForSchedule

func PossibleValuesForSchedule() []string

func ValidateBlobInventoryPolicyID

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

ValidateBlobInventoryPolicyID checks that 'input' can be parsed as a Blob Inventory Policy ID

func ValidateStorageAccountID

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

ValidateStorageAccountID checks that 'input' can be parsed as a Storage Account ID

Types

type BlobInventoryPoliciesClient

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

func NewBlobInventoryPoliciesClientWithBaseURI

func NewBlobInventoryPoliciesClientWithBaseURI(endpoint string) BlobInventoryPoliciesClient

func (BlobInventoryPoliciesClient) CreateOrUpdate

CreateOrUpdate ...

func (BlobInventoryPoliciesClient) Delete

Delete ...

func (BlobInventoryPoliciesClient) Get

Get ...

func (BlobInventoryPoliciesClient) List

List ...

type BlobInventoryPolicy

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

type BlobInventoryPolicyDefinition

type BlobInventoryPolicyDefinition struct {
	Filters      *BlobInventoryPolicyFilter `json:"filters,omitempty"`
	Format       Format                     `json:"format"`
	ObjectType   ObjectType                 `json:"objectType"`
	Schedule     Schedule                   `json:"schedule"`
	SchemaFields []string                   `json:"schemaFields"`
}

type BlobInventoryPolicyFilter

type BlobInventoryPolicyFilter struct {
	BlobTypes           *[]string `json:"blobTypes,omitempty"`
	IncludeBlobVersions *bool     `json:"includeBlobVersions,omitempty"`
	IncludeSnapshots    *bool     `json:"includeSnapshots,omitempty"`
	PrefixMatch         *[]string `json:"prefixMatch,omitempty"`
}

type BlobInventoryPolicyId

type BlobInventoryPolicyId struct {
	SubscriptionId          string
	ResourceGroupName       string
	AccountName             string
	BlobInventoryPolicyName BlobInventoryPolicyName
}

BlobInventoryPolicyId is a struct representing the Resource ID for a Blob Inventory Policy

func NewBlobInventoryPolicyID

func NewBlobInventoryPolicyID(subscriptionId string, resourceGroupName string, accountName string, blobInventoryPolicyName BlobInventoryPolicyName) BlobInventoryPolicyId

NewBlobInventoryPolicyID returns a new BlobInventoryPolicyId struct

func ParseBlobInventoryPolicyID

func ParseBlobInventoryPolicyID(input string) (*BlobInventoryPolicyId, error)

ParseBlobInventoryPolicyID parses 'input' into a BlobInventoryPolicyId

func ParseBlobInventoryPolicyIDInsensitively

func ParseBlobInventoryPolicyIDInsensitively(input string) (*BlobInventoryPolicyId, error)

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

func (BlobInventoryPolicyId) ID

func (id BlobInventoryPolicyId) ID() string

ID returns the formatted Blob Inventory Policy ID

func (BlobInventoryPolicyId) Segments

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

Segments returns a slice of Resource ID Segments which comprise this Blob Inventory Policy ID

func (BlobInventoryPolicyId) String

func (id BlobInventoryPolicyId) String() string

String returns a human-readable description of this Blob Inventory Policy ID

type BlobInventoryPolicyName

type BlobInventoryPolicyName string
const (
	BlobInventoryPolicyNameDefault BlobInventoryPolicyName = "default"
)

type BlobInventoryPolicyProperties

type BlobInventoryPolicyProperties struct {
	LastModifiedTime *string                   `json:"lastModifiedTime,omitempty"`
	Policy           BlobInventoryPolicySchema `json:"policy"`
}

func (*BlobInventoryPolicyProperties) GetLastModifiedTimeAsTime

func (o *BlobInventoryPolicyProperties) GetLastModifiedTimeAsTime() (*time.Time, error)

func (*BlobInventoryPolicyProperties) SetLastModifiedTimeAsTime

func (o *BlobInventoryPolicyProperties) SetLastModifiedTimeAsTime(input time.Time)

type BlobInventoryPolicyRule

type BlobInventoryPolicyRule struct {
	Definition  BlobInventoryPolicyDefinition `json:"definition"`
	Destination string                        `json:"destination"`
	Enabled     bool                          `json:"enabled"`
	Name        string                        `json:"name"`
}

type BlobInventoryPolicySchema

type BlobInventoryPolicySchema struct {
	Enabled bool                      `json:"enabled"`
	Rules   []BlobInventoryPolicyRule `json:"rules"`
	Type    InventoryRuleType         `json:"type"`
}

type CreateOrUpdateOperationResponse

type CreateOrUpdateOperationResponse struct {
	HttpResponse *http.Response
	Model        *BlobInventoryPolicy
}

type DeleteOperationResponse

type DeleteOperationResponse struct {
	HttpResponse *http.Response
}

type Format

type Format string
const (
	FormatCsv     Format = "Csv"
	FormatParquet Format = "Parquet"
)

type GetOperationResponse

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

type InventoryRuleType

type InventoryRuleType string
const (
	InventoryRuleTypeInventory InventoryRuleType = "Inventory"
)

type ListBlobInventoryPolicy

type ListBlobInventoryPolicy struct {
	Value *[]BlobInventoryPolicy `json:"value,omitempty"`
}

type ListOperationResponse

type ListOperationResponse struct {
	HttpResponse *http.Response
	Model        *ListBlobInventoryPolicy
}

type ObjectType

type ObjectType string
const (
	ObjectTypeBlob      ObjectType = "Blob"
	ObjectTypeContainer ObjectType = "Container"
)

type Schedule

type Schedule string
const (
	ScheduleDaily  Schedule = "Daily"
	ScheduleWeekly Schedule = "Weekly"
)

type StorageAccountId

type StorageAccountId struct {
	SubscriptionId    string
	ResourceGroupName string
	AccountName       string
}

StorageAccountId is a struct representing the Resource ID for a Storage Account

func NewStorageAccountID

func NewStorageAccountID(subscriptionId string, resourceGroupName string, accountName string) StorageAccountId

NewStorageAccountID returns a new StorageAccountId struct

func ParseStorageAccountID

func ParseStorageAccountID(input string) (*StorageAccountId, error)

ParseStorageAccountID parses 'input' into a StorageAccountId

func ParseStorageAccountIDInsensitively

func ParseStorageAccountIDInsensitively(input string) (*StorageAccountId, error)

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

func (StorageAccountId) ID

func (id StorageAccountId) ID() string

ID returns the formatted Storage Account ID

func (StorageAccountId) Segments

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

Segments returns a slice of Resource ID Segments which comprise this Storage Account ID

func (StorageAccountId) String

func (id StorageAccountId) String() string

String returns a human-readable description of this Storage Account ID

Jump to

Keyboard shortcuts

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