Documentation ¶
Index ¶
- func PossibleValuesForAuthenticationMode() []string
- func PossibleValuesForCompatibilityLevel() []string
- func PossibleValuesForCompressionType() []string
- func PossibleValuesForContentStoragePolicy() []string
- func PossibleValuesForEventSerializationType() []string
- func PossibleValuesForEventsOutOfOrderPolicy() []string
- func PossibleValuesForJobType() []string
- func PossibleValuesForOutputErrorPolicy() []string
- func PossibleValuesForOutputStartMode() []string
- func PossibleValuesForSkuName() []string
- func ValidateStreamingJobID(input interface{}, key string) (warnings []string, errors []error)
- type AuthenticationMode
- type ClusterInfo
- type CompatibilityLevel
- type Compression
- type CompressionType
- type ContentStoragePolicy
- type CreateOrReplaceOperationOptions
- type CreateOrReplaceOperationResponse
- type DeleteOperationResponse
- type DiagnosticCondition
- type Diagnostics
- type EventSerializationType
- type EventsOutOfOrderPolicy
- type Function
- type FunctionBinding
- type FunctionConfiguration
- type FunctionInput
- type FunctionOutput
- type FunctionProperties
- type GetOperationOptions
- type GetOperationResponse
- type Identity
- type Input
- type InputProperties
- type JobStorageAccount
- type JobType
- type ListByResourceGroupCompleteResult
- type ListByResourceGroupOperationOptions
- type ListByResourceGroupOperationResponse
- type ListCompleteResult
- type ListOperationOptions
- type ListOperationResponse
- type Output
- type OutputDataSource
- type OutputErrorPolicy
- type OutputProperties
- type OutputStartMode
- type ScaleOperationResponse
- type ScaleStreamingJobParameters
- type Serialization
- type Sku
- type SkuName
- type StartOperationResponse
- type StartStreamingJobParameters
- type StopOperationResponse
- type StreamingJob
- type StreamingJobId
- type StreamingJobOperationPredicate
- type StreamingJobProperties
- func (o *StreamingJobProperties) GetCreatedDateAsTime() (*time.Time, error)
- func (o *StreamingJobProperties) GetLastOutputEventTimeAsTime() (*time.Time, error)
- func (o *StreamingJobProperties) GetOutputStartTimeAsTime() (*time.Time, error)
- func (o *StreamingJobProperties) SetCreatedDateAsTime(input time.Time)
- func (o *StreamingJobProperties) SetLastOutputEventTimeAsTime(input time.Time)
- func (o *StreamingJobProperties) SetOutputStartTimeAsTime(input time.Time)
- type StreamingJobsClient
- func (c StreamingJobsClient) CreateOrReplace(ctx context.Context, id StreamingJobId, input StreamingJob, ...) (result CreateOrReplaceOperationResponse, err error)
- func (c StreamingJobsClient) CreateOrReplaceThenPoll(ctx context.Context, id StreamingJobId, input StreamingJob, ...) error
- func (c StreamingJobsClient) Delete(ctx context.Context, id StreamingJobId) (result DeleteOperationResponse, err error)
- func (c StreamingJobsClient) DeleteThenPoll(ctx context.Context, id StreamingJobId) error
- func (c StreamingJobsClient) Get(ctx context.Context, id StreamingJobId, options GetOperationOptions) (result GetOperationResponse, err error)
- func (c StreamingJobsClient) List(ctx context.Context, id commonids.SubscriptionId, options ListOperationOptions) (resp ListOperationResponse, err error)
- func (c StreamingJobsClient) ListByResourceGroup(ctx context.Context, id commonids.ResourceGroupId, ...) (resp ListByResourceGroupOperationResponse, err error)
- func (c StreamingJobsClient) ListByResourceGroupComplete(ctx context.Context, id commonids.ResourceGroupId, ...) (ListByResourceGroupCompleteResult, error)
- func (c StreamingJobsClient) ListByResourceGroupCompleteMatchingPredicate(ctx context.Context, id commonids.ResourceGroupId, ...) (resp ListByResourceGroupCompleteResult, err error)
- func (c StreamingJobsClient) ListComplete(ctx context.Context, id commonids.SubscriptionId, options ListOperationOptions) (ListCompleteResult, error)
- func (c StreamingJobsClient) ListCompleteMatchingPredicate(ctx context.Context, id commonids.SubscriptionId, options ListOperationOptions, ...) (resp ListCompleteResult, err error)
- func (c StreamingJobsClient) Scale(ctx context.Context, id StreamingJobId, input ScaleStreamingJobParameters) (result ScaleOperationResponse, err error)
- func (c StreamingJobsClient) ScaleThenPoll(ctx context.Context, id StreamingJobId, input ScaleStreamingJobParameters) error
- func (c StreamingJobsClient) Start(ctx context.Context, id StreamingJobId, input StartStreamingJobParameters) (result StartOperationResponse, err error)
- func (c StreamingJobsClient) StartThenPoll(ctx context.Context, id StreamingJobId, input StartStreamingJobParameters) error
- func (c StreamingJobsClient) Stop(ctx context.Context, id StreamingJobId) (result StopOperationResponse, err error)
- func (c StreamingJobsClient) StopThenPoll(ctx context.Context, id StreamingJobId) error
- func (c StreamingJobsClient) Update(ctx context.Context, id StreamingJobId, input StreamingJob, ...) (result UpdateOperationResponse, err error)
- type Transformation
- type TransformationProperties
- type UpdateOperationOptions
- type UpdateOperationResponse
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func PossibleValuesForAuthenticationMode ¶
func PossibleValuesForAuthenticationMode() []string
func PossibleValuesForCompatibilityLevel ¶
func PossibleValuesForCompatibilityLevel() []string
func PossibleValuesForCompressionType ¶
func PossibleValuesForCompressionType() []string
func PossibleValuesForContentStoragePolicy ¶
func PossibleValuesForContentStoragePolicy() []string
func PossibleValuesForEventSerializationType ¶
func PossibleValuesForEventSerializationType() []string
func PossibleValuesForEventsOutOfOrderPolicy ¶
func PossibleValuesForEventsOutOfOrderPolicy() []string
func PossibleValuesForJobType ¶
func PossibleValuesForJobType() []string
func PossibleValuesForOutputErrorPolicy ¶
func PossibleValuesForOutputErrorPolicy() []string
func PossibleValuesForOutputStartMode ¶
func PossibleValuesForOutputStartMode() []string
func PossibleValuesForSkuName ¶
func PossibleValuesForSkuName() []string
func ValidateStreamingJobID ¶
ValidateStreamingJobID checks that 'input' can be parsed as a Streaming Job ID
Types ¶
type AuthenticationMode ¶
type AuthenticationMode string
const ( AuthenticationModeConnectionString AuthenticationMode = "ConnectionString" AuthenticationModeMsi AuthenticationMode = "Msi" AuthenticationModeUserToken AuthenticationMode = "UserToken" )
type ClusterInfo ¶
type ClusterInfo struct {
Id *string `json:"id,omitempty"`
}
type CompatibilityLevel ¶
type CompatibilityLevel string
const ( CompatibilityLevelOnePointTwo CompatibilityLevel = "1.2" CompatibilityLevelOnePointZero CompatibilityLevel = "1.0" )
type Compression ¶
type Compression struct {
Type CompressionType `json:"type"`
}
type CompressionType ¶
type CompressionType string
const ( CompressionTypeDeflate CompressionType = "Deflate" CompressionTypeGZip CompressionType = "GZip" CompressionTypeNone CompressionType = "None" )
type ContentStoragePolicy ¶
type ContentStoragePolicy string
const ( ContentStoragePolicyJobStorageAccount ContentStoragePolicy = "JobStorageAccount" ContentStoragePolicySystemAccount ContentStoragePolicy = "SystemAccount" )
type CreateOrReplaceOperationOptions ¶
func DefaultCreateOrReplaceOperationOptions ¶
func DefaultCreateOrReplaceOperationOptions() CreateOrReplaceOperationOptions
type CreateOrReplaceOperationResponse ¶
type CreateOrReplaceOperationResponse struct { Poller polling.LongRunningPoller HttpResponse *http.Response }
type DeleteOperationResponse ¶
type DeleteOperationResponse struct { Poller polling.LongRunningPoller HttpResponse *http.Response }
type DiagnosticCondition ¶
type Diagnostics ¶
type Diagnostics struct {
Conditions *[]DiagnosticCondition `json:"conditions,omitempty"`
}
type EventSerializationType ¶
type EventSerializationType string
const ( EventSerializationTypeAvro EventSerializationType = "Avro" EventSerializationTypeCsv EventSerializationType = "Csv" EventSerializationTypeJson EventSerializationType = "Json" EventSerializationTypeParquet EventSerializationType = "Parquet" )
type EventsOutOfOrderPolicy ¶
type EventsOutOfOrderPolicy string
const ( EventsOutOfOrderPolicyAdjust EventsOutOfOrderPolicy = "Adjust" EventsOutOfOrderPolicyDrop EventsOutOfOrderPolicy = "Drop" )
type Function ¶
type Function struct { Id *string `json:"id,omitempty"` Name *string `json:"name,omitempty"` Properties *FunctionProperties `json:"properties,omitempty"` Type *string `json:"type,omitempty"` }
type FunctionBinding ¶
type FunctionBinding struct {
Type string `json:"type"`
}
type FunctionConfiguration ¶
type FunctionConfiguration struct { Binding *FunctionBinding `json:"binding,omitempty"` Inputs *[]FunctionInput `json:"inputs,omitempty"` Output *FunctionOutput `json:"output,omitempty"` }
type FunctionInput ¶
type FunctionOutput ¶
type FunctionOutput struct {
DataType *string `json:"dataType,omitempty"`
}
type FunctionProperties ¶
type FunctionProperties struct { Etag *string `json:"etag,omitempty"` Properties *FunctionConfiguration `json:"properties,omitempty"` Type string `json:"type"` }
type GetOperationOptions ¶
type GetOperationOptions struct {
Expand *string
}
func DefaultGetOperationOptions ¶
func DefaultGetOperationOptions() GetOperationOptions
type GetOperationResponse ¶
type GetOperationResponse struct { HttpResponse *http.Response Model *StreamingJob }
type Input ¶
type Input struct { Id *string `json:"id,omitempty"` Name *string `json:"name,omitempty"` Properties *InputProperties `json:"properties,omitempty"` Type *string `json:"type,omitempty"` }
type InputProperties ¶
type InputProperties struct { Compression *Compression `json:"compression,omitempty"` Diagnostics *Diagnostics `json:"diagnostics,omitempty"` Etag *string `json:"etag,omitempty"` PartitionKey *string `json:"partitionKey,omitempty"` Serialization *Serialization `json:"serialization,omitempty"` Type string `json:"type"` }
type JobStorageAccount ¶
type JobStorageAccount struct { AccountKey *string `json:"accountKey,omitempty"` AccountName *string `json:"accountName,omitempty"` AuthenticationMode *AuthenticationMode `json:"authenticationMode,omitempty"` }
type ListByResourceGroupCompleteResult ¶
type ListByResourceGroupCompleteResult struct {
Items []StreamingJob
}
type ListByResourceGroupOperationOptions ¶
type ListByResourceGroupOperationOptions struct {
Expand *string
}
func DefaultListByResourceGroupOperationOptions ¶
func DefaultListByResourceGroupOperationOptions() ListByResourceGroupOperationOptions
type ListByResourceGroupOperationResponse ¶
type ListByResourceGroupOperationResponse struct { HttpResponse *http.Response Model *[]StreamingJob // contains filtered or unexported fields }
func (ListByResourceGroupOperationResponse) HasMore ¶
func (r ListByResourceGroupOperationResponse) HasMore() bool
func (ListByResourceGroupOperationResponse) LoadMore ¶
func (r ListByResourceGroupOperationResponse) LoadMore(ctx context.Context) (resp ListByResourceGroupOperationResponse, err error)
type ListCompleteResult ¶
type ListCompleteResult struct {
Items []StreamingJob
}
type ListOperationOptions ¶
type ListOperationOptions struct {
Expand *string
}
func DefaultListOperationOptions ¶
func DefaultListOperationOptions() ListOperationOptions
type ListOperationResponse ¶
type ListOperationResponse struct { HttpResponse *http.Response Model *[]StreamingJob // contains filtered or unexported fields }
func (ListOperationResponse) HasMore ¶
func (r ListOperationResponse) HasMore() bool
func (ListOperationResponse) LoadMore ¶
func (r ListOperationResponse) LoadMore(ctx context.Context) (resp ListOperationResponse, err error)
type Output ¶
type Output struct { Id *string `json:"id,omitempty"` Name *string `json:"name,omitempty"` Properties *OutputProperties `json:"properties,omitempty"` Type *string `json:"type,omitempty"` }
type OutputDataSource ¶
type OutputDataSource struct {
Type string `json:"type"`
}
type OutputErrorPolicy ¶
type OutputErrorPolicy string
const ( OutputErrorPolicyDrop OutputErrorPolicy = "Drop" OutputErrorPolicyStop OutputErrorPolicy = "Stop" )
type OutputProperties ¶
type OutputProperties struct { Datasource *OutputDataSource `json:"datasource,omitempty"` Diagnostics *Diagnostics `json:"diagnostics,omitempty"` Etag *string `json:"etag,omitempty"` Serialization *Serialization `json:"serialization,omitempty"` SizeWindow *float64 `json:"sizeWindow,omitempty"` TimeWindow *string `json:"timeWindow,omitempty"` }
type OutputStartMode ¶
type OutputStartMode string
const ( OutputStartModeCustomTime OutputStartMode = "CustomTime" OutputStartModeJobStartTime OutputStartMode = "JobStartTime" OutputStartModeLastOutputEventTime OutputStartMode = "LastOutputEventTime" )
type ScaleOperationResponse ¶
type ScaleOperationResponse struct { Poller polling.LongRunningPoller HttpResponse *http.Response }
type ScaleStreamingJobParameters ¶
type ScaleStreamingJobParameters struct {
StreamingUnits *int64 `json:"streamingUnits,omitempty"`
}
type Serialization ¶
type Serialization struct {
Type EventSerializationType `json:"type"`
}
type StartOperationResponse ¶
type StartOperationResponse struct { Poller polling.LongRunningPoller HttpResponse *http.Response }
type StartStreamingJobParameters ¶
type StartStreamingJobParameters struct { OutputStartMode *OutputStartMode `json:"outputStartMode,omitempty"` OutputStartTime *string `json:"outputStartTime,omitempty"` }
func (*StartStreamingJobParameters) GetOutputStartTimeAsTime ¶
func (o *StartStreamingJobParameters) GetOutputStartTimeAsTime() (*time.Time, error)
func (*StartStreamingJobParameters) SetOutputStartTimeAsTime ¶
func (o *StartStreamingJobParameters) SetOutputStartTimeAsTime(input time.Time)
type StopOperationResponse ¶
type StopOperationResponse struct { Poller polling.LongRunningPoller HttpResponse *http.Response }
type StreamingJob ¶
type StreamingJob struct { Id *string `json:"id,omitempty"` Identity *Identity `json:"identity,omitempty"` Location *string `json:"location,omitempty"` Name *string `json:"name,omitempty"` Properties *StreamingJobProperties `json:"properties,omitempty"` Tags *map[string]string `json:"tags,omitempty"` Type *string `json:"type,omitempty"` }
type StreamingJobId ¶
StreamingJobId is a struct representing the Resource ID for a Streaming Job
func NewStreamingJobID ¶
func NewStreamingJobID(subscriptionId string, resourceGroupName string, jobName string) StreamingJobId
NewStreamingJobID returns a new StreamingJobId struct
func ParseStreamingJobID ¶
func ParseStreamingJobID(input string) (*StreamingJobId, error)
ParseStreamingJobID parses 'input' into a StreamingJobId
func ParseStreamingJobIDInsensitively ¶
func ParseStreamingJobIDInsensitively(input string) (*StreamingJobId, error)
ParseStreamingJobIDInsensitively parses 'input' case-insensitively into a StreamingJobId note: this method should only be used for API response data and not user input
func (StreamingJobId) ID ¶
func (id StreamingJobId) ID() string
ID returns the formatted Streaming Job ID
func (StreamingJobId) Segments ¶
func (id StreamingJobId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Streaming Job ID
func (StreamingJobId) String ¶
func (id StreamingJobId) String() string
String returns a human-readable description of this Streaming Job ID
type StreamingJobOperationPredicate ¶
type StreamingJobOperationPredicate struct { Id *string Location *string Name *string Type *string }
func (StreamingJobOperationPredicate) Matches ¶
func (p StreamingJobOperationPredicate) Matches(input StreamingJob) bool
type StreamingJobProperties ¶
type StreamingJobProperties struct { Cluster *ClusterInfo `json:"cluster,omitempty"` CompatibilityLevel *CompatibilityLevel `json:"compatibilityLevel,omitempty"` ContentStoragePolicy *ContentStoragePolicy `json:"contentStoragePolicy,omitempty"` CreatedDate *string `json:"createdDate,omitempty"` DataLocale *string `json:"dataLocale,omitempty"` Etag *string `json:"etag,omitempty"` EventsLateArrivalMaxDelayInSeconds *int64 `json:"eventsLateArrivalMaxDelayInSeconds,omitempty"` EventsOutOfOrderMaxDelayInSeconds *int64 `json:"eventsOutOfOrderMaxDelayInSeconds,omitempty"` EventsOutOfOrderPolicy *EventsOutOfOrderPolicy `json:"eventsOutOfOrderPolicy,omitempty"` Functions *[]Function `json:"functions,omitempty"` Inputs *[]Input `json:"inputs,omitempty"` JobId *string `json:"jobId,omitempty"` JobState *string `json:"jobState,omitempty"` JobStorageAccount *JobStorageAccount `json:"jobStorageAccount,omitempty"` JobType *JobType `json:"jobType,omitempty"` LastOutputEventTime *string `json:"lastOutputEventTime,omitempty"` OutputErrorPolicy *OutputErrorPolicy `json:"outputErrorPolicy,omitempty"` OutputStartMode *OutputStartMode `json:"outputStartMode,omitempty"` OutputStartTime *string `json:"outputStartTime,omitempty"` Outputs *[]Output `json:"outputs,omitempty"` ProvisioningState *string `json:"provisioningState,omitempty"` Sku *Sku `json:"sku,omitempty"` Transformation *Transformation `json:"transformation,omitempty"` }
func (*StreamingJobProperties) GetCreatedDateAsTime ¶
func (o *StreamingJobProperties) GetCreatedDateAsTime() (*time.Time, error)
func (*StreamingJobProperties) GetLastOutputEventTimeAsTime ¶
func (o *StreamingJobProperties) GetLastOutputEventTimeAsTime() (*time.Time, error)
func (*StreamingJobProperties) GetOutputStartTimeAsTime ¶
func (o *StreamingJobProperties) GetOutputStartTimeAsTime() (*time.Time, error)
func (*StreamingJobProperties) SetCreatedDateAsTime ¶
func (o *StreamingJobProperties) SetCreatedDateAsTime(input time.Time)
func (*StreamingJobProperties) SetLastOutputEventTimeAsTime ¶
func (o *StreamingJobProperties) SetLastOutputEventTimeAsTime(input time.Time)
func (*StreamingJobProperties) SetOutputStartTimeAsTime ¶
func (o *StreamingJobProperties) SetOutputStartTimeAsTime(input time.Time)
type StreamingJobsClient ¶
type StreamingJobsClient struct { Client autorest.Client // contains filtered or unexported fields }
func NewStreamingJobsClientWithBaseURI ¶
func NewStreamingJobsClientWithBaseURI(endpoint string) StreamingJobsClient
func (StreamingJobsClient) CreateOrReplace ¶
func (c StreamingJobsClient) CreateOrReplace(ctx context.Context, id StreamingJobId, input StreamingJob, options CreateOrReplaceOperationOptions) (result CreateOrReplaceOperationResponse, err error)
CreateOrReplace ...
func (StreamingJobsClient) CreateOrReplaceThenPoll ¶
func (c StreamingJobsClient) CreateOrReplaceThenPoll(ctx context.Context, id StreamingJobId, input StreamingJob, options CreateOrReplaceOperationOptions) error
CreateOrReplaceThenPoll performs CreateOrReplace then polls until it's completed
func (StreamingJobsClient) Delete ¶
func (c StreamingJobsClient) Delete(ctx context.Context, id StreamingJobId) (result DeleteOperationResponse, err error)
Delete ...
func (StreamingJobsClient) DeleteThenPoll ¶
func (c StreamingJobsClient) DeleteThenPoll(ctx context.Context, id StreamingJobId) error
DeleteThenPoll performs Delete then polls until it's completed
func (StreamingJobsClient) Get ¶
func (c StreamingJobsClient) Get(ctx context.Context, id StreamingJobId, options GetOperationOptions) (result GetOperationResponse, err error)
Get ...
func (StreamingJobsClient) List ¶
func (c StreamingJobsClient) List(ctx context.Context, id commonids.SubscriptionId, options ListOperationOptions) (resp ListOperationResponse, err error)
List ...
func (StreamingJobsClient) ListByResourceGroup ¶
func (c StreamingJobsClient) ListByResourceGroup(ctx context.Context, id commonids.ResourceGroupId, options ListByResourceGroupOperationOptions) (resp ListByResourceGroupOperationResponse, err error)
ListByResourceGroup ...
func (StreamingJobsClient) ListByResourceGroupComplete ¶
func (c StreamingJobsClient) ListByResourceGroupComplete(ctx context.Context, id commonids.ResourceGroupId, options ListByResourceGroupOperationOptions) (ListByResourceGroupCompleteResult, error)
ListByResourceGroupComplete retrieves all of the results into a single object
func (StreamingJobsClient) ListByResourceGroupCompleteMatchingPredicate ¶
func (c StreamingJobsClient) ListByResourceGroupCompleteMatchingPredicate(ctx context.Context, id commonids.ResourceGroupId, options ListByResourceGroupOperationOptions, predicate StreamingJobOperationPredicate) (resp ListByResourceGroupCompleteResult, err error)
ListByResourceGroupCompleteMatchingPredicate retrieves all of the results and then applied the predicate
func (StreamingJobsClient) ListComplete ¶
func (c StreamingJobsClient) ListComplete(ctx context.Context, id commonids.SubscriptionId, options ListOperationOptions) (ListCompleteResult, error)
ListComplete retrieves all of the results into a single object
func (StreamingJobsClient) ListCompleteMatchingPredicate ¶
func (c StreamingJobsClient) ListCompleteMatchingPredicate(ctx context.Context, id commonids.SubscriptionId, options ListOperationOptions, predicate StreamingJobOperationPredicate) (resp ListCompleteResult, err error)
ListCompleteMatchingPredicate retrieves all of the results and then applied the predicate
func (StreamingJobsClient) Scale ¶
func (c StreamingJobsClient) Scale(ctx context.Context, id StreamingJobId, input ScaleStreamingJobParameters) (result ScaleOperationResponse, err error)
Scale ...
func (StreamingJobsClient) ScaleThenPoll ¶
func (c StreamingJobsClient) ScaleThenPoll(ctx context.Context, id StreamingJobId, input ScaleStreamingJobParameters) error
ScaleThenPoll performs Scale then polls until it's completed
func (StreamingJobsClient) Start ¶
func (c StreamingJobsClient) Start(ctx context.Context, id StreamingJobId, input StartStreamingJobParameters) (result StartOperationResponse, err error)
Start ...
func (StreamingJobsClient) StartThenPoll ¶
func (c StreamingJobsClient) StartThenPoll(ctx context.Context, id StreamingJobId, input StartStreamingJobParameters) error
StartThenPoll performs Start then polls until it's completed
func (StreamingJobsClient) Stop ¶
func (c StreamingJobsClient) Stop(ctx context.Context, id StreamingJobId) (result StopOperationResponse, err error)
Stop ...
func (StreamingJobsClient) StopThenPoll ¶
func (c StreamingJobsClient) StopThenPoll(ctx context.Context, id StreamingJobId) error
StopThenPoll performs Stop then polls until it's completed
func (StreamingJobsClient) Update ¶
func (c StreamingJobsClient) Update(ctx context.Context, id StreamingJobId, input StreamingJob, options UpdateOperationOptions) (result UpdateOperationResponse, err error)
Update ...
type Transformation ¶
type Transformation struct { Id *string `json:"id,omitempty"` Name *string `json:"name,omitempty"` Properties *TransformationProperties `json:"properties,omitempty"` Type *string `json:"type,omitempty"` }
type UpdateOperationOptions ¶
type UpdateOperationOptions struct {
IfMatch *string
}
func DefaultUpdateOperationOptions ¶
func DefaultUpdateOperationOptions() UpdateOperationOptions
type UpdateOperationResponse ¶
type UpdateOperationResponse struct { HttpResponse *http.Response Model *StreamingJob }
Source Files ¶
- client.go
- constants.go
- id_streamingjob.go
- method_createorreplace_autorest.go
- method_delete_autorest.go
- method_get_autorest.go
- method_list_autorest.go
- method_listbyresourcegroup_autorest.go
- method_scale_autorest.go
- method_start_autorest.go
- method_stop_autorest.go
- method_update_autorest.go
- model_clusterinfo.go
- model_compression.go
- model_diagnosticcondition.go
- model_diagnostics.go
- model_function.go
- model_functionbinding.go
- model_functionconfiguration.go
- model_functioninput.go
- model_functionoutput.go
- model_functionproperties.go
- model_identity.go
- model_input.go
- model_inputproperties.go
- model_jobstorageaccount.go
- model_output.go
- model_outputdatasource.go
- model_outputproperties.go
- model_scalestreamingjobparameters.go
- model_serialization.go
- model_sku.go
- model_startstreamingjobparameters.go
- model_streamingjob.go
- model_streamingjobproperties.go
- model_transformation.go
- model_transformationproperties.go
- predicates.go
- version.go