Documentation ¶
Index ¶
- func PossibleValuesForContentType() []string
- func PossibleValuesForDeploymentFetchStatus() []string
- func PossibleValuesForDeploymentResult() []string
- func PossibleValuesForDeploymentState() []string
- func PossibleValuesForRepoType() []string
- func PossibleValuesForRepositoryAccessKind() []string
- func PossibleValuesForState() []string
- func PossibleValuesForVersion() []string
- func PossibleValuesForWarningCode() []string
- func ValidateSourceControlID(input interface{}, key string) (warnings []string, errors []error)
- func ValidateWorkspaceID(input interface{}, key string) (warnings []string, errors []error)
- type AzureDevOpsResourceInfo
- type ContentType
- type CreateOperationResponse
- type DeleteOperationResponse
- type Deployment
- type DeploymentFetchStatus
- type DeploymentInfo
- type DeploymentResult
- type DeploymentState
- type GetOperationResponse
- type GitHubResourceInfo
- type ListCompleteResult
- type ListCustomPager
- type ListOperationResponse
- type PullRequest
- type RepoType
- type Repository
- type RepositoryAccess
- type RepositoryAccessKind
- type RepositoryAccessObject
- type RepositoryAccessProperties
- type RepositoryResourceInfo
- type ServicePrincipal
- type SourceControl
- type SourceControlId
- type SourceControlOperationPredicate
- type SourceControlProperties
- type SourceControlsClient
- func (c SourceControlsClient) Create(ctx context.Context, id SourceControlId, input SourceControl) (result CreateOperationResponse, err error)
- func (c SourceControlsClient) Delete(ctx context.Context, id SourceControlId, input RepositoryAccessProperties) (result DeleteOperationResponse, err error)
- func (c SourceControlsClient) Get(ctx context.Context, id SourceControlId) (result GetOperationResponse, err error)
- func (c SourceControlsClient) List(ctx context.Context, id WorkspaceId) (result ListOperationResponse, err error)
- func (c SourceControlsClient) ListComplete(ctx context.Context, id WorkspaceId) (ListCompleteResult, error)
- func (c SourceControlsClient) ListCompleteMatchingPredicate(ctx context.Context, id WorkspaceId, predicate SourceControlOperationPredicate) (result ListCompleteResult, err error)
- type State
- type Version
- type Warning
- type WarningBody
- type WarningCode
- type Webhook
- type WorkspaceId
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func PossibleValuesForContentType ¶
func PossibleValuesForContentType() []string
func PossibleValuesForDeploymentFetchStatus ¶
func PossibleValuesForDeploymentFetchStatus() []string
func PossibleValuesForDeploymentResult ¶
func PossibleValuesForDeploymentResult() []string
func PossibleValuesForDeploymentState ¶
func PossibleValuesForDeploymentState() []string
func PossibleValuesForRepoType ¶
func PossibleValuesForRepoType() []string
func PossibleValuesForRepositoryAccessKind ¶
func PossibleValuesForRepositoryAccessKind() []string
func PossibleValuesForState ¶
func PossibleValuesForState() []string
func PossibleValuesForVersion ¶
func PossibleValuesForVersion() []string
func PossibleValuesForWarningCode ¶
func PossibleValuesForWarningCode() []string
func ValidateSourceControlID ¶
ValidateSourceControlID checks that 'input' can be parsed as a Source Control ID
func ValidateWorkspaceID ¶
ValidateWorkspaceID checks that 'input' can be parsed as a Workspace ID
Types ¶
type AzureDevOpsResourceInfo ¶
type ContentType ¶
type ContentType string
const ( ContentTypeAnalyticRule ContentType = "AnalyticRule" ContentTypeAutomationRule ContentType = "AutomationRule" ContentTypeHuntingQuery ContentType = "HuntingQuery" ContentTypeParser ContentType = "Parser" ContentTypePlaybook ContentType = "Playbook" ContentTypeWorkbook ContentType = "Workbook" )
func (*ContentType) UnmarshalJSON ¶
func (s *ContentType) UnmarshalJSON(bytes []byte) error
type CreateOperationResponse ¶
type CreateOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *SourceControl }
type DeleteOperationResponse ¶
type Deployment ¶
type Deployment struct { DeploymentId *string `json:"deploymentId,omitempty"` DeploymentLogsUrl *string `json:"deploymentLogsUrl,omitempty"` DeploymentResult *DeploymentResult `json:"deploymentResult,omitempty"` DeploymentState *DeploymentState `json:"deploymentState,omitempty"` DeploymentTime *string `json:"deploymentTime,omitempty"` }
func (*Deployment) GetDeploymentTimeAsTime ¶
func (o *Deployment) GetDeploymentTimeAsTime() (*time.Time, error)
func (*Deployment) SetDeploymentTimeAsTime ¶
func (o *Deployment) SetDeploymentTimeAsTime(input time.Time)
type DeploymentFetchStatus ¶
type DeploymentFetchStatus string
const ( DeploymentFetchStatusNotFound DeploymentFetchStatus = "NotFound" DeploymentFetchStatusSuccess DeploymentFetchStatus = "Success" )
func (*DeploymentFetchStatus) UnmarshalJSON ¶
func (s *DeploymentFetchStatus) UnmarshalJSON(bytes []byte) error
type DeploymentInfo ¶
type DeploymentInfo struct { Deployment *Deployment `json:"deployment,omitempty"` DeploymentFetchStatus *DeploymentFetchStatus `json:"deploymentFetchStatus,omitempty"` Message *string `json:"message,omitempty"` }
type DeploymentResult ¶
type DeploymentResult string
const ( DeploymentResultCanceled DeploymentResult = "Canceled" DeploymentResultFailed DeploymentResult = "Failed" DeploymentResultSuccess DeploymentResult = "Success" )
func (*DeploymentResult) UnmarshalJSON ¶
func (s *DeploymentResult) UnmarshalJSON(bytes []byte) error
type DeploymentState ¶
type DeploymentState string
const ( DeploymentStateCanceling DeploymentState = "Canceling" DeploymentStateCompleted DeploymentState = "Completed" DeploymentStateInProgress DeploymentState = "In_Progress" DeploymentStateQueued DeploymentState = "Queued" )
func (*DeploymentState) UnmarshalJSON ¶
func (s *DeploymentState) UnmarshalJSON(bytes []byte) error
type GetOperationResponse ¶
type GetOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *SourceControl }
type GitHubResourceInfo ¶
type GitHubResourceInfo struct {
AppInstallationId *string `json:"appInstallationId,omitempty"`
}
type ListCompleteResult ¶
type ListCompleteResult struct { LatestHttpResponse *http.Response Items []SourceControl }
type ListCustomPager ¶ added in v0.20240628.1153531
func (*ListCustomPager) NextPageLink ¶ added in v0.20240628.1153531
func (p *ListCustomPager) NextPageLink() *odata.Link
type ListOperationResponse ¶
type ListOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *[]SourceControl }
type PullRequest ¶
type Repository ¶
type RepositoryAccess ¶
type RepositoryAccessKind ¶
type RepositoryAccessKind string
const ( RepositoryAccessKindApp RepositoryAccessKind = "App" RepositoryAccessKindOAuth RepositoryAccessKind = "OAuth" RepositoryAccessKindPAT RepositoryAccessKind = "PAT" )
func (*RepositoryAccessKind) UnmarshalJSON ¶
func (s *RepositoryAccessKind) UnmarshalJSON(bytes []byte) error
type RepositoryAccessObject ¶
type RepositoryAccessObject struct {
RepositoryAccess RepositoryAccess `json:"repositoryAccess"`
}
type RepositoryAccessProperties ¶
type RepositoryAccessProperties struct {
Properties RepositoryAccessObject `json:"properties"`
}
type RepositoryResourceInfo ¶
type RepositoryResourceInfo struct { AzureDevOpsResourceInfo *AzureDevOpsResourceInfo `json:"azureDevOpsResourceInfo,omitempty"` GitHubResourceInfo *GitHubResourceInfo `json:"gitHubResourceInfo,omitempty"` Webhook *Webhook `json:"webhook,omitempty"` }
type ServicePrincipal ¶
type ServicePrincipal struct { AppId *string `json:"appId,omitempty"` CredentialsExpireOn *string `json:"credentialsExpireOn,omitempty"` Id *string `json:"id,omitempty"` TenantId *string `json:"tenantId,omitempty"` }
func (*ServicePrincipal) GetCredentialsExpireOnAsTime ¶
func (o *ServicePrincipal) GetCredentialsExpireOnAsTime() (*time.Time, error)
func (*ServicePrincipal) SetCredentialsExpireOnAsTime ¶
func (o *ServicePrincipal) SetCredentialsExpireOnAsTime(input time.Time)
type SourceControl ¶
type SourceControl struct { Etag *string `json:"etag,omitempty"` Id *string `json:"id,omitempty"` Name *string `json:"name,omitempty"` Properties SourceControlProperties `json:"properties"` SystemData *systemdata.SystemData `json:"systemData,omitempty"` Type *string `json:"type,omitempty"` }
type SourceControlId ¶
type SourceControlId struct { SubscriptionId string ResourceGroupName string WorkspaceName string SourceControlId string }
SourceControlId is a struct representing the Resource ID for a Source Control
func NewSourceControlID ¶
func NewSourceControlID(subscriptionId string, resourceGroupName string, workspaceName string, sourceControlId string) SourceControlId
NewSourceControlID returns a new SourceControlId struct
func ParseSourceControlID ¶
func ParseSourceControlID(input string) (*SourceControlId, error)
ParseSourceControlID parses 'input' into a SourceControlId
func ParseSourceControlIDInsensitively ¶
func ParseSourceControlIDInsensitively(input string) (*SourceControlId, error)
ParseSourceControlIDInsensitively parses 'input' case-insensitively into a SourceControlId note: this method should only be used for API response data and not user input
func (*SourceControlId) FromParseResult ¶
func (id *SourceControlId) FromParseResult(input resourceids.ParseResult) error
func (SourceControlId) ID ¶
func (id SourceControlId) ID() string
ID returns the formatted Source Control ID
func (SourceControlId) Segments ¶
func (id SourceControlId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Source Control ID
func (SourceControlId) String ¶
func (id SourceControlId) String() string
String returns a human-readable description of this Source Control ID
type SourceControlOperationPredicate ¶
func (SourceControlOperationPredicate) Matches ¶
func (p SourceControlOperationPredicate) Matches(input SourceControl) bool
type SourceControlProperties ¶
type SourceControlProperties struct { ContentTypes []ContentType `json:"contentTypes"` Description *string `json:"description,omitempty"` DisplayName string `json:"displayName"` Id *string `json:"id,omitempty"` LastDeploymentInfo *DeploymentInfo `json:"lastDeploymentInfo,omitempty"` PullRequest *PullRequest `json:"pullRequest,omitempty"` RepoType RepoType `json:"repoType"` Repository Repository `json:"repository"` RepositoryAccess *RepositoryAccess `json:"repositoryAccess,omitempty"` RepositoryResourceInfo *RepositoryResourceInfo `json:"repositoryResourceInfo,omitempty"` ServicePrincipal *ServicePrincipal `json:"servicePrincipal,omitempty"` Version *Version `json:"version,omitempty"` }
type SourceControlsClient ¶
type SourceControlsClient struct {
Client *resourcemanager.Client
}
func NewSourceControlsClientWithBaseURI ¶
func NewSourceControlsClientWithBaseURI(sdkApi sdkEnv.Api) (*SourceControlsClient, error)
func (SourceControlsClient) Create ¶
func (c SourceControlsClient) Create(ctx context.Context, id SourceControlId, input SourceControl) (result CreateOperationResponse, err error)
Create ...
func (SourceControlsClient) Delete ¶
func (c SourceControlsClient) Delete(ctx context.Context, id SourceControlId, input RepositoryAccessProperties) (result DeleteOperationResponse, err error)
Delete ...
func (SourceControlsClient) Get ¶
func (c SourceControlsClient) Get(ctx context.Context, id SourceControlId) (result GetOperationResponse, err error)
Get ...
func (SourceControlsClient) List ¶
func (c SourceControlsClient) List(ctx context.Context, id WorkspaceId) (result ListOperationResponse, err error)
List ...
func (SourceControlsClient) ListComplete ¶
func (c SourceControlsClient) ListComplete(ctx context.Context, id WorkspaceId) (ListCompleteResult, error)
ListComplete retrieves all the results into a single object
func (SourceControlsClient) ListCompleteMatchingPredicate ¶
func (c SourceControlsClient) ListCompleteMatchingPredicate(ctx context.Context, id WorkspaceId, predicate SourceControlOperationPredicate) (result ListCompleteResult, err error)
ListCompleteMatchingPredicate retrieves all the results and then applies the predicate
type Warning ¶
type Warning struct {
Warning *WarningBody `json:"warning,omitempty"`
}
type WarningBody ¶
type WarningBody struct { Code *WarningCode `json:"code,omitempty"` Details *[]WarningBody `json:"details,omitempty"` Message *string `json:"message,omitempty"` }
type WarningCode ¶
type WarningCode string
const ( WarningCodeSourceControlDeletedWithWarnings WarningCode = "SourceControl_DeletedWithWarnings" WarningCodeSourceControlWarningDeletePipelineFromAzureDevOps WarningCode = "SourceControlWarning_DeletePipelineFromAzureDevOps" WarningCodeSourceControlWarningDeleteRoleAssignment WarningCode = "SourceControlWarning_DeleteRoleAssignment" WarningCodeSourceControlWarningDeleteServicePrincipal WarningCode = "SourceControlWarning_DeleteServicePrincipal" WarningCodeSourceControlWarningDeleteWorkflowAndSecretFromGitHub WarningCode = "SourceControlWarning_DeleteWorkflowAndSecretFromGitHub" )
func (*WarningCode) UnmarshalJSON ¶
func (s *WarningCode) UnmarshalJSON(bytes []byte) error
type Webhook ¶
type Webhook struct { RotateWebhookSecret *bool `json:"rotateWebhookSecret,omitempty"` WebhookId *string `json:"webhookId,omitempty"` WebhookSecretUpdateTime *string `json:"webhookSecretUpdateTime,omitempty"` WebhookUrl *string `json:"webhookUrl,omitempty"` }
func (*Webhook) GetWebhookSecretUpdateTimeAsTime ¶
func (*Webhook) SetWebhookSecretUpdateTimeAsTime ¶
type WorkspaceId ¶
WorkspaceId is a struct representing the Resource ID for a Workspace
func NewWorkspaceID ¶
func NewWorkspaceID(subscriptionId string, resourceGroupName string, workspaceName string) WorkspaceId
NewWorkspaceID returns a new WorkspaceId struct
func ParseWorkspaceID ¶
func ParseWorkspaceID(input string) (*WorkspaceId, error)
ParseWorkspaceID parses 'input' into a WorkspaceId
func ParseWorkspaceIDInsensitively ¶
func ParseWorkspaceIDInsensitively(input string) (*WorkspaceId, error)
ParseWorkspaceIDInsensitively parses 'input' case-insensitively into a WorkspaceId note: this method should only be used for API response data and not user input
func (*WorkspaceId) FromParseResult ¶
func (id *WorkspaceId) FromParseResult(input resourceids.ParseResult) error
func (WorkspaceId) Segments ¶
func (id WorkspaceId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Workspace ID
func (WorkspaceId) String ¶
func (id WorkspaceId) String() string
String returns a human-readable description of this Workspace ID
Source Files ¶
- client.go
- constants.go
- id_sourcecontrol.go
- id_workspace.go
- method_create.go
- method_delete.go
- method_get.go
- method_list.go
- model_azuredevopsresourceinfo.go
- model_deployment.go
- model_deploymentinfo.go
- model_githubresourceinfo.go
- model_pullrequest.go
- model_repository.go
- model_repositoryaccess.go
- model_repositoryaccessobject.go
- model_repositoryaccessproperties.go
- model_repositoryresourceinfo.go
- model_serviceprincipal.go
- model_sourcecontrol.go
- model_sourcecontrolproperties.go
- model_warning.go
- model_warningbody.go
- model_webhook.go
- predicates.go
- version.go