Documentation ¶
Index ¶
- func ValidateTableID(input interface{}, key string) (warnings []string, errors []error)
- type Table
- type TableAccessPolicy
- type TableCreateOperationResponse
- type TableDeleteOperationResponse
- type TableGetOperationResponse
- type TableId
- type TableListCompleteResult
- type TableListCustomPager
- type TableListOperationResponse
- type TableOperationPredicate
- type TableProperties
- type TableServiceClient
- func (c TableServiceClient) TableCreate(ctx context.Context, id TableId, input Table) (result TableCreateOperationResponse, err error)
- func (c TableServiceClient) TableDelete(ctx context.Context, id TableId) (result TableDeleteOperationResponse, err error)
- func (c TableServiceClient) TableGet(ctx context.Context, id TableId) (result TableGetOperationResponse, err error)
- func (c TableServiceClient) TableList(ctx context.Context, id commonids.StorageAccountId) (result TableListOperationResponse, err error)
- func (c TableServiceClient) TableListComplete(ctx context.Context, id commonids.StorageAccountId) (TableListCompleteResult, error)
- func (c TableServiceClient) TableListCompleteMatchingPredicate(ctx context.Context, id commonids.StorageAccountId, ...) (result TableListCompleteResult, err error)
- func (c TableServiceClient) TableUpdate(ctx context.Context, id TableId, input Table) (result TableUpdateOperationResponse, err error)
- type TableSignedIdentifier
- type TableUpdateOperationResponse
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ValidateTableID ¶
ValidateTableID checks that 'input' can be parsed as a Table ID
Types ¶
type Table ¶
type Table struct { Id *string `json:"id,omitempty"` Name *string `json:"name,omitempty"` Properties *TableProperties `json:"properties,omitempty"` Type *string `json:"type,omitempty"` }
type TableAccessPolicy ¶
type TableAccessPolicy struct { ExpiryTime *string `json:"expiryTime,omitempty"` Permission string `json:"permission"` StartTime *string `json:"startTime,omitempty"` }
func (*TableAccessPolicy) GetExpiryTimeAsTime ¶
func (o *TableAccessPolicy) GetExpiryTimeAsTime() (*time.Time, error)
func (*TableAccessPolicy) GetStartTimeAsTime ¶
func (o *TableAccessPolicy) GetStartTimeAsTime() (*time.Time, error)
func (*TableAccessPolicy) SetExpiryTimeAsTime ¶
func (o *TableAccessPolicy) SetExpiryTimeAsTime(input time.Time)
func (*TableAccessPolicy) SetStartTimeAsTime ¶
func (o *TableAccessPolicy) SetStartTimeAsTime(input time.Time)
type TableId ¶
type TableId struct { SubscriptionId string ResourceGroupName string StorageAccountName string TableName string }
TableId is a struct representing the Resource ID for a Table
func NewTableID ¶
func NewTableID(subscriptionId string, resourceGroupName string, storageAccountName string, tableName string) TableId
NewTableID returns a new TableId struct
func ParseTableID ¶
ParseTableID parses 'input' into a TableId
func ParseTableIDInsensitively ¶
ParseTableIDInsensitively parses 'input' case-insensitively into a TableId note: this method should only be used for API response data and not user input
func (*TableId) FromParseResult ¶
func (id *TableId) FromParseResult(input resourceids.ParseResult) error
func (TableId) Segments ¶
func (id TableId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Table ID
type TableListCompleteResult ¶
type TableListCustomPager ¶ added in v0.20240628.1153531
func (*TableListCustomPager) NextPageLink ¶ added in v0.20240628.1153531
func (p *TableListCustomPager) NextPageLink() *odata.Link
type TableOperationPredicate ¶
func (TableOperationPredicate) Matches ¶
func (p TableOperationPredicate) Matches(input Table) bool
type TableProperties ¶
type TableProperties struct { SignedIdentifiers *[]TableSignedIdentifier `json:"signedIdentifiers,omitempty"` TableName *string `json:"tableName,omitempty"` }
type TableServiceClient ¶
type TableServiceClient struct {
Client *resourcemanager.Client
}
func NewTableServiceClientWithBaseURI ¶
func NewTableServiceClientWithBaseURI(sdkApi sdkEnv.Api) (*TableServiceClient, error)
func (TableServiceClient) TableCreate ¶
func (c TableServiceClient) TableCreate(ctx context.Context, id TableId, input Table) (result TableCreateOperationResponse, err error)
TableCreate ...
func (TableServiceClient) TableDelete ¶
func (c TableServiceClient) TableDelete(ctx context.Context, id TableId) (result TableDeleteOperationResponse, err error)
TableDelete ...
func (TableServiceClient) TableGet ¶
func (c TableServiceClient) TableGet(ctx context.Context, id TableId) (result TableGetOperationResponse, err error)
TableGet ...
func (TableServiceClient) TableList ¶
func (c TableServiceClient) TableList(ctx context.Context, id commonids.StorageAccountId) (result TableListOperationResponse, err error)
TableList ...
func (TableServiceClient) TableListComplete ¶
func (c TableServiceClient) TableListComplete(ctx context.Context, id commonids.StorageAccountId) (TableListCompleteResult, error)
TableListComplete retrieves all the results into a single object
func (TableServiceClient) TableListCompleteMatchingPredicate ¶
func (c TableServiceClient) TableListCompleteMatchingPredicate(ctx context.Context, id commonids.StorageAccountId, predicate TableOperationPredicate) (result TableListCompleteResult, err error)
TableListCompleteMatchingPredicate retrieves all the results and then applies the predicate
func (TableServiceClient) TableUpdate ¶
func (c TableServiceClient) TableUpdate(ctx context.Context, id TableId, input Table) (result TableUpdateOperationResponse, err error)
TableUpdate ...
type TableSignedIdentifier ¶
type TableSignedIdentifier struct { AccessPolicy *TableAccessPolicy `json:"accessPolicy,omitempty"` Id string `json:"id"` }