Documentation ¶
Index ¶
- func PossibleValuesForParameterType() []string
- func PossibleValuesForType() []string
- func ValidateDatasetID(input interface{}, key string) (warnings []string, errors []error)
- func ValidateFactoryID(input interface{}, key string) (warnings []string, errors []error)
- type CreateOrUpdateOperationOptions
- type CreateOrUpdateOperationResponse
- type Dataset
- type DatasetFolder
- type DatasetId
- type DatasetResource
- type DatasetResourceOperationPredicate
- type DatasetsClient
- func (c DatasetsClient) CreateOrUpdate(ctx context.Context, id DatasetId, input DatasetResource, ...) (result CreateOrUpdateOperationResponse, err error)
- func (c DatasetsClient) Delete(ctx context.Context, id DatasetId) (result DeleteOperationResponse, err error)
- func (c DatasetsClient) Get(ctx context.Context, id DatasetId, options GetOperationOptions) (result GetOperationResponse, err error)
- func (c DatasetsClient) ListByFactory(ctx context.Context, id FactoryId) (resp ListByFactoryOperationResponse, err error)
- func (c DatasetsClient) ListByFactoryComplete(ctx context.Context, id FactoryId) (ListByFactoryCompleteResult, error)
- func (c DatasetsClient) ListByFactoryCompleteMatchingPredicate(ctx context.Context, id FactoryId, predicate DatasetResourceOperationPredicate) (resp ListByFactoryCompleteResult, err error)
- type DeleteOperationResponse
- type FactoryId
- type GetOperationOptions
- type GetOperationResponse
- type LinkedServiceReference
- type ListByFactoryCompleteResult
- type ListByFactoryOperationResponse
- type ParameterSpecification
- type ParameterType
- type Type
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func PossibleValuesForParameterType ¶
func PossibleValuesForParameterType() []string
func PossibleValuesForType ¶
func PossibleValuesForType() []string
func ValidateDatasetID ¶
ValidateDatasetID checks that 'input' can be parsed as a Dataset ID
func ValidateFactoryID ¶
ValidateFactoryID checks that 'input' can be parsed as a Factory ID
Types ¶
type CreateOrUpdateOperationOptions ¶
type CreateOrUpdateOperationOptions struct {
IfMatch *string
}
func DefaultCreateOrUpdateOperationOptions ¶
func DefaultCreateOrUpdateOperationOptions() CreateOrUpdateOperationOptions
type CreateOrUpdateOperationResponse ¶
type CreateOrUpdateOperationResponse struct { HttpResponse *http.Response Model *DatasetResource }
type Dataset ¶
type Dataset struct { Annotations *[]interface{} `json:"annotations,omitempty"` Description *string `json:"description,omitempty"` Folder *DatasetFolder `json:"folder,omitempty"` LinkedServiceName LinkedServiceReference `json:"linkedServiceName"` Parameters *map[string]ParameterSpecification `json:"parameters,omitempty"` Schema *interface{} `json:"schema,omitempty"` Structure *interface{} `json:"structure,omitempty"` Type string `json:"type"` }
type DatasetFolder ¶
type DatasetFolder struct {
Name *string `json:"name,omitempty"`
}
type DatasetId ¶
type DatasetId struct { SubscriptionId string ResourceGroupName string FactoryName string DatasetName string }
DatasetId is a struct representing the Resource ID for a Dataset
func NewDatasetID ¶
func NewDatasetID(subscriptionId string, resourceGroupName string, factoryName string, datasetName string) DatasetId
NewDatasetID returns a new DatasetId struct
func ParseDatasetID ¶
ParseDatasetID parses 'input' into a DatasetId
func ParseDatasetIDInsensitively ¶
ParseDatasetIDInsensitively parses 'input' case-insensitively into a DatasetId note: this method should only be used for API response data and not user input
func (DatasetId) Segments ¶
func (id DatasetId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Dataset ID
type DatasetResource ¶
type DatasetResourceOperationPredicate ¶
func (DatasetResourceOperationPredicate) Matches ¶
func (p DatasetResourceOperationPredicate) Matches(input DatasetResource) bool
type DatasetsClient ¶
func NewDatasetsClientWithBaseURI ¶
func NewDatasetsClientWithBaseURI(endpoint string) DatasetsClient
func (DatasetsClient) CreateOrUpdate ¶
func (c DatasetsClient) CreateOrUpdate(ctx context.Context, id DatasetId, input DatasetResource, options CreateOrUpdateOperationOptions) (result CreateOrUpdateOperationResponse, err error)
CreateOrUpdate ...
func (DatasetsClient) Delete ¶
func (c DatasetsClient) Delete(ctx context.Context, id DatasetId) (result DeleteOperationResponse, err error)
Delete ...
func (DatasetsClient) Get ¶
func (c DatasetsClient) Get(ctx context.Context, id DatasetId, options GetOperationOptions) (result GetOperationResponse, err error)
Get ...
func (DatasetsClient) ListByFactory ¶
func (c DatasetsClient) ListByFactory(ctx context.Context, id FactoryId) (resp ListByFactoryOperationResponse, err error)
ListByFactory ...
func (DatasetsClient) ListByFactoryComplete ¶
func (c DatasetsClient) ListByFactoryComplete(ctx context.Context, id FactoryId) (ListByFactoryCompleteResult, error)
ListByFactoryComplete retrieves all of the results into a single object
func (DatasetsClient) ListByFactoryCompleteMatchingPredicate ¶
func (c DatasetsClient) ListByFactoryCompleteMatchingPredicate(ctx context.Context, id FactoryId, predicate DatasetResourceOperationPredicate) (resp ListByFactoryCompleteResult, err error)
ListByFactoryCompleteMatchingPredicate retrieves all of the results and then applied the predicate
type DeleteOperationResponse ¶
type FactoryId ¶
FactoryId is a struct representing the Resource ID for a Factory
func NewFactoryID ¶
NewFactoryID returns a new FactoryId struct
func ParseFactoryID ¶
ParseFactoryID parses 'input' into a FactoryId
func ParseFactoryIDInsensitively ¶
ParseFactoryIDInsensitively parses 'input' case-insensitively into a FactoryId note: this method should only be used for API response data and not user input
func (FactoryId) Segments ¶
func (id FactoryId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Factory ID
type GetOperationOptions ¶
type GetOperationOptions struct {
IfNoneMatch *string
}
func DefaultGetOperationOptions ¶
func DefaultGetOperationOptions() GetOperationOptions
type GetOperationResponse ¶
type GetOperationResponse struct { HttpResponse *http.Response Model *DatasetResource }
type LinkedServiceReference ¶
type ListByFactoryCompleteResult ¶
type ListByFactoryCompleteResult struct {
Items []DatasetResource
}
type ListByFactoryOperationResponse ¶
type ListByFactoryOperationResponse struct { HttpResponse *http.Response Model *[]DatasetResource // contains filtered or unexported fields }
func (ListByFactoryOperationResponse) HasMore ¶
func (r ListByFactoryOperationResponse) HasMore() bool
func (ListByFactoryOperationResponse) LoadMore ¶
func (r ListByFactoryOperationResponse) LoadMore(ctx context.Context) (resp ListByFactoryOperationResponse, err error)
type ParameterSpecification ¶
type ParameterSpecification struct { DefaultValue *interface{} `json:"defaultValue,omitempty"` Type ParameterType `json:"type"` }
type ParameterType ¶
type ParameterType string
const ( ParameterTypeArray ParameterType = "Array" ParameterTypeBool ParameterType = "Bool" ParameterTypeFloat ParameterType = "Float" ParameterTypeInt ParameterType = "Int" ParameterTypeObject ParameterType = "Object" ParameterTypeSecureString ParameterType = "SecureString" ParameterTypeString ParameterType = "String" )
Source Files ¶
- client.go
- constants.go
- id_dataset.go
- id_factory.go
- method_createorupdate_autorest.go
- method_delete_autorest.go
- method_get_autorest.go
- method_listbyfactory_autorest.go
- model_dataset.go
- model_datasetfolder.go
- model_datasetresource.go
- model_linkedservicereference.go
- model_parameterspecification.go
- predicates.go
- version.go