Documentation ¶
Index ¶
- func ValidateAutomationAccountID(input interface{}, key string) (warnings []string, errors []error)
- func ValidateJobScheduleID(input interface{}, key string) (warnings []string, errors []error)
- type AutomationAccountId
- type CreateOperationResponse
- type DeleteOperationResponse
- type GetOperationResponse
- type JobSchedule
- type JobScheduleClient
- func (c JobScheduleClient) Create(ctx context.Context, id JobScheduleId, input JobScheduleCreateParameters) (result CreateOperationResponse, err error)
- func (c JobScheduleClient) Delete(ctx context.Context, id JobScheduleId) (result DeleteOperationResponse, err error)
- func (c JobScheduleClient) Get(ctx context.Context, id JobScheduleId) (result GetOperationResponse, err error)
- func (c JobScheduleClient) ListByAutomationAccount(ctx context.Context, id AutomationAccountId, ...) (result ListByAutomationAccountOperationResponse, err error)
- func (c JobScheduleClient) ListByAutomationAccountComplete(ctx context.Context, id AutomationAccountId, ...) (ListByAutomationAccountCompleteResult, error)
- func (c JobScheduleClient) ListByAutomationAccountCompleteMatchingPredicate(ctx context.Context, id AutomationAccountId, ...) (result ListByAutomationAccountCompleteResult, err error)
- type JobScheduleCreateParameters
- type JobScheduleCreateProperties
- type JobScheduleId
- type JobScheduleOperationPredicate
- type JobScheduleProperties
- type ListByAutomationAccountCompleteResult
- type ListByAutomationAccountCustomPager
- type ListByAutomationAccountOperationOptions
- type ListByAutomationAccountOperationResponse
- type RunbookAssociationProperty
- type ScheduleAssociationProperty
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ValidateAutomationAccountID ¶
ValidateAutomationAccountID checks that 'input' can be parsed as a Automation Account ID
func ValidateJobScheduleID ¶
ValidateJobScheduleID checks that 'input' can be parsed as a Job Schedule ID
Types ¶
type AutomationAccountId ¶
type AutomationAccountId struct { SubscriptionId string ResourceGroupName string AutomationAccountName string }
AutomationAccountId is a struct representing the Resource ID for a Automation Account
func NewAutomationAccountID ¶
func NewAutomationAccountID(subscriptionId string, resourceGroupName string, automationAccountName string) AutomationAccountId
NewAutomationAccountID returns a new AutomationAccountId struct
func ParseAutomationAccountID ¶
func ParseAutomationAccountID(input string) (*AutomationAccountId, error)
ParseAutomationAccountID parses 'input' into a AutomationAccountId
func ParseAutomationAccountIDInsensitively ¶
func ParseAutomationAccountIDInsensitively(input string) (*AutomationAccountId, error)
ParseAutomationAccountIDInsensitively parses 'input' case-insensitively into a AutomationAccountId note: this method should only be used for API response data and not user input
func (*AutomationAccountId) FromParseResult ¶
func (id *AutomationAccountId) FromParseResult(input resourceids.ParseResult) error
func (AutomationAccountId) ID ¶
func (id AutomationAccountId) ID() string
ID returns the formatted Automation Account ID
func (AutomationAccountId) Segments ¶
func (id AutomationAccountId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Automation Account ID
func (AutomationAccountId) String ¶
func (id AutomationAccountId) String() string
String returns a human-readable description of this Automation Account ID
type CreateOperationResponse ¶
type CreateOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *JobSchedule }
type DeleteOperationResponse ¶
type GetOperationResponse ¶
type GetOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *JobSchedule }
type JobSchedule ¶
type JobSchedule struct { Id *string `json:"id,omitempty"` Name *string `json:"name,omitempty"` Properties *JobScheduleProperties `json:"properties,omitempty"` Type *string `json:"type,omitempty"` }
type JobScheduleClient ¶
type JobScheduleClient struct {
Client *resourcemanager.Client
}
func NewJobScheduleClientWithBaseURI ¶
func NewJobScheduleClientWithBaseURI(sdkApi sdkEnv.Api) (*JobScheduleClient, error)
func (JobScheduleClient) Create ¶
func (c JobScheduleClient) Create(ctx context.Context, id JobScheduleId, input JobScheduleCreateParameters) (result CreateOperationResponse, err error)
Create ...
func (JobScheduleClient) Delete ¶
func (c JobScheduleClient) Delete(ctx context.Context, id JobScheduleId) (result DeleteOperationResponse, err error)
Delete ...
func (JobScheduleClient) Get ¶
func (c JobScheduleClient) Get(ctx context.Context, id JobScheduleId) (result GetOperationResponse, err error)
Get ...
func (JobScheduleClient) ListByAutomationAccount ¶
func (c JobScheduleClient) ListByAutomationAccount(ctx context.Context, id AutomationAccountId, options ListByAutomationAccountOperationOptions) (result ListByAutomationAccountOperationResponse, err error)
ListByAutomationAccount ...
func (JobScheduleClient) ListByAutomationAccountComplete ¶
func (c JobScheduleClient) ListByAutomationAccountComplete(ctx context.Context, id AutomationAccountId, options ListByAutomationAccountOperationOptions) (ListByAutomationAccountCompleteResult, error)
ListByAutomationAccountComplete retrieves all the results into a single object
func (JobScheduleClient) ListByAutomationAccountCompleteMatchingPredicate ¶
func (c JobScheduleClient) ListByAutomationAccountCompleteMatchingPredicate(ctx context.Context, id AutomationAccountId, options ListByAutomationAccountOperationOptions, predicate JobScheduleOperationPredicate) (result ListByAutomationAccountCompleteResult, err error)
ListByAutomationAccountCompleteMatchingPredicate retrieves all the results and then applies the predicate
type JobScheduleCreateParameters ¶
type JobScheduleCreateParameters struct {
Properties JobScheduleCreateProperties `json:"properties"`
}
type JobScheduleCreateProperties ¶
type JobScheduleCreateProperties struct { Parameters *map[string]string `json:"parameters,omitempty"` RunOn *string `json:"runOn,omitempty"` Runbook RunbookAssociationProperty `json:"runbook"` Schedule ScheduleAssociationProperty `json:"schedule"` }
type JobScheduleId ¶
type JobScheduleId struct { SubscriptionId string ResourceGroupName string AutomationAccountName string JobScheduleId string }
JobScheduleId is a struct representing the Resource ID for a Job Schedule
func NewJobScheduleID ¶
func NewJobScheduleID(subscriptionId string, resourceGroupName string, automationAccountName string, jobScheduleId string) JobScheduleId
NewJobScheduleID returns a new JobScheduleId struct
func ParseJobScheduleID ¶
func ParseJobScheduleID(input string) (*JobScheduleId, error)
ParseJobScheduleID parses 'input' into a JobScheduleId
func ParseJobScheduleIDInsensitively ¶
func ParseJobScheduleIDInsensitively(input string) (*JobScheduleId, error)
ParseJobScheduleIDInsensitively parses 'input' case-insensitively into a JobScheduleId note: this method should only be used for API response data and not user input
func (*JobScheduleId) FromParseResult ¶
func (id *JobScheduleId) FromParseResult(input resourceids.ParseResult) error
func (JobScheduleId) ID ¶
func (id JobScheduleId) ID() string
ID returns the formatted Job Schedule ID
func (JobScheduleId) Segments ¶
func (id JobScheduleId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Job Schedule ID
func (JobScheduleId) String ¶
func (id JobScheduleId) String() string
String returns a human-readable description of this Job Schedule ID
type JobScheduleOperationPredicate ¶
func (JobScheduleOperationPredicate) Matches ¶
func (p JobScheduleOperationPredicate) Matches(input JobSchedule) bool
type JobScheduleProperties ¶
type JobScheduleProperties struct { JobScheduleId *string `json:"jobScheduleId,omitempty"` Parameters *map[string]string `json:"parameters,omitempty"` RunOn *string `json:"runOn,omitempty"` Runbook *RunbookAssociationProperty `json:"runbook,omitempty"` Schedule *ScheduleAssociationProperty `json:"schedule,omitempty"` }
type ListByAutomationAccountCompleteResult ¶
type ListByAutomationAccountCompleteResult struct { LatestHttpResponse *http.Response Items []JobSchedule }
type ListByAutomationAccountCustomPager ¶ added in v0.20240628.1153531
func (*ListByAutomationAccountCustomPager) NextPageLink ¶ added in v0.20240628.1153531
func (p *ListByAutomationAccountCustomPager) NextPageLink() *odata.Link
type ListByAutomationAccountOperationOptions ¶
type ListByAutomationAccountOperationOptions struct {
Filter *string
}
func DefaultListByAutomationAccountOperationOptions ¶
func DefaultListByAutomationAccountOperationOptions() ListByAutomationAccountOperationOptions
func (ListByAutomationAccountOperationOptions) ToHeaders ¶ added in v0.20240209.1164150
func (o ListByAutomationAccountOperationOptions) ToHeaders() *client.Headers
func (ListByAutomationAccountOperationOptions) ToOData ¶ added in v0.20240209.1164150
func (o ListByAutomationAccountOperationOptions) ToOData() *odata.Query
func (ListByAutomationAccountOperationOptions) ToQuery ¶ added in v0.20240209.1164150
func (o ListByAutomationAccountOperationOptions) ToQuery() *client.QueryParams
type ListByAutomationAccountOperationResponse ¶
type ListByAutomationAccountOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *[]JobSchedule }
type RunbookAssociationProperty ¶
type RunbookAssociationProperty struct {
Name *string `json:"name,omitempty"`
}
type ScheduleAssociationProperty ¶
type ScheduleAssociationProperty struct {
Name *string `json:"name,omitempty"`
}
Source Files ¶
- client.go
- id_automationaccount.go
- id_jobschedule.go
- method_create.go
- method_delete.go
- method_get.go
- method_listbyautomationaccount.go
- model_jobschedule.go
- model_jobschedulecreateparameters.go
- model_jobschedulecreateproperties.go
- model_jobscheduleproperties.go
- model_runbookassociationproperty.go
- model_scheduleassociationproperty.go
- predicates.go
- version.go