Documentation ¶
Index ¶
- func ValidateCredentialID(input interface{}, key string) (warnings []string, errors []error)
- func ValidateJobAgentID(input interface{}, key string) (warnings []string, errors []error)
- type CreateOrUpdateOperationResponse
- type CredentialId
- type DeleteOperationResponse
- type GetOperationResponse
- type JobAgentId
- type JobCredential
- type JobCredentialOperationPredicate
- type JobCredentialProperties
- type JobCredentialsClient
- func (c JobCredentialsClient) CreateOrUpdate(ctx context.Context, id CredentialId, input JobCredential) (result CreateOrUpdateOperationResponse, err error)
- func (c JobCredentialsClient) Delete(ctx context.Context, id CredentialId) (result DeleteOperationResponse, err error)
- func (c JobCredentialsClient) Get(ctx context.Context, id CredentialId) (result GetOperationResponse, err error)
- func (c JobCredentialsClient) ListByAgent(ctx context.Context, id JobAgentId) (result ListByAgentOperationResponse, err error)
- func (c JobCredentialsClient) ListByAgentComplete(ctx context.Context, id JobAgentId) (ListByAgentCompleteResult, error)
- func (c JobCredentialsClient) ListByAgentCompleteMatchingPredicate(ctx context.Context, id JobAgentId, predicate JobCredentialOperationPredicate) (result ListByAgentCompleteResult, err error)
- type ListByAgentCompleteResult
- type ListByAgentCustomPager
- type ListByAgentOperationResponse
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ValidateCredentialID ¶
ValidateCredentialID checks that 'input' can be parsed as a Credential ID
func ValidateJobAgentID ¶
ValidateJobAgentID checks that 'input' can be parsed as a Job Agent ID
Types ¶
type CreateOrUpdateOperationResponse ¶
type CreateOrUpdateOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *JobCredential }
type CredentialId ¶
type CredentialId struct { SubscriptionId string ResourceGroupName string ServerName string JobAgentName string CredentialName string }
CredentialId is a struct representing the Resource ID for a Credential
func NewCredentialID ¶
func NewCredentialID(subscriptionId string, resourceGroupName string, serverName string, jobAgentName string, credentialName string) CredentialId
NewCredentialID returns a new CredentialId struct
func ParseCredentialID ¶
func ParseCredentialID(input string) (*CredentialId, error)
ParseCredentialID parses 'input' into a CredentialId
func ParseCredentialIDInsensitively ¶
func ParseCredentialIDInsensitively(input string) (*CredentialId, error)
ParseCredentialIDInsensitively parses 'input' case-insensitively into a CredentialId note: this method should only be used for API response data and not user input
func (*CredentialId) FromParseResult ¶
func (id *CredentialId) FromParseResult(input resourceids.ParseResult) error
func (CredentialId) Segments ¶
func (id CredentialId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Credential ID
func (CredentialId) String ¶
func (id CredentialId) String() string
String returns a human-readable description of this Credential ID
type DeleteOperationResponse ¶
type GetOperationResponse ¶
type GetOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *JobCredential }
type JobAgentId ¶
type JobAgentId struct { SubscriptionId string ResourceGroupName string ServerName string JobAgentName string }
JobAgentId is a struct representing the Resource ID for a Job Agent
func NewJobAgentID ¶
func NewJobAgentID(subscriptionId string, resourceGroupName string, serverName string, jobAgentName string) JobAgentId
NewJobAgentID returns a new JobAgentId struct
func ParseJobAgentID ¶
func ParseJobAgentID(input string) (*JobAgentId, error)
ParseJobAgentID parses 'input' into a JobAgentId
func ParseJobAgentIDInsensitively ¶
func ParseJobAgentIDInsensitively(input string) (*JobAgentId, error)
ParseJobAgentIDInsensitively parses 'input' case-insensitively into a JobAgentId note: this method should only be used for API response data and not user input
func (*JobAgentId) FromParseResult ¶
func (id *JobAgentId) FromParseResult(input resourceids.ParseResult) error
func (JobAgentId) Segments ¶
func (id JobAgentId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Job Agent ID
func (JobAgentId) String ¶
func (id JobAgentId) String() string
String returns a human-readable description of this Job Agent ID
type JobCredential ¶
type JobCredential struct { Id *string `json:"id,omitempty"` Name *string `json:"name,omitempty"` Properties *JobCredentialProperties `json:"properties,omitempty"` Type *string `json:"type,omitempty"` }
type JobCredentialOperationPredicate ¶
func (JobCredentialOperationPredicate) Matches ¶
func (p JobCredentialOperationPredicate) Matches(input JobCredential) bool
type JobCredentialProperties ¶
type JobCredentialsClient ¶
type JobCredentialsClient struct {
Client *resourcemanager.Client
}
func NewJobCredentialsClientWithBaseURI ¶
func NewJobCredentialsClientWithBaseURI(sdkApi sdkEnv.Api) (*JobCredentialsClient, error)
func (JobCredentialsClient) CreateOrUpdate ¶
func (c JobCredentialsClient) CreateOrUpdate(ctx context.Context, id CredentialId, input JobCredential) (result CreateOrUpdateOperationResponse, err error)
CreateOrUpdate ...
func (JobCredentialsClient) Delete ¶
func (c JobCredentialsClient) Delete(ctx context.Context, id CredentialId) (result DeleteOperationResponse, err error)
Delete ...
func (JobCredentialsClient) Get ¶
func (c JobCredentialsClient) Get(ctx context.Context, id CredentialId) (result GetOperationResponse, err error)
Get ...
func (JobCredentialsClient) ListByAgent ¶
func (c JobCredentialsClient) ListByAgent(ctx context.Context, id JobAgentId) (result ListByAgentOperationResponse, err error)
ListByAgent ...
func (JobCredentialsClient) ListByAgentComplete ¶
func (c JobCredentialsClient) ListByAgentComplete(ctx context.Context, id JobAgentId) (ListByAgentCompleteResult, error)
ListByAgentComplete retrieves all the results into a single object
func (JobCredentialsClient) ListByAgentCompleteMatchingPredicate ¶
func (c JobCredentialsClient) ListByAgentCompleteMatchingPredicate(ctx context.Context, id JobAgentId, predicate JobCredentialOperationPredicate) (result ListByAgentCompleteResult, err error)
ListByAgentCompleteMatchingPredicate retrieves all the results and then applies the predicate
type ListByAgentCompleteResult ¶
type ListByAgentCompleteResult struct { LatestHttpResponse *http.Response Items []JobCredential }
type ListByAgentCustomPager ¶ added in v0.20240628.1153531
func (*ListByAgentCustomPager) NextPageLink ¶ added in v0.20240628.1153531
func (p *ListByAgentCustomPager) NextPageLink() *odata.Link
type ListByAgentOperationResponse ¶
type ListByAgentOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *[]JobCredential }