Documentation ¶
Index ¶
- func PossibleValuesForDataFlowDebugCommandType() []string
- func PossibleValuesForIntegrationRuntimeType() []string
- func PossibleValuesForParameterType() []string
- func ValidateFactoryID(input interface{}, key string) (warnings []string, errors []error)
- type AddDataFlowOperationResponse
- type AddDataFlowToDebugSessionResponse
- type CreateDataFlowDebugSessionRequest
- type CreateDataFlowDebugSessionResponse
- type CreateOperationResponse
- type DataFlow
- type DataFlowDebugCommandPayload
- type DataFlowDebugCommandRequest
- type DataFlowDebugCommandResponse
- type DataFlowDebugCommandType
- type DataFlowDebugPackage
- type DataFlowDebugPackageDebugSettings
- type DataFlowDebugResource
- type DataFlowDebugSessionClient
- func (c DataFlowDebugSessionClient) AddDataFlow(ctx context.Context, id FactoryId, input DataFlowDebugPackage) (result AddDataFlowOperationResponse, err error)
- func (c DataFlowDebugSessionClient) Create(ctx context.Context, id FactoryId, input CreateDataFlowDebugSessionRequest) (result CreateOperationResponse, err error)
- func (c DataFlowDebugSessionClient) CreateThenPoll(ctx context.Context, id FactoryId, input CreateDataFlowDebugSessionRequest) error
- func (c DataFlowDebugSessionClient) Delete(ctx context.Context, id FactoryId, input DeleteDataFlowDebugSessionRequest) (result DeleteOperationResponse, err error)
- func (c DataFlowDebugSessionClient) ExecuteCommand(ctx context.Context, id FactoryId, input DataFlowDebugCommandRequest) (result ExecuteCommandOperationResponse, err error)
- func (c DataFlowDebugSessionClient) ExecuteCommandThenPoll(ctx context.Context, id FactoryId, input DataFlowDebugCommandRequest) error
- func (c DataFlowDebugSessionClient) QueryByFactory(ctx context.Context, id FactoryId) (result QueryByFactoryOperationResponse, err error)
- func (c DataFlowDebugSessionClient) QueryByFactoryComplete(ctx context.Context, id FactoryId) (QueryByFactoryCompleteResult, error)
- func (c DataFlowDebugSessionClient) QueryByFactoryCompleteMatchingPredicate(ctx context.Context, id FactoryId, ...) (result QueryByFactoryCompleteResult, err error)
- type DataFlowDebugSessionInfo
- type DataFlowDebugSessionInfoOperationPredicate
- type DataFlowFolder
- type DataFlowSourceSetting
- type DataFlowStagingInfo
- type Dataset
- type DatasetDebugResource
- type DatasetFolder
- type DeleteDataFlowDebugSessionRequest
- type DeleteOperationResponse
- type ExecuteCommandOperationResponse
- type FactoryId
- type IntegrationRuntime
- type IntegrationRuntimeDebugResource
- type IntegrationRuntimeReference
- type IntegrationRuntimeType
- type LinkedService
- type LinkedServiceDebugResource
- type LinkedServiceReference
- type ParameterSpecification
- type ParameterType
- type QueryByFactoryCompleteResult
- type QueryByFactoryOperationResponse
- type Reference
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func PossibleValuesForDataFlowDebugCommandType ¶
func PossibleValuesForDataFlowDebugCommandType() []string
func PossibleValuesForIntegrationRuntimeType ¶
func PossibleValuesForIntegrationRuntimeType() []string
func PossibleValuesForParameterType ¶
func PossibleValuesForParameterType() []string
func ValidateFactoryID ¶
ValidateFactoryID checks that 'input' can be parsed as a Factory ID
Types ¶
type AddDataFlowOperationResponse ¶
type AddDataFlowOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *AddDataFlowToDebugSessionResponse }
type AddDataFlowToDebugSessionResponse ¶
type AddDataFlowToDebugSessionResponse struct {
JobVersion *string `json:"jobVersion,omitempty"`
}
type CreateDataFlowDebugSessionRequest ¶
type CreateDataFlowDebugSessionRequest struct { ComputeType *string `json:"computeType,omitempty"` CoreCount *int64 `json:"coreCount,omitempty"` IntegrationRuntime *IntegrationRuntimeDebugResource `json:"integrationRuntime,omitempty"` TimeToLive *int64 `json:"timeToLive,omitempty"` }
type CreateOperationResponse ¶
type DataFlow ¶
type DataFlow struct { Annotations *[]interface{} `json:"annotations,omitempty"` Description *string `json:"description,omitempty"` Folder *DataFlowFolder `json:"folder,omitempty"` Type string `json:"type"` }
type DataFlowDebugCommandRequest ¶
type DataFlowDebugCommandRequest struct { Command *DataFlowDebugCommandType `json:"command,omitempty"` CommandPayload *DataFlowDebugCommandPayload `json:"commandPayload,omitempty"` SessionId *string `json:"sessionId,omitempty"` }
type DataFlowDebugCommandType ¶
type DataFlowDebugCommandType string
const ( DataFlowDebugCommandTypeExecuteExpressionQuery DataFlowDebugCommandType = "executeExpressionQuery" DataFlowDebugCommandTypeExecutePreviewQuery DataFlowDebugCommandType = "executePreviewQuery" DataFlowDebugCommandTypeExecuteStatisticsQuery DataFlowDebugCommandType = "executeStatisticsQuery" )
func (*DataFlowDebugCommandType) UnmarshalJSON ¶ added in v0.20230516.1215417
func (s *DataFlowDebugCommandType) UnmarshalJSON(bytes []byte) error
type DataFlowDebugPackage ¶
type DataFlowDebugPackage struct { DataFlow *DataFlowDebugResource `json:"dataFlow,omitempty"` DataFlows *[]DataFlowDebugResource `json:"dataFlows,omitempty"` Datasets *[]DatasetDebugResource `json:"datasets,omitempty"` DebugSettings *DataFlowDebugPackageDebugSettings `json:"debugSettings,omitempty"` LinkedServices *[]LinkedServiceDebugResource `json:"linkedServices,omitempty"` SessionId *string `json:"sessionId,omitempty"` Staging *DataFlowStagingInfo `json:"staging,omitempty"` }
type DataFlowDebugPackageDebugSettings ¶
type DataFlowDebugPackageDebugSettings struct { DatasetParameters *interface{} `json:"datasetParameters,omitempty"` Parameters *map[string]interface{} `json:"parameters,omitempty"` SourceSettings *[]DataFlowSourceSetting `json:"sourceSettings,omitempty"` }
type DataFlowDebugResource ¶
type DataFlowDebugSessionClient ¶
type DataFlowDebugSessionClient struct {
Client *resourcemanager.Client
}
func NewDataFlowDebugSessionClientWithBaseURI ¶
func NewDataFlowDebugSessionClientWithBaseURI(api environments.Api) (*DataFlowDebugSessionClient, error)
func (DataFlowDebugSessionClient) AddDataFlow ¶
func (c DataFlowDebugSessionClient) AddDataFlow(ctx context.Context, id FactoryId, input DataFlowDebugPackage) (result AddDataFlowOperationResponse, err error)
AddDataFlow ...
func (DataFlowDebugSessionClient) Create ¶
func (c DataFlowDebugSessionClient) Create(ctx context.Context, id FactoryId, input CreateDataFlowDebugSessionRequest) (result CreateOperationResponse, err error)
Create ...
func (DataFlowDebugSessionClient) CreateThenPoll ¶
func (c DataFlowDebugSessionClient) CreateThenPoll(ctx context.Context, id FactoryId, input CreateDataFlowDebugSessionRequest) error
CreateThenPoll performs Create then polls until it's completed
func (DataFlowDebugSessionClient) Delete ¶
func (c DataFlowDebugSessionClient) Delete(ctx context.Context, id FactoryId, input DeleteDataFlowDebugSessionRequest) (result DeleteOperationResponse, err error)
Delete ...
func (DataFlowDebugSessionClient) ExecuteCommand ¶
func (c DataFlowDebugSessionClient) ExecuteCommand(ctx context.Context, id FactoryId, input DataFlowDebugCommandRequest) (result ExecuteCommandOperationResponse, err error)
ExecuteCommand ...
func (DataFlowDebugSessionClient) ExecuteCommandThenPoll ¶
func (c DataFlowDebugSessionClient) ExecuteCommandThenPoll(ctx context.Context, id FactoryId, input DataFlowDebugCommandRequest) error
ExecuteCommandThenPoll performs ExecuteCommand then polls until it's completed
func (DataFlowDebugSessionClient) QueryByFactory ¶
func (c DataFlowDebugSessionClient) QueryByFactory(ctx context.Context, id FactoryId) (result QueryByFactoryOperationResponse, err error)
QueryByFactory ...
func (DataFlowDebugSessionClient) QueryByFactoryComplete ¶
func (c DataFlowDebugSessionClient) QueryByFactoryComplete(ctx context.Context, id FactoryId) (QueryByFactoryCompleteResult, error)
QueryByFactoryComplete retrieves all the results into a single object
func (DataFlowDebugSessionClient) QueryByFactoryCompleteMatchingPredicate ¶
func (c DataFlowDebugSessionClient) QueryByFactoryCompleteMatchingPredicate(ctx context.Context, id FactoryId, predicate DataFlowDebugSessionInfoOperationPredicate) (result QueryByFactoryCompleteResult, err error)
QueryByFactoryCompleteMatchingPredicate retrieves all the results and then applies the predicate
type DataFlowDebugSessionInfo ¶
type DataFlowDebugSessionInfo struct { ComputeType *string `json:"computeType,omitempty"` CoreCount *int64 `json:"coreCount,omitempty"` DataFlowName *string `json:"dataFlowName,omitempty"` IntegrationRuntimeName *string `json:"integrationRuntimeName,omitempty"` LastActivityTime *string `json:"lastActivityTime,omitempty"` NodeCount *int64 `json:"nodeCount,omitempty"` SessionId *string `json:"sessionId,omitempty"` StartTime *string `json:"startTime,omitempty"` TimeToLiveInMinutes *int64 `json:"timeToLiveInMinutes,omitempty"` }
type DataFlowDebugSessionInfoOperationPredicate ¶
type DataFlowDebugSessionInfoOperationPredicate struct { ComputeType *string CoreCount *int64 DataFlowName *string IntegrationRuntimeName *string LastActivityTime *string NodeCount *int64 SessionId *string StartTime *string TimeToLiveInMinutes *int64 }
func (DataFlowDebugSessionInfoOperationPredicate) Matches ¶
func (p DataFlowDebugSessionInfoOperationPredicate) Matches(input DataFlowDebugSessionInfo) bool
type DataFlowFolder ¶
type DataFlowFolder struct {
Name *string `json:"name,omitempty"`
}
type DataFlowSourceSetting ¶
type DataFlowStagingInfo ¶
type DataFlowStagingInfo struct { FolderPath *interface{} `json:"folderPath,omitempty"` LinkedService Reference `json:"linkedService"` }
func (*DataFlowStagingInfo) UnmarshalJSON ¶ added in v0.20230313.1115805
func (s *DataFlowStagingInfo) UnmarshalJSON(bytes []byte) error
type Dataset ¶
type Dataset struct { Annotations *[]interface{} `json:"annotations,omitempty"` Description *string `json:"description,omitempty"` Folder *DatasetFolder `json:"folder,omitempty"` LinkedServiceName Reference `json:"linkedServiceName"` Parameters *map[string]ParameterSpecification `json:"parameters,omitempty"` Schema *interface{} `json:"schema,omitempty"` Structure *interface{} `json:"structure,omitempty"` Type string `json:"type"` }
func (*Dataset) UnmarshalJSON ¶ added in v0.20230313.1115805
type DatasetDebugResource ¶
type DatasetFolder ¶
type DatasetFolder struct {
Name *string `json:"name,omitempty"`
}
type DeleteDataFlowDebugSessionRequest ¶
type DeleteDataFlowDebugSessionRequest struct {
SessionId *string `json:"sessionId,omitempty"`
}
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 IntegrationRuntime ¶
type IntegrationRuntime struct { Description *string `json:"description,omitempty"` Type IntegrationRuntimeType `json:"type"` }
type IntegrationRuntimeDebugResource ¶
type IntegrationRuntimeDebugResource struct { Name *string `json:"name,omitempty"` Properties IntegrationRuntime `json:"properties"` }
type IntegrationRuntimeReference ¶
type IntegrationRuntimeReference struct { Parameters *map[string]interface{} `json:"parameters,omitempty"` ReferenceName string `json:"referenceName"` }
func (IntegrationRuntimeReference) MarshalJSON ¶ added in v0.20230313.1115805
func (s IntegrationRuntimeReference) MarshalJSON() ([]byte, error)
type IntegrationRuntimeType ¶
type IntegrationRuntimeType string
const ( IntegrationRuntimeTypeManaged IntegrationRuntimeType = "Managed" IntegrationRuntimeTypeSelfHosted IntegrationRuntimeType = "SelfHosted" )
func (*IntegrationRuntimeType) UnmarshalJSON ¶ added in v0.20230516.1215417
func (s *IntegrationRuntimeType) UnmarshalJSON(bytes []byte) error
type LinkedService ¶
type LinkedService struct { Annotations *[]interface{} `json:"annotations,omitempty"` ConnectVia Reference `json:"connectVia"` Description *string `json:"description,omitempty"` Parameters *map[string]ParameterSpecification `json:"parameters,omitempty"` Type string `json:"type"` }
func (*LinkedService) UnmarshalJSON ¶ added in v0.20230313.1115805
func (s *LinkedService) UnmarshalJSON(bytes []byte) error
type LinkedServiceDebugResource ¶
type LinkedServiceDebugResource struct { Name *string `json:"name,omitempty"` Properties LinkedService `json:"properties"` }
type LinkedServiceReference ¶
type LinkedServiceReference struct { Parameters *map[string]interface{} `json:"parameters,omitempty"` ReferenceName string `json:"referenceName"` }
func (LinkedServiceReference) MarshalJSON ¶ added in v0.20230313.1115805
func (s LinkedServiceReference) MarshalJSON() ([]byte, 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" )
func (*ParameterType) UnmarshalJSON ¶ added in v0.20230516.1215417
func (s *ParameterType) UnmarshalJSON(bytes []byte) error
type QueryByFactoryCompleteResult ¶
type QueryByFactoryCompleteResult struct {
Items []DataFlowDebugSessionInfo
}
type QueryByFactoryOperationResponse ¶
type QueryByFactoryOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *[]DataFlowDebugSessionInfo }
Source Files ¶
- client.go
- constants.go
- id_factory.go
- method_adddataflow.go
- method_create.go
- method_delete.go
- method_executecommand.go
- method_querybyfactory.go
- model_adddataflowtodebugsessionresponse.go
- model_createdataflowdebugsessionrequest.go
- model_createdataflowdebugsessionresponse.go
- model_dataflow.go
- model_dataflowdebugcommandpayload.go
- model_dataflowdebugcommandrequest.go
- model_dataflowdebugcommandresponse.go
- model_dataflowdebugpackage.go
- model_dataflowdebugpackagedebugsettings.go
- model_dataflowdebugresource.go
- model_dataflowdebugsessioninfo.go
- model_dataflowfolder.go
- model_dataflowsourcesetting.go
- model_dataflowstaginginfo.go
- model_dataset.go
- model_datasetdebugresource.go
- model_datasetfolder.go
- model_deletedataflowdebugsessionrequest.go
- model_integrationruntime.go
- model_integrationruntimedebugresource.go
- model_integrationruntimereference.go
- model_linkedservice.go
- model_linkedservicedebugresource.go
- model_linkedservicereference.go
- model_parameterspecification.go
- model_reference.go
- predicates.go
- version.go