README ¶
github.com/hashicorp/go-azure-sdk/resource-manager/machinelearningservices/2022-05-01/codeversion
Documentation
The codeversion
SDK allows for interaction with the Azure Resource Manager Service machinelearningservices
(API Version 2022-05-01
).
This readme covers example usages, but further information on using this SDK can be found in the project root.
Import Path
import "github.com/hashicorp/go-azure-sdk/resource-manager/machinelearningservices/2022-05-01/codeversion"
Client Initialization
client := codeversion.NewCodeVersionClientWithBaseURI("https://management.azure.com")
client.Client.Authorizer = authorizer
Example Usage: CodeVersionClient.CreateOrUpdate
ctx := context.TODO()
id := codeversion.NewCodeVersionID("12345678-1234-9876-4563-123456789012", "example-resource-group", "workspaceValue", "codeValue", "versionValue")
payload := codeversion.CodeVersionResource{
// ...
}
read, err := client.CreateOrUpdate(ctx, id, payload)
if err != nil {
// handle the error
}
if model := read.Model; model != nil {
// do something with the model/response object
}
Example Usage: CodeVersionClient.Delete
ctx := context.TODO()
id := codeversion.NewCodeVersionID("12345678-1234-9876-4563-123456789012", "example-resource-group", "workspaceValue", "codeValue", "versionValue")
read, err := client.Delete(ctx, id)
if err != nil {
// handle the error
}
if model := read.Model; model != nil {
// do something with the model/response object
}
Example Usage: CodeVersionClient.Get
ctx := context.TODO()
id := codeversion.NewCodeVersionID("12345678-1234-9876-4563-123456789012", "example-resource-group", "workspaceValue", "codeValue", "versionValue")
read, err := client.Get(ctx, id)
if err != nil {
// handle the error
}
if model := read.Model; model != nil {
// do something with the model/response object
}
Example Usage: CodeVersionClient.List
ctx := context.TODO()
id := codeversion.NewCodeID("12345678-1234-9876-4563-123456789012", "example-resource-group", "workspaceValue", "codeValue")
// alternatively `client.List(ctx, id, codeversion.DefaultListOperationOptions())` can be used to do batched pagination
items, err := client.ListComplete(ctx, id, codeversion.DefaultListOperationOptions())
if err != nil {
// handle the error
}
for _, item := range items {
// do something
}
Documentation ¶
Index ¶
- func ValidateCodeID(input interface{}, key string) (warnings []string, errors []error)
- func ValidateCodeVersionID(input interface{}, key string) (warnings []string, errors []error)
- type CodeId
- type CodeVersion
- type CodeVersionClient
- func (c CodeVersionClient) CreateOrUpdate(ctx context.Context, id CodeVersionId, input CodeVersionResource) (result CreateOrUpdateOperationResponse, err error)
- func (c CodeVersionClient) Delete(ctx context.Context, id CodeVersionId) (result DeleteOperationResponse, err error)
- func (c CodeVersionClient) Get(ctx context.Context, id CodeVersionId) (result GetOperationResponse, err error)
- func (c CodeVersionClient) List(ctx context.Context, id CodeId, options ListOperationOptions) (resp ListOperationResponse, err error)
- func (c CodeVersionClient) ListComplete(ctx context.Context, id CodeId, options ListOperationOptions) (ListCompleteResult, error)
- func (c CodeVersionClient) ListCompleteMatchingPredicate(ctx context.Context, id CodeId, options ListOperationOptions, ...) (resp ListCompleteResult, err error)
- type CodeVersionId
- type CodeVersionResource
- type CodeVersionResourceOperationPredicate
- type CreateOrUpdateOperationResponse
- type DeleteOperationResponse
- type GetOperationResponse
- type ListCompleteResult
- type ListOperationOptions
- type ListOperationResponse
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ValidateCodeID ¶
ValidateCodeID checks that 'input' can be parsed as a Code ID
func ValidateCodeVersionID ¶
ValidateCodeVersionID checks that 'input' can be parsed as a Code Version ID
Types ¶
type CodeId ¶
type CodeId struct { SubscriptionId string ResourceGroupName string WorkspaceName string CodeName string }
CodeId is a struct representing the Resource ID for a Code
func NewCodeID ¶
func NewCodeID(subscriptionId string, resourceGroupName string, workspaceName string, codeName string) CodeId
NewCodeID returns a new CodeId struct
func ParseCodeID ¶
ParseCodeID parses 'input' into a CodeId
func ParseCodeIDInsensitively ¶
ParseCodeIDInsensitively parses 'input' case-insensitively into a CodeId note: this method should only be used for API response data and not user input
func (CodeId) Segments ¶
func (id CodeId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Code ID
type CodeVersion ¶
type CodeVersion struct { CodeUri *string `json:"codeUri,omitempty"` Description *string `json:"description,omitempty"` IsAnonymous *bool `json:"isAnonymous,omitempty"` IsArchived *bool `json:"isArchived,omitempty"` Properties *map[string]string `json:"properties,omitempty"` Tags *map[string]string `json:"tags,omitempty"` }
type CodeVersionClient ¶
func NewCodeVersionClientWithBaseURI ¶
func NewCodeVersionClientWithBaseURI(endpoint string) CodeVersionClient
func (CodeVersionClient) CreateOrUpdate ¶
func (c CodeVersionClient) CreateOrUpdate(ctx context.Context, id CodeVersionId, input CodeVersionResource) (result CreateOrUpdateOperationResponse, err error)
CreateOrUpdate ...
func (CodeVersionClient) Delete ¶
func (c CodeVersionClient) Delete(ctx context.Context, id CodeVersionId) (result DeleteOperationResponse, err error)
Delete ...
func (CodeVersionClient) Get ¶
func (c CodeVersionClient) Get(ctx context.Context, id CodeVersionId) (result GetOperationResponse, err error)
Get ...
func (CodeVersionClient) List ¶
func (c CodeVersionClient) List(ctx context.Context, id CodeId, options ListOperationOptions) (resp ListOperationResponse, err error)
List ...
func (CodeVersionClient) ListComplete ¶
func (c CodeVersionClient) ListComplete(ctx context.Context, id CodeId, options ListOperationOptions) (ListCompleteResult, error)
ListComplete retrieves all of the results into a single object
func (CodeVersionClient) ListCompleteMatchingPredicate ¶
func (c CodeVersionClient) ListCompleteMatchingPredicate(ctx context.Context, id CodeId, options ListOperationOptions, predicate CodeVersionResourceOperationPredicate) (resp ListCompleteResult, err error)
ListCompleteMatchingPredicate retrieves all of the results and then applied the predicate
type CodeVersionId ¶
type CodeVersionId struct { SubscriptionId string ResourceGroupName string WorkspaceName string CodeName string VersionName string }
CodeVersionId is a struct representing the Resource ID for a Code Version
func NewCodeVersionID ¶
func NewCodeVersionID(subscriptionId string, resourceGroupName string, workspaceName string, codeName string, versionName string) CodeVersionId
NewCodeVersionID returns a new CodeVersionId struct
func ParseCodeVersionID ¶
func ParseCodeVersionID(input string) (*CodeVersionId, error)
ParseCodeVersionID parses 'input' into a CodeVersionId
func ParseCodeVersionIDInsensitively ¶
func ParseCodeVersionIDInsensitively(input string) (*CodeVersionId, error)
ParseCodeVersionIDInsensitively parses 'input' case-insensitively into a CodeVersionId note: this method should only be used for API response data and not user input
func (CodeVersionId) ID ¶
func (id CodeVersionId) ID() string
ID returns the formatted Code Version ID
func (CodeVersionId) Segments ¶
func (id CodeVersionId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Code Version ID
func (CodeVersionId) String ¶
func (id CodeVersionId) String() string
String returns a human-readable description of this Code Version ID
type CodeVersionResource ¶
type CodeVersionResource struct { Id *string `json:"id,omitempty"` Name *string `json:"name,omitempty"` Properties CodeVersion `json:"properties"` SystemData *systemdata.SystemData `json:"systemData,omitempty"` Type *string `json:"type,omitempty"` }
type CodeVersionResourceOperationPredicate ¶
func (CodeVersionResourceOperationPredicate) Matches ¶
func (p CodeVersionResourceOperationPredicate) Matches(input CodeVersionResource) bool
type CreateOrUpdateOperationResponse ¶
type CreateOrUpdateOperationResponse struct { HttpResponse *http.Response Model *CodeVersionResource }
type DeleteOperationResponse ¶
type GetOperationResponse ¶
type GetOperationResponse struct { HttpResponse *http.Response Model *CodeVersionResource }
type ListCompleteResult ¶
type ListCompleteResult struct {
Items []CodeVersionResource
}
type ListOperationOptions ¶
func DefaultListOperationOptions ¶
func DefaultListOperationOptions() ListOperationOptions
type ListOperationResponse ¶
type ListOperationResponse struct { HttpResponse *http.Response Model *[]CodeVersionResource // 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)