Documentation
¶
Overview ¶
Test service for Idempotency of Operations
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CreateTestResourceRequest ¶
type CreateTestResourceRequest struct {
RequestId string `json:"-" url:"request_id,omitempty"`
TestResource TestResource `json:"test_resource"`
ForceSendFields []string `json:"-" url:"-"`
}
func (CreateTestResourceRequest) MarshalJSON ¶
func (s CreateTestResourceRequest) MarshalJSON() ([]byte, error)
func (*CreateTestResourceRequest) UnmarshalJSON ¶
func (s *CreateTestResourceRequest) UnmarshalJSON(b []byte) error
type IdempotencyTestingAPI ¶
type IdempotencyTestingAPI struct {
// contains filtered or unexported fields
}
Test service for Idempotency of Operations
func NewIdempotencyTesting ¶
func NewIdempotencyTesting(client *client.DatabricksClient) *IdempotencyTestingAPI
func (*IdempotencyTestingAPI) CreateTestResource ¶
func (a *IdempotencyTestingAPI) CreateTestResource(ctx context.Context, request CreateTestResourceRequest) (*TestResource, error)
type IdempotencyTestingInterface ¶
type IdempotencyTestingInterface interface {
CreateTestResource(ctx context.Context, request CreateTestResourceRequest) (*TestResource, error)
}
type TestResource ¶
type TestResource struct {
Id string `json:"id,omitempty"`
Name string `json:"name,omitempty"`
ForceSendFields []string `json:"-" url:"-"`
}
func (TestResource) MarshalJSON ¶
func (s TestResource) MarshalJSON() ([]byte, error)
func (*TestResource) UnmarshalJSON ¶
func (s *TestResource) UnmarshalJSON(b []byte) error
Click to show internal directories.
Click to hide internal directories.