Categorygithub.com/finiteinfinity/bitbucket-openapi-go

# README

Go API client for bitbucket

Code against the Bitbucket API to automate simple tasks, embed Bitbucket data into your own site, build mobile or desktop apps, or even add custom UI add-ons into Bitbucket itself using the Connect framework.

Overview

This API client was generated by the OpenAPI Generator project. By using the OpenAPI-spec from a remote server, you can easily generate an API client.

Installation

Install the following dependencies:

go get github.com/stretchr/testify/assert
go get golang.org/x/oauth2
go get golang.org/x/net/context

Put the package under your project folder and add the following in import:

import bitbucket "github.com/finiteinfinity/bitbucket-openapi-go"

To use a proxy, set the environment variable HTTP_PROXY:

os.Setenv("HTTP_PROXY", "http://proxy_name:proxy_port")

Configuration of Server URL

Default configuration comes with Servers field that contains server objects as defined in the OpenAPI specification.

Select Server Configuration

For using other server than the one defined on index 0 set context value sw.ContextServerIndex of type int.

ctx := context.WithValue(context.Background(), bitbucket.ContextServerIndex, 1)

Templated Server URL

Templated server URL is formatted using default variables from configuration or from context value sw.ContextServerVariables of type map[string]string.

ctx := context.WithValue(context.Background(), bitbucket.ContextServerVariables, map[string]string{
	"basePath": "v2",
})

Note, enum values are always validated and all unused variables are silently ignored.

URLs Configuration per Operation

Each operation can use different server URL defined using OperationServers map in the Configuration. An operation is uniquely identified by "{classname}Service.{nickname}" string. Similar rules for overriding default operation server index and variables applies by using sw.ContextOperationServerIndices and sw.ContextOperationServerVariables context maps.

ctx := context.WithValue(context.Background(), bitbucket.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), bitbucket.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to https://api.bitbucket.org/2.0

ClassMethodHTTP requestDescription
AddonApiAddonDeleteDelete /addonDelete an app
AddonApiAddonLinkersGetGet /addon/linkersList linkers for an app
AddonApiAddonLinkersLinkerKeyGetGet /addon/linkers/{linker_key}Get a linker for an app
AddonApiAddonLinkersLinkerKeyValuesDeleteDelete /addon/linkers/{linker_key}/valuesDelete all linker values
AddonApiAddonLinkersLinkerKeyValuesGetGet /addon/linkers/{linker_key}/valuesList linker values for a linker
AddonApiAddonLinkersLinkerKeyValuesPostPost /addon/linkers/{linker_key}/valuesCreate a linker value
AddonApiAddonLinkersLinkerKeyValuesPutPut /addon/linkers/{linker_key}/valuesUpdate a linker value
AddonApiAddonLinkersLinkerKeyValuesValueIdDeleteDelete /addon/linkers/{linker_key}/values/{value_id}Delete a linker value
AddonApiAddonLinkersLinkerKeyValuesValueIdGetGet /addon/linkers/{linker_key}/values/{value_id}Get a linker value
AddonApiAddonPutPut /addonUpdate an installed app
BranchRestrictionsApiRepositoriesWorkspaceRepoSlugBranchRestrictionsGetGet /repositories/{workspace}/{repo_slug}/branch-restrictionsList branch restrictions
BranchRestrictionsApiRepositoriesWorkspaceRepoSlugBranchRestrictionsIdDeleteDelete /repositories/{workspace}/{repo_slug}/branch-restrictions/{id}Delete a branch restriction rule
BranchRestrictionsApiRepositoriesWorkspaceRepoSlugBranchRestrictionsIdGetGet /repositories/{workspace}/{repo_slug}/branch-restrictions/{id}Get a branch restriction rule
BranchRestrictionsApiRepositoriesWorkspaceRepoSlugBranchRestrictionsIdPutPut /repositories/{workspace}/{repo_slug}/branch-restrictions/{id}Update a branch restriction rule
BranchRestrictionsApiRepositoriesWorkspaceRepoSlugBranchRestrictionsPostPost /repositories/{workspace}/{repo_slug}/branch-restrictionsCreate a branch restriction rule
BranchingModelApiRepositoriesWorkspaceRepoSlugBranchingModelGetGet /repositories/{workspace}/{repo_slug}/branching-modelGet the branching model for a repository
BranchingModelApiRepositoriesWorkspaceRepoSlugBranchingModelSettingsGetGet /repositories/{workspace}/{repo_slug}/branching-model/settingsGet the branching model config for a repository
BranchingModelApiRepositoriesWorkspaceRepoSlugBranchingModelSettingsPutPut /repositories/{workspace}/{repo_slug}/branching-model/settingsUpdate the branching model config for a repository
CommitStatusesApiRepositoriesWorkspaceRepoSlugCommitCommitStatusesBuildKeyGetGet /repositories/{workspace}/{repo_slug}/commit/{commit}/statuses/build/{key}Get a build status for a commit
CommitStatusesApiRepositoriesWorkspaceRepoSlugCommitCommitStatusesBuildKeyPutPut /repositories/{workspace}/{repo_slug}/commit/{commit}/statuses/build/{key}Update a build status for a commit
CommitStatusesApiRepositoriesWorkspaceRepoSlugCommitCommitStatusesBuildPostPost /repositories/{workspace}/{repo_slug}/commit/{commit}/statuses/buildCreate a build status for a commit
CommitStatusesApiRepositoriesWorkspaceRepoSlugCommitCommitStatusesGetGet /repositories/{workspace}/{repo_slug}/commit/{commit}/statusesList commit statuses for a commit
CommitStatusesApiRepositoriesWorkspaceRepoSlugPullrequestsPullRequestIdStatusesGetGet /repositories/{workspace}/{repo_slug}/pullrequests/{pull_request_id}/statusesList commit statuses for a pull request
CommitsApiBulkCreateOrUpdateAnnotationsPost /repositories/{workspace}/{repo_slug}/commit/{commit}/reports/{reportId}/annotationsBulk create or update annotations
CommitsApiCreateOrUpdateAnnotationPut /repositories/{workspace}/{repo_slug}/commit/{commit}/reports/{reportId}/annotations/{annotationId}Create or update an annotation
CommitsApiCreateOrUpdateReportPut /repositories/{workspace}/{repo_slug}/commit/{commit}/reports/{reportId}Create or update a report
CommitsApiDeleteAnnotationDelete /repositories/{workspace}/{repo_slug}/commit/{commit}/reports/{reportId}/annotations/{annotationId}Delete an annotation
CommitsApiDeleteReportDelete /repositories/{workspace}/{repo_slug}/commit/{commit}/reports/{reportId}Delete a report
CommitsApiGetAnnotationGet /repositories/{workspace}/{repo_slug}/commit/{commit}/reports/{reportId}/annotations/{annotationId}Get an annotation
CommitsApiGetAnnotationsForReportGet /repositories/{workspace}/{repo_slug}/commit/{commit}/reports/{reportId}/annotationsList annotations
CommitsApiGetReportGet /repositories/{workspace}/{repo_slug}/commit/{commit}/reports/{reportId}Get a report
CommitsApiGetReportsForCommitGet /repositories/{workspace}/{repo_slug}/commit/{commit}/reportsList reports
CommitsApiRepositoriesWorkspaceRepoSlugCommitCommitApproveDeleteDelete /repositories/{workspace}/{repo_slug}/commit/{commit}/approveUnapprove a commit
CommitsApiRepositoriesWorkspaceRepoSlugCommitCommitApprovePostPost /repositories/{workspace}/{repo_slug}/commit/{commit}/approveApprove a commit
CommitsApiRepositoriesWorkspaceRepoSlugCommitCommitCommentsCommentIdGetGet /repositories/{workspace}/{repo_slug}/commit/{commit}/comments/{comment_id}Get a commit comment
CommitsApiRepositoriesWorkspaceRepoSlugCommitCommitCommentsGetGet /repositories/{workspace}/{repo_slug}/commit/{commit}/commentsList a commit's comments
CommitsApiRepositoriesWorkspaceRepoSlugCommitCommitCommentsPostPost /repositories/{workspace}/{repo_slug}/commit/{commit}/commentsCreate comment for a commit
CommitsApiRepositoriesWorkspaceRepoSlugCommitCommitGetGet /repositories/{workspace}/{repo_slug}/commit/{commit}Get a commit
CommitsApiRepositoriesWorkspaceRepoSlugCommitsGetGet /repositories/{workspace}/{repo_slug}/commitsList commits
CommitsApiRepositoriesWorkspaceRepoSlugCommitsPostPost /repositories/{workspace}/{repo_slug}/commitsList commits with include/exclude
CommitsApiRepositoriesWorkspaceRepoSlugCommitsRevisionGetGet /repositories/{workspace}/{repo_slug}/commits/{revision}List commits for revision
CommitsApiRepositoriesWorkspaceRepoSlugCommitsRevisionPostPost /repositories/{workspace}/{repo_slug}/commits/{revision}List commits for revision using include/exclude
CommitsApiRepositoriesWorkspaceRepoSlugDiffSpecGetGet /repositories/{workspace}/{repo_slug}/diff/{spec}Compare two commits
CommitsApiRepositoriesWorkspaceRepoSlugDiffstatSpecGetGet /repositories/{workspace}/{repo_slug}/diffstat/{spec}Compare two commit diff stats
CommitsApiRepositoriesWorkspaceRepoSlugMergeBaseRevspecGetGet /repositories/{workspace}/{repo_slug}/merge-base/{revspec}Get the common ancestor between two commits
CommitsApiRepositoriesWorkspaceRepoSlugPatchSpecGetGet /repositories/{workspace}/{repo_slug}/patch/{spec}Get a patch for two commits
DeploymentsApiCreateEnvironmentPost /repositories/{workspace}/{repo_slug}/environments/Create an environment
DeploymentsApiDeleteEnvironmentForRepositoryDelete /repositories/{workspace}/{repo_slug}/environments/{environment_uuid}Delete an environment
DeploymentsApiGetDeploymentForRepositoryGet /repositories/{workspace}/{repo_slug}/deployments/{deployment_uuid}Get a deployment
DeploymentsApiGetDeploymentsForRepositoryGet /repositories/{workspace}/{repo_slug}/deployments/List deployments
DeploymentsApiGetEnvironmentForRepositoryGet /repositories/{workspace}/{repo_slug}/environments/{environment_uuid}Get an environment
DeploymentsApiGetEnvironmentsForRepositoryGet /repositories/{workspace}/{repo_slug}/environments/List environments
DeploymentsApiRepositoriesWorkspaceRepoSlugDeployKeysGetGet /repositories/{workspace}/{repo_slug}/deploy-keysList deploy keys
DeploymentsApiRepositoriesWorkspaceRepoSlugDeployKeysKeyIdDeleteDelete /repositories/{workspace}/{repo_slug}/deploy-keys/{key_id}Delete a deploy key
DeploymentsApiRepositoriesWorkspaceRepoSlugDeployKeysKeyIdGetGet /repositories/{workspace}/{repo_slug}/deploy-keys/{key_id}Get a deploy key
DeploymentsApiRepositoriesWorkspaceRepoSlugDeployKeysKeyIdPutPut /repositories/{workspace}/{repo_slug}/deploy-keys/{key_id}Update a deploy key
DeploymentsApiRepositoriesWorkspaceRepoSlugDeployKeysPostPost /repositories/{workspace}/{repo_slug}/deploy-keysAdd a deploy key
DeploymentsApiUpdateEnvironmentForRepositoryPost /repositories/{workspace}/{repo_slug}/environments/{environment_uuid}/changes/Update an environment
DownloadsApiRepositoriesWorkspaceRepoSlugDownloadsFilenameDeleteDelete /repositories/{workspace}/{repo_slug}/downloads/{filename}Delete a download artifact
DownloadsApiRepositoriesWorkspaceRepoSlugDownloadsFilenameGetGet /repositories/{workspace}/{repo_slug}/downloads/{filename}Get a download artifact link
DownloadsApiRepositoriesWorkspaceRepoSlugDownloadsGetGet /repositories/{workspace}/{repo_slug}/downloadsList download artifacts
DownloadsApiRepositoriesWorkspaceRepoSlugDownloadsPostPost /repositories/{workspace}/{repo_slug}/downloadsUpload a download artifact
IssueTrackerApiRepositoriesWorkspaceRepoSlugComponentsComponentIdGetGet /repositories/{workspace}/{repo_slug}/components/{component_id}Get a component for issues
IssueTrackerApiRepositoriesWorkspaceRepoSlugComponentsGetGet /repositories/{workspace}/{repo_slug}/componentsList components
IssueTrackerApiRepositoriesWorkspaceRepoSlugIssuesExportPostPost /repositories/{workspace}/{repo_slug}/issues/exportExport issues
IssueTrackerApiRepositoriesWorkspaceRepoSlugIssuesExportRepoNameIssuesTaskIdZipGetGet /repositories/{workspace}/{repo_slug}/issues/export/{repo_name}-issues-{task_id}.zipCheck issue export status
IssueTrackerApiRepositoriesWorkspaceRepoSlugIssuesGetGet /repositories/{workspace}/{repo_slug}/issuesList issues
IssueTrackerApiRepositoriesWorkspaceRepoSlugIssuesImportGetGet /repositories/{workspace}/{repo_slug}/issues/importCheck issue import status
IssueTrackerApiRepositoriesWorkspaceRepoSlugIssuesImportPostPost /repositories/{workspace}/{repo_slug}/issues/importImport issues
IssueTrackerApiRepositoriesWorkspaceRepoSlugIssuesIssueIdAttachmentsGetGet /repositories/{workspace}/{repo_slug}/issues/{issue_id}/attachmentsList attachments for an issue
IssueTrackerApiRepositoriesWorkspaceRepoSlugIssuesIssueIdAttachmentsPathDeleteDelete /repositories/{workspace}/{repo_slug}/issues/{issue_id}/attachments/{path}Delete an attachment for an issue
IssueTrackerApiRepositoriesWorkspaceRepoSlugIssuesIssueIdAttachmentsPathGetGet /repositories/{workspace}/{repo_slug}/issues/{issue_id}/attachments/{path}Get attachment for an issue
IssueTrackerApiRepositoriesWorkspaceRepoSlugIssuesIssueIdAttachmentsPostPost /repositories/{workspace}/{repo_slug}/issues/{issue_id}/attachmentsUpload an attachment to an issue
IssueTrackerApiRepositoriesWorkspaceRepoSlugIssuesIssueIdChangesChangeIdGetGet /repositories/{workspace}/{repo_slug}/issues/{issue_id}/changes/{change_id}Get issue change object
IssueTrackerApiRepositoriesWorkspaceRepoSlugIssuesIssueIdChangesGetGet /repositories/{workspace}/{repo_slug}/issues/{issue_id}/changesList changes on an issue
IssueTrackerApiRepositoriesWorkspaceRepoSlugIssuesIssueIdChangesPostPost /repositories/{workspace}/{repo_slug}/issues/{issue_id}/changesModify the state of an issue
IssueTrackerApiRepositoriesWorkspaceRepoSlugIssuesIssueIdCommentsCommentIdDeleteDelete /repositories/{workspace}/{repo_slug}/issues/{issue_id}/comments/{comment_id}Delete a comment on an issue
IssueTrackerApiRepositoriesWorkspaceRepoSlugIssuesIssueIdCommentsCommentIdGetGet /repositories/{workspace}/{repo_slug}/issues/{issue_id}/comments/{comment_id}Get a comment on an issue
IssueTrackerApiRepositoriesWorkspaceRepoSlugIssuesIssueIdCommentsCommentIdPutPut /repositories/{workspace}/{repo_slug}/issues/{issue_id}/comments/{comment_id}Update a comment on an issue
IssueTrackerApiRepositoriesWorkspaceRepoSlugIssuesIssueIdCommentsGetGet /repositories/{workspace}/{repo_slug}/issues/{issue_id}/commentsList comments on an issue
IssueTrackerApiRepositoriesWorkspaceRepoSlugIssuesIssueIdCommentsPostPost /repositories/{workspace}/{repo_slug}/issues/{issue_id}/commentsCreate a comment on an issue
IssueTrackerApiRepositoriesWorkspaceRepoSlugIssuesIssueIdDeleteDelete /repositories/{workspace}/{repo_slug}/issues/{issue_id}Delete an issue
IssueTrackerApiRepositoriesWorkspaceRepoSlugIssuesIssueIdGetGet /repositories/{workspace}/{repo_slug}/issues/{issue_id}Get an issue
IssueTrackerApiRepositoriesWorkspaceRepoSlugIssuesIssueIdPutPut /repositories/{workspace}/{repo_slug}/issues/{issue_id}Update an issue
IssueTrackerApiRepositoriesWorkspaceRepoSlugIssuesIssueIdVoteDeleteDelete /repositories/{workspace}/{repo_slug}/issues/{issue_id}/voteRemove vote for an issue
IssueTrackerApiRepositoriesWorkspaceRepoSlugIssuesIssueIdVoteGetGet /repositories/{workspace}/{repo_slug}/issues/{issue_id}/voteCheck if current user voted for an issue
IssueTrackerApiRepositoriesWorkspaceRepoSlugIssuesIssueIdVotePutPut /repositories/{workspace}/{repo_slug}/issues/{issue_id}/voteVote for an issue
IssueTrackerApiRepositoriesWorkspaceRepoSlugIssuesIssueIdWatchDeleteDelete /repositories/{workspace}/{repo_slug}/issues/{issue_id}/watchStop watching an issue
IssueTrackerApiRepositoriesWorkspaceRepoSlugIssuesIssueIdWatchGetGet /repositories/{workspace}/{repo_slug}/issues/{issue_id}/watchCheck if current user is watching a issue
IssueTrackerApiRepositoriesWorkspaceRepoSlugIssuesIssueIdWatchPutPut /repositories/{workspace}/{repo_slug}/issues/{issue_id}/watchWatch an issue
IssueTrackerApiRepositoriesWorkspaceRepoSlugIssuesPostPost /repositories/{workspace}/{repo_slug}/issuesCreate an issue
IssueTrackerApiRepositoriesWorkspaceRepoSlugMilestonesGetGet /repositories/{workspace}/{repo_slug}/milestonesList milestones
IssueTrackerApiRepositoriesWorkspaceRepoSlugMilestonesMilestoneIdGetGet /repositories/{workspace}/{repo_slug}/milestones/{milestone_id}Get a milestone
IssueTrackerApiRepositoriesWorkspaceRepoSlugVersionsGetGet /repositories/{workspace}/{repo_slug}/versionsList defined versions for issues
IssueTrackerApiRepositoriesWorkspaceRepoSlugVersionsVersionIdGetGet /repositories/{workspace}/{repo_slug}/versions/{version_id}Get a defined version for issues
PipelinesApiCreateDeploymentVariablePost /repositories/{workspace}/{repo_slug}/deployments_config/environments/{environment_uuid}/variablesCreate a variable for an environment
PipelinesApiCreatePipelineForRepositoryPost /repositories/{workspace}/{repo_slug}/pipelines/Run a pipeline
PipelinesApiCreatePipelineVariableForTeamPost /teams/{username}/pipelines_config/variables/Create a variable for a user
PipelinesApiCreatePipelineVariableForUserPost /users/{selected_user}/pipelines_config/variables/Create a variable for a user
PipelinesApiCreatePipelineVariableForWorkspacePost /workspaces/{workspace}/pipelines-config/variablesCreate a variable for a workspace
PipelinesApiCreateRepositoryPipelineKnownHostPost /repositories/{workspace}/{repo_slug}/pipelines_config/ssh/known_hosts/Create a known host
PipelinesApiCreateRepositoryPipelineSchedulePost /repositories/{workspace}/{repo_slug}/pipelines_config/schedules/Create a schedule
PipelinesApiCreateRepositoryPipelineVariablePost /repositories/{workspace}/{repo_slug}/pipelines_config/variables/Create a variable for a repository
PipelinesApiDeleteDeploymentVariableDelete /repositories/{workspace}/{repo_slug}/deployments_config/environments/{environment_uuid}/variables/{variable_uuid}Delete a variable for an environment
PipelinesApiDeletePipelineVariableForTeamDelete /teams/{username}/pipelines_config/variables/{variable_uuid}Delete a variable for a team
PipelinesApiDeletePipelineVariableForUserDelete /users/{selected_user}/pipelines_config/variables/{variable_uuid}Delete a variable for a user
PipelinesApiDeletePipelineVariableForWorkspaceDelete /workspaces/{workspace}/pipelines-config/variables/{variable_uuid}Delete a variable for a workspace
PipelinesApiDeleteRepositoryPipelineCacheDelete /repositories/{workspace}/{repo_slug}/pipelines-config/caches/{cache_uuid}Delete a cache
PipelinesApiDeleteRepositoryPipelineKeyPairDelete /repositories/{workspace}/{repo_slug}/pipelines_config/ssh/key_pairDelete SSH key pair
PipelinesApiDeleteRepositoryPipelineKnownHostDelete /repositories/{workspace}/{repo_slug}/pipelines_config/ssh/known_hosts/{known_host_uuid}Delete a known host
PipelinesApiDeleteRepositoryPipelineScheduleDelete /repositories/{workspace}/{repo_slug}/pipelines_config/schedules/{schedule_uuid}Delete a schedule
PipelinesApiDeleteRepositoryPipelineVariableDelete /repositories/{workspace}/{repo_slug}/pipelines_config/variables/{variable_uuid}Delete a variable for a repository
PipelinesApiGetDeploymentVariablesGet /repositories/{workspace}/{repo_slug}/deployments_config/environments/{environment_uuid}/variablesList variables for an environment
PipelinesApiGetOIDCConfigurationGet /workspaces/{workspace}/pipelines-config/identity/oidc/.well-known/openid-configurationGet OpenID configuration for OIDC in Pipelines
PipelinesApiGetOIDCKeysGet /workspaces/{workspace}/pipelines-config/identity/oidc/keys.jsonGet keys for OIDC in Pipelines
PipelinesApiGetPipelineContainerLogGet /repositories/{workspace}/{repo_slug}/pipelines/{pipeline_uuid}/steps/{step_uuid}/logs/{log_uuid}Get the logs for the build container or a service container for a given step of a pipeline.
PipelinesApiGetPipelineForRepositoryGet /repositories/{workspace}/{repo_slug}/pipelines/{pipeline_uuid}Get a pipeline
PipelinesApiGetPipelineStepForRepositoryGet /repositories/{workspace}/{repo_slug}/pipelines/{pipeline_uuid}/steps/{step_uuid}Get a step of a pipeline
PipelinesApiGetPipelineStepLogForRepositoryGet /repositories/{workspace}/{repo_slug}/pipelines/{pipeline_uuid}/steps/{step_uuid}/logGet log file for a step
PipelinesApiGetPipelineStepsForRepositoryGet /repositories/{workspace}/{repo_slug}/pipelines/{pipeline_uuid}/steps/List steps for a pipeline
PipelinesApiGetPipelineTestReportTestCaseReasonsGet /repositories/{workspace}/{repo_slug}/pipelines/{pipeline_uuid}/steps/{step_uuid}/test_reports/test_cases/{test_case_uuid}/test_case_reasonsGet test case reasons (output) for a given test case in a step of a pipeline.
PipelinesApiGetPipelineTestReportTestCasesGet /repositories/{workspace}/{repo_slug}/pipelines/{pipeline_uuid}/steps/{step_uuid}/test_reports/test_casesGet test cases for a given step of a pipeline.
PipelinesApiGetPipelineTestReportsGet /repositories/{workspace}/{repo_slug}/pipelines/{pipeline_uuid}/steps/{step_uuid}/test_reportsGet a summary of test reports for a given step of a pipeline.
PipelinesApiGetPipelineVariableForTeamGet /teams/{username}/pipelines_config/variables/{variable_uuid}Get a variable for a team
PipelinesApiGetPipelineVariableForUserGet /users/{selected_user}/pipelines_config/variables/{variable_uuid}Get a variable for a user
PipelinesApiGetPipelineVariableForWorkspaceGet /workspaces/{workspace}/pipelines-config/variables/{variable_uuid}Get variable for a workspace
PipelinesApiGetPipelineVariablesForTeamGet /teams/{username}/pipelines_config/variables/List variables for an account
PipelinesApiGetPipelineVariablesForUserGet /users/{selected_user}/pipelines_config/variables/List variables for a user
PipelinesApiGetPipelineVariablesForWorkspaceGet /workspaces/{workspace}/pipelines-config/variablesList variables for a workspace
PipelinesApiGetPipelinesForRepositoryGet /repositories/{workspace}/{repo_slug}/pipelines/List pipelines
PipelinesApiGetRepositoryPipelineCacheContentURIGet /repositories/{workspace}/{repo_slug}/pipelines-config/caches/{cache_uuid}/content-uriGet cache content URI
PipelinesApiGetRepositoryPipelineCachesGet /repositories/{workspace}/{repo_slug}/pipelines-config/caches/List caches
PipelinesApiGetRepositoryPipelineConfigGet /repositories/{workspace}/{repo_slug}/pipelines_configGet configuration
PipelinesApiGetRepositoryPipelineKnownHostGet /repositories/{workspace}/{repo_slug}/pipelines_config/ssh/known_hosts/{known_host_uuid}Get a known host
PipelinesApiGetRepositoryPipelineKnownHostsGet /repositories/{workspace}/{repo_slug}/pipelines_config/ssh/known_hosts/List known hosts
PipelinesApiGetRepositoryPipelineScheduleGet /repositories/{workspace}/{repo_slug}/pipelines_config/schedules/{schedule_uuid}Get a schedule
PipelinesApiGetRepositoryPipelineScheduleExecutionsGet /repositories/{workspace}/{repo_slug}/pipelines_config/schedules/{schedule_uuid}/executions/List executions of a schedule
PipelinesApiGetRepositoryPipelineSchedulesGet /repositories/{workspace}/{repo_slug}/pipelines_config/schedules/List schedules
PipelinesApiGetRepositoryPipelineSshKeyPairGet /repositories/{workspace}/{repo_slug}/pipelines_config/ssh/key_pairGet SSH key pair
PipelinesApiGetRepositoryPipelineVariableGet /repositories/{workspace}/{repo_slug}/pipelines_config/variables/{variable_uuid}Get a variable for a repository
PipelinesApiGetRepositoryPipelineVariablesGet /repositories/{workspace}/{repo_slug}/pipelines_config/variables/List variables for a repository
PipelinesApiStopPipelinePost /repositories/{workspace}/{repo_slug}/pipelines/{pipeline_uuid}/stopPipelineStop a pipeline
PipelinesApiUpdateDeploymentVariablePut /repositories/{workspace}/{repo_slug}/deployments_config/environments/{environment_uuid}/variables/{variable_uuid}Update a variable for an environment
PipelinesApiUpdatePipelineVariableForTeamPut /teams/{username}/pipelines_config/variables/{variable_uuid}Update a variable for a team
PipelinesApiUpdatePipelineVariableForUserPut /users/{selected_user}/pipelines_config/variables/{variable_uuid}Update a variable for a user
PipelinesApiUpdatePipelineVariableForWorkspacePut /workspaces/{workspace}/pipelines-config/variables/{variable_uuid}Update variable for a workspace
PipelinesApiUpdateRepositoryBuildNumberPut /repositories/{workspace}/{repo_slug}/pipelines_config/build_numberUpdate the next build number
PipelinesApiUpdateRepositoryPipelineConfigPut /repositories/{workspace}/{repo_slug}/pipelines_configUpdate configuration
PipelinesApiUpdateRepositoryPipelineKeyPairPut /repositories/{workspace}/{repo_slug}/pipelines_config/ssh/key_pairUpdate SSH key pair
PipelinesApiUpdateRepositoryPipelineKnownHostPut /repositories/{workspace}/{repo_slug}/pipelines_config/ssh/known_hosts/{known_host_uuid}Update a known host
PipelinesApiUpdateRepositoryPipelineSchedulePut /repositories/{workspace}/{repo_slug}/pipelines_config/schedules/{schedule_uuid}Update a schedule
PipelinesApiUpdateRepositoryPipelineVariablePut /repositories/{workspace}/{repo_slug}/pipelines_config/variables/{variable_uuid}Update a variable for a repository
ProjectsApiTeamsUsernameProjectsGetGet /teams/{username}/projects/List a projects for a team
ProjectsApiTeamsUsernameProjectsPostPost /teams/{username}/projects/Create a project for a team
ProjectsApiTeamsUsernameProjectsProjectKeyDeleteDelete /teams/{username}/projects/{project_key}Delete a project
ProjectsApiTeamsUsernameProjectsProjectKeyGetGet /teams/{username}/projects/{project_key}Get a project
ProjectsApiTeamsUsernameProjectsProjectKeyPutPut /teams/{username}/projects/{project_key}Update a project
ProjectsApiWorkspacesWorkspaceProjectsPostPost /workspaces/{workspace}/projectsCreate a project in a workspace
ProjectsApiWorkspacesWorkspaceProjectsProjectKeyDeleteDelete /workspaces/{workspace}/projects/{project_key}Delete a project for a workspace
ProjectsApiWorkspacesWorkspaceProjectsProjectKeyGetGet /workspaces/{workspace}/projects/{project_key}Get a project for a workspace
ProjectsApiWorkspacesWorkspaceProjectsProjectKeyPutPut /workspaces/{workspace}/projects/{project_key}Update a project for a workspace
PropertiesApiDeleteCommitHostedPropertyValueDelete /repositories/{workspace}/{repo_slug}/commit/{commit}/properties/{app_key}/{property_name}Delete a commit application property
PropertiesApiDeletePullRequestHostedPropertyValueDelete /repositories/{workspace}/{repo_slug}/pullrequests/{pullrequest_id}/properties/{app_key}/{property_name}Delete a pull request application property
PropertiesApiDeleteRepositoryHostedPropertyValueDelete /repositories/{workspace}/{repo_slug}/properties/{app_key}/{property_name}Delete a repository application property
PropertiesApiDeleteUserHostedPropertyValueDelete /users/{selected_user}/properties/{app_key}/{property_name}Delete a user application property
PropertiesApiGetCommitHostedPropertyValueGet /repositories/{workspace}/{repo_slug}/commit/{commit}/properties/{app_key}/{property_name}Get a commit application property
PropertiesApiGetPullRequestHostedPropertyValueGet /repositories/{workspace}/{repo_slug}/pullrequests/{pullrequest_id}/properties/{app_key}/{property_name}Get a pull request application property
PropertiesApiGetRepositoryHostedPropertyValueGet /repositories/{workspace}/{repo_slug}/properties/{app_key}/{property_name}Get a repository application property
PropertiesApiRetrieveUserHostedPropertyValueGet /users/{selected_user}/properties/{app_key}/{property_name}Get a user application property
PropertiesApiUpdateCommitHostedPropertyValuePut /repositories/{workspace}/{repo_slug}/commit/{commit}/properties/{app_key}/{property_name}Update a commit application property
PropertiesApiUpdatePullRequestHostedPropertyValuePut /repositories/{workspace}/{repo_slug}/pullrequests/{pullrequest_id}/properties/{app_key}/{property_name}Update a pull request application property
PropertiesApiUpdateRepositoryHostedPropertyValuePut /repositories/{workspace}/{repo_slug}/properties/{app_key}/{property_name}Update a repository application property
PropertiesApiUpdateUserHostedPropertyValuePut /users/{selected_user}/properties/{app_key}/{property_name}Update a user application property
PullrequestsApiGetPullrequestsForCommitGet /repositories/{workspace}/{repo_slug}/commit/{commit}/pullrequestsList pull requests that contain a commit
PullrequestsApiPullrequestsSelectedUserGetGet /pullrequests/{selected_user}List pull requests for a user
PullrequestsApiRepositoriesWorkspaceRepoSlugDefaultReviewersGetGet /repositories/{workspace}/{repo_slug}/default-reviewersList default reviewers
PullrequestsApiRepositoriesWorkspaceRepoSlugDefaultReviewersTargetUsernameDeleteDelete /repositories/{workspace}/{repo_slug}/default-reviewers/{target_username}Remove a user from the default reviewers
PullrequestsApiRepositoriesWorkspaceRepoSlugDefaultReviewersTargetUsernameGetGet /repositories/{workspace}/{repo_slug}/default-reviewers/{target_username}Get a default reviewer
PullrequestsApiRepositoriesWorkspaceRepoSlugDefaultReviewersTargetUsernamePutPut /repositories/{workspace}/{repo_slug}/default-reviewers/{target_username}Add a user to the default reviewers
PullrequestsApiRepositoriesWorkspaceRepoSlugPullrequestsActivityGetGet /repositories/{workspace}/{repo_slug}/pullrequests/activityList a pull request activity log
PullrequestsApiRepositoriesWorkspaceRepoSlugPullrequestsGetGet /repositories/{workspace}/{repo_slug}/pullrequestsList pull requests
PullrequestsApiRepositoriesWorkspaceRepoSlugPullrequestsPostPost /repositories/{workspace}/{repo_slug}/pullrequestsCreate a pull request
PullrequestsApiRepositoriesWorkspaceRepoSlugPullrequestsPullRequestIdActivityGetGet /repositories/{workspace}/{repo_slug}/pullrequests/{pull_request_id}/activityList a pull request activity log
PullrequestsApiRepositoriesWorkspaceRepoSlugPullrequestsPullRequestIdApproveDeleteDelete /repositories/{workspace}/{repo_slug}/pullrequests/{pull_request_id}/approveUnapprove a pull request
PullrequestsApiRepositoriesWorkspaceRepoSlugPullrequestsPullRequestIdApprovePostPost /repositories/{workspace}/{repo_slug}/pullrequests/{pull_request_id}/approveApprove a pull request
PullrequestsApiRepositoriesWorkspaceRepoSlugPullrequestsPullRequestIdCommentsCommentIdDeleteDelete /repositories/{workspace}/{repo_slug}/pullrequests/{pull_request_id}/comments/{comment_id}Delete a comment on a pull request
PullrequestsApiRepositoriesWorkspaceRepoSlugPullrequestsPullRequestIdCommentsCommentIdGetGet /repositories/{workspace}/{repo_slug}/pullrequests/{pull_request_id}/comments/{comment_id}Get a comment on a pull request
PullrequestsApiRepositoriesWorkspaceRepoSlugPullrequestsPullRequestIdCommentsCommentIdPutPut /repositories/{workspace}/{repo_slug}/pullrequests/{pull_request_id}/comments/{comment_id}Update a comment on a pull request
PullrequestsApiRepositoriesWorkspaceRepoSlugPullrequestsPullRequestIdCommentsGetGet /repositories/{workspace}/{repo_slug}/pullrequests/{pull_request_id}/commentsList comments on a pull request
PullrequestsApiRepositoriesWorkspaceRepoSlugPullrequestsPullRequestIdCommentsPostPost /repositories/{workspace}/{repo_slug}/pullrequests/{pull_request_id}/commentsCreate a comment on a pull request
PullrequestsApiRepositoriesWorkspaceRepoSlugPullrequestsPullRequestIdCommitsGetGet /repositories/{workspace}/{repo_slug}/pullrequests/{pull_request_id}/commitsList commits on a pull request
PullrequestsApiRepositoriesWorkspaceRepoSlugPullrequestsPullRequestIdDeclinePostPost /repositories/{workspace}/{repo_slug}/pullrequests/{pull_request_id}/declineDecline a pull request
PullrequestsApiRepositoriesWorkspaceRepoSlugPullrequestsPullRequestIdDiffGetGet /repositories/{workspace}/{repo_slug}/pullrequests/{pull_request_id}/diffList changes in a pull request
PullrequestsApiRepositoriesWorkspaceRepoSlugPullrequestsPullRequestIdDiffstatGetGet /repositories/{workspace}/{repo_slug}/pullrequests/{pull_request_id}/diffstatGet the diff stat for a pull request
PullrequestsApiRepositoriesWorkspaceRepoSlugPullrequestsPullRequestIdGetGet /repositories/{workspace}/{repo_slug}/pullrequests/{pull_request_id}Get a pull request
PullrequestsApiRepositoriesWorkspaceRepoSlugPullrequestsPullRequestIdMergePostPost /repositories/{workspace}/{repo_slug}/pullrequests/{pull_request_id}/mergeMerge a pull request
PullrequestsApiRepositoriesWorkspaceRepoSlugPullrequestsPullRequestIdMergeTaskStatusTaskIdGetGet /repositories/{workspace}/{repo_slug}/pullrequests/{pull_request_id}/merge/task-status/{task_id}Get the merge task status for a pull request
PullrequestsApiRepositoriesWorkspaceRepoSlugPullrequestsPullRequestIdPatchGetGet /repositories/{workspace}/{repo_slug}/pullrequests/{pull_request_id}/patchGet the patch for a pull request
PullrequestsApiRepositoriesWorkspaceRepoSlugPullrequestsPullRequestIdPutPut /repositories/{workspace}/{repo_slug}/pullrequests/{pull_request_id}Update a pull request
PullrequestsApiRepositoriesWorkspaceRepoSlugPullrequestsPullRequestIdRequestChangesDeleteDelete /repositories/{workspace}/{repo_slug}/pullrequests/{pull_request_id}/request-changesRemove change request for a pull request
PullrequestsApiRepositoriesWorkspaceRepoSlugPullrequestsPullRequestIdRequestChangesPostPost /repositories/{workspace}/{repo_slug}/pullrequests/{pull_request_id}/request-changesRequest changes for a pull request
PullrequestsApiRepositoriesWorkspaceRepoSlugPullrequestsPullRequestIdStatusesGetGet /repositories/{workspace}/{repo_slug}/pullrequests/{pull_request_id}/statusesList commit statuses for a pull request
RefsApiRepositoriesWorkspaceRepoSlugRefsBranchesGetGet /repositories/{workspace}/{repo_slug}/refs/branchesList open branches
RefsApiRepositoriesWorkspaceRepoSlugRefsBranchesNameDeleteDelete /repositories/{workspace}/{repo_slug}/refs/branches/{name}Delete a branch
RefsApiRepositoriesWorkspaceRepoSlugRefsBranchesNameGetGet /repositories/{workspace}/{repo_slug}/refs/branches/{name}Get a branch
RefsApiRepositoriesWorkspaceRepoSlugRefsBranchesPostPost /repositories/{workspace}/{repo_slug}/refs/branchesCreate a branch
RefsApiRepositoriesWorkspaceRepoSlugRefsGetGet /repositories/{workspace}/{repo_slug}/refsList branches and tags
RefsApiRepositoriesWorkspaceRepoSlugRefsTagsGetGet /repositories/{workspace}/{repo_slug}/refs/tagsList tags
RefsApiRepositoriesWorkspaceRepoSlugRefsTagsNameDeleteDelete /repositories/{workspace}/{repo_slug}/refs/tags/{name}Delete a tag
RefsApiRepositoriesWorkspaceRepoSlugRefsTagsNameGetGet /repositories/{workspace}/{repo_slug}/refs/tags/{name}Get a tag
RefsApiRepositoriesWorkspaceRepoSlugRefsTagsPostPost /repositories/{workspace}/{repo_slug}/refs/tagsCreate a tag
ReportsApiBulkCreateOrUpdateAnnotationsPost /repositories/{workspace}/{repo_slug}/commit/{commit}/reports/{reportId}/annotationsBulk create or update annotations
ReportsApiCreateOrUpdateAnnotationPut /repositories/{workspace}/{repo_slug}/commit/{commit}/reports/{reportId}/annotations/{annotationId}Create or update an annotation
ReportsApiCreateOrUpdateReportPut /repositories/{workspace}/{repo_slug}/commit/{commit}/reports/{reportId}Create or update a report
ReportsApiDeleteAnnotationDelete /repositories/{workspace}/{repo_slug}/commit/{commit}/reports/{reportId}/annotations/{annotationId}Delete an annotation
ReportsApiDeleteReportDelete /repositories/{workspace}/{repo_slug}/commit/{commit}/reports/{reportId}Delete a report
ReportsApiGetAnnotationGet /repositories/{workspace}/{repo_slug}/commit/{commit}/reports/{reportId}/annotations/{annotationId}Get an annotation
ReportsApiGetAnnotationsForReportGet /repositories/{workspace}/{repo_slug}/commit/{commit}/reports/{reportId}/annotationsList annotations
ReportsApiGetReportGet /repositories/{workspace}/{repo_slug}/commit/{commit}/reports/{reportId}Get a report
ReportsApiGetReportsForCommitGet /repositories/{workspace}/{repo_slug}/commit/{commit}/reportsList reports
RepositoriesApiRepositoriesGetGet /repositoriesList public repositories
RepositoriesApiRepositoriesWorkspaceGetGet /repositories/{workspace}List repositories in a workspace
RepositoriesApiRepositoriesWorkspaceRepoSlugDeleteDelete /repositories/{workspace}/{repo_slug}Delete a repository
RepositoriesApiRepositoriesWorkspaceRepoSlugFilehistoryCommitPathGetGet /repositories/{workspace}/{repo_slug}/filehistory/{commit}/{path}List commits that modified a file
RepositoriesApiRepositoriesWorkspaceRepoSlugForksGetGet /repositories/{workspace}/{repo_slug}/forksList repository forks
RepositoriesApiRepositoriesWorkspaceRepoSlugForksPostPost /repositories/{workspace}/{repo_slug}/forksFork a repository
RepositoriesApiRepositoriesWorkspaceRepoSlugGetGet /repositories/{workspace}/{repo_slug}Get a repository
RepositoriesApiRepositoriesWorkspaceRepoSlugHooksGetGet /repositories/{workspace}/{repo_slug}/hooksList webhooks for a repository
RepositoriesApiRepositoriesWorkspaceRepoSlugHooksPostPost /repositories/{workspace}/{repo_slug}/hooksCreate a webhook for a repository
RepositoriesApiRepositoriesWorkspaceRepoSlugHooksUidDeleteDelete /repositories/{workspace}/{repo_slug}/hooks/{uid}Delete a webhook for a repository
RepositoriesApiRepositoriesWorkspaceRepoSlugHooksUidGetGet /repositories/{workspace}/{repo_slug}/hooks/{uid}Get a webhook for a repository
RepositoriesApiRepositoriesWorkspaceRepoSlugHooksUidPutPut /repositories/{workspace}/{repo_slug}/hooks/{uid}Update a webhook for a repository
RepositoriesApiRepositoriesWorkspaceRepoSlugPermissionsConfigGroupsGetGet /repositories/{workspace}/{repo_slug}/permissions-config/groupsList explicit group permissions for a repository
RepositoriesApiRepositoriesWorkspaceRepoSlugPermissionsConfigGroupsGroupSlugDeleteDelete /repositories/{workspace}/{repo_slug}/permissions-config/groups/{group_slug}Delete an explicit group permission for a repository
RepositoriesApiRepositoriesWorkspaceRepoSlugPermissionsConfigGroupsGroupSlugGetGet /repositories/{workspace}/{repo_slug}/permissions-config/groups/{group_slug}Get an explicit group permission for a repository
RepositoriesApiRepositoriesWorkspaceRepoSlugPermissionsConfigGroupsGroupSlugPutPut /repositories/{workspace}/{repo_slug}/permissions-config/groups/{group_slug}Update an explicit group permission for a repository
RepositoriesApiRepositoriesWorkspaceRepoSlugPermissionsConfigUsersGetGet /repositories/{workspace}/{repo_slug}/permissions-config/usersList explicit user permissions for a repository
RepositoriesApiRepositoriesWorkspaceRepoSlugPermissionsConfigUsersSelectedUserIdDeleteDelete /repositories/{workspace}/{repo_slug}/permissions-config/users/{selected_user_id}Delete an explicit user permission for a repository
RepositoriesApiRepositoriesWorkspaceRepoSlugPermissionsConfigUsersSelectedUserIdGetGet /repositories/{workspace}/{repo_slug}/permissions-config/users/{selected_user_id}Get an explicit user permission for a repository
RepositoriesApiRepositoriesWorkspaceRepoSlugPermissionsConfigUsersSelectedUserIdPutPut /repositories/{workspace}/{repo_slug}/permissions-config/users/{selected_user_id}Update an explicit user permission for a repository
RepositoriesApiRepositoriesWorkspaceRepoSlugPostPost /repositories/{workspace}/{repo_slug}Create a repository
RepositoriesApiRepositoriesWorkspaceRepoSlugPutPut /repositories/{workspace}/{repo_slug}Update a repository
RepositoriesApiRepositoriesWorkspaceRepoSlugSrcCommitPathGetGet /repositories/{workspace}/{repo_slug}/src/{commit}/{path}Get file or directory contents
RepositoriesApiRepositoriesWorkspaceRepoSlugSrcGetGet /repositories/{workspace}/{repo_slug}/srcGet the root directory of the main branch
RepositoriesApiRepositoriesWorkspaceRepoSlugSrcPostPost /repositories/{workspace}/{repo_slug}/srcCreate a commit by uploading a file
RepositoriesApiRepositoriesWorkspaceRepoSlugWatchersGetGet /repositories/{workspace}/{repo_slug}/watchersList repositories watchers
RepositoriesApiUserPermissionsRepositoriesGetGet /user/permissions/repositoriesList repository permissions for a user
SearchApiSearchAccountGet /users/{selected_user}/search/codeSearch for code in a user's repositories
SearchApiSearchTeamGet /teams/{username}/search/codeSearch for code in a team's repositories
SearchApiSearchWorkspaceGet /workspaces/{workspace}/search/codeSearch for code in a workspace
SnippetsApiSnippetsGetGet /snippetsList snippets
SnippetsApiSnippetsPostPost /snippetsCreate a snippet
SnippetsApiSnippetsWorkspaceEncodedIdCommentsCommentIdDeleteDelete /snippets/{workspace}/{encoded_id}/comments/{comment_id}Delete a comment on a snippet
SnippetsApiSnippetsWorkspaceEncodedIdCommentsCommentIdGetGet /snippets/{workspace}/{encoded_id}/comments/{comment_id}Get a comment on a snippet
SnippetsApiSnippetsWorkspaceEncodedIdCommentsCommentIdPutPut /snippets/{workspace}/{encoded_id}/comments/{comment_id}Update a comment on a snippet
SnippetsApiSnippetsWorkspaceEncodedIdCommentsGetGet /snippets/{workspace}/{encoded_id}/commentsList comments on a snippet
SnippetsApiSnippetsWorkspaceEncodedIdCommentsPostPost /snippets/{workspace}/{encoded_id}/commentsCreate a comment on a snippet
SnippetsApiSnippetsWorkspaceEncodedIdCommitsGetGet /snippets/{workspace}/{encoded_id}/commitsList snippet changes
SnippetsApiSnippetsWorkspaceEncodedIdCommitsRevisionGetGet /snippets/{workspace}/{encoded_id}/commits/{revision}Get a previous snippet change
SnippetsApiSnippetsWorkspaceEncodedIdDeleteDelete /snippets/{workspace}/{encoded_id}Delete a snippet
SnippetsApiSnippetsWorkspaceEncodedIdFilesPathGetGet /snippets/{workspace}/{encoded_id}/files/{path}Get a snippet's raw file at HEAD
SnippetsApiSnippetsWorkspaceEncodedIdGetGet /snippets/{workspace}/{encoded_id}Get a snippet
SnippetsApiSnippetsWorkspaceEncodedIdNodeIdDeleteDelete /snippets/{workspace}/{encoded_id}/{node_id}Delete a previous revision of a snippet
SnippetsApiSnippetsWorkspaceEncodedIdNodeIdFilesPathGetGet /snippets/{workspace}/{encoded_id}/{node_id}/files/{path}Get a snippet's raw file
SnippetsApiSnippetsWorkspaceEncodedIdNodeIdGetGet /snippets/{workspace}/{encoded_id}/{node_id}Get a previous revision of a snippet
SnippetsApiSnippetsWorkspaceEncodedIdNodeIdPutPut /snippets/{workspace}/{encoded_id}/{node_id}Update a previous revision of a snippet
SnippetsApiSnippetsWorkspaceEncodedIdPutPut /snippets/{workspace}/{encoded_id}Update a snippet
SnippetsApiSnippetsWorkspaceEncodedIdRevisionDiffGetGet /snippets/{workspace}/{encoded_id}/{revision}/diffGet snippet changes between versions
SnippetsApiSnippetsWorkspaceEncodedIdRevisionPatchGetGet /snippets/{workspace}/{encoded_id}/{revision}/patchGet snippet patch between versions
SnippetsApiSnippetsWorkspaceEncodedIdWatchDeleteDelete /snippets/{workspace}/{encoded_id}/watchStop watching a snippet
SnippetsApiSnippetsWorkspaceEncodedIdWatchGetGet /snippets/{workspace}/{encoded_id}/watchCheck if the current user is watching a snippet
SnippetsApiSnippetsWorkspaceEncodedIdWatchPutPut /snippets/{workspace}/{encoded_id}/watchWatch a snippet
SnippetsApiSnippetsWorkspaceEncodedIdWatchersGetGet /snippets/{workspace}/{encoded_id}/watchersList users watching a snippet
SnippetsApiSnippetsWorkspaceGetGet /snippets/{workspace}List snippets in a workspace
SnippetsApiSnippetsWorkspacePostPost /snippets/{workspace}Create a snippet for a workspace
SourceApiRepositoriesWorkspaceRepoSlugFilehistoryCommitPathGetGet /repositories/{workspace}/{repo_slug}/filehistory/{commit}/{path}List commits that modified a file
SourceApiRepositoriesWorkspaceRepoSlugSrcCommitPathGetGet /repositories/{workspace}/{repo_slug}/src/{commit}/{path}Get file or directory contents
SourceApiRepositoriesWorkspaceRepoSlugSrcGetGet /repositories/{workspace}/{repo_slug}/srcGet the root directory of the main branch
SourceApiRepositoriesWorkspaceRepoSlugSrcPostPost /repositories/{workspace}/{repo_slug}/srcCreate a commit by uploading a file
SshApiUsersSelectedUserSshKeysGetGet /users/{selected_user}/ssh-keysList SSH keys
SshApiUsersSelectedUserSshKeysKeyIdDeleteDelete /users/{selected_user}/ssh-keys/{key_id}Delete a SSH key
SshApiUsersSelectedUserSshKeysKeyIdGetGet /users/{selected_user}/ssh-keys/{key_id}Get a SSH key
SshApiUsersSelectedUserSshKeysKeyIdPutPut /users/{selected_user}/ssh-keys/{key_id}Update a SSH key
SshApiUsersSelectedUserSshKeysPostPost /users/{selected_user}/ssh-keysAdd a new SSH key
TeamsApiTeamsGetGet /teamsList teams a user is part of
TeamsApiTeamsUsernameFollowersGetGet /teams/{username}/followersList team followers
TeamsApiTeamsUsernameFollowingGetGet /teams/{username}/followingList accounts a team is following
TeamsApiTeamsUsernameGetGet /teams/{username}Get a team
TeamsApiTeamsUsernameMembersGetGet /teams/{username}/membersList team members
TeamsApiTeamsUsernamePermissionsGetGet /teams/{username}/permissionsList team permissions for a user
TeamsApiTeamsUsernamePermissionsRepositoriesGetGet /teams/{username}/permissions/repositoriesList repository permissions for a team
TeamsApiTeamsUsernamePermissionsRepositoriesRepoSlugGetGet /teams/{username}/permissions/repositories/{repo_slug}List repository permissions for a team
TeamsApiTeamsWorkspaceRepositoriesGetGet /teams/{workspace}/repositoriesList workspace repositories
TeamsApiUserPermissionsTeamsGetGet /user/permissions/teamsList team permissions for the user
TeamsApiUsersWorkspaceRepositoriesGetGet /users/{workspace}/repositoriesList workspace repositories
UsersApiTeamsWorkspaceRepositoriesGetGet /teams/{workspace}/repositoriesList workspace repositories
UsersApiUserEmailsEmailGetGet /user/emails/{email}Get an email address for current user
UsersApiUserEmailsGetGet /user/emailsList email addresses for current user
UsersApiUserGetGet /userGet current user
UsersApiUsersSelectedUserGetGet /users/{selected_user}Get a user
UsersApiUsersUsernameMembersGetGet /users/{username}/membersList team users
UsersApiUsersWorkspaceRepositoriesGetGet /users/{workspace}/repositoriesList workspace repositories
WebhooksApiHookEventsGetGet /hook_eventsGet a webhook resource
WebhooksApiHookEventsSubjectTypeGetGet /hook_events/{subject_type}List subscribable webhook types
WebhooksApiRepositoriesWorkspaceRepoSlugHooksGetGet /repositories/{workspace}/{repo_slug}/hooksList webhooks for a repository
WebhooksApiRepositoriesWorkspaceRepoSlugHooksPostPost /repositories/{workspace}/{repo_slug}/hooksCreate a webhook for a repository
WebhooksApiRepositoriesWorkspaceRepoSlugHooksUidDeleteDelete /repositories/{workspace}/{repo_slug}/hooks/{uid}Delete a webhook for a repository
WebhooksApiRepositoriesWorkspaceRepoSlugHooksUidGetGet /repositories/{workspace}/{repo_slug}/hooks/{uid}Get a webhook for a repository
WebhooksApiRepositoriesWorkspaceRepoSlugHooksUidPutPut /repositories/{workspace}/{repo_slug}/hooks/{uid}Update a webhook for a repository
WebhooksApiWorkspacesWorkspaceHooksGetGet /workspaces/{workspace}/hooksList webhooks for a workspace
WebhooksApiWorkspacesWorkspaceHooksPostPost /workspaces/{workspace}/hooksCreate a webhook for a workspace
WebhooksApiWorkspacesWorkspaceHooksUidDeleteDelete /workspaces/{workspace}/hooks/{uid}Delete a webhook for a workspace
WebhooksApiWorkspacesWorkspaceHooksUidGetGet /workspaces/{workspace}/hooks/{uid}Get a webhook for a workspace
WebhooksApiWorkspacesWorkspaceHooksUidPutPut /workspaces/{workspace}/hooks/{uid}Update a webhook for a workspace
WorkspacesApiUserPermissionsWorkspacesGetGet /user/permissions/workspacesList workspaces for the current user
WorkspacesApiWorkspacesGetGet /workspacesList workspaces for user
WorkspacesApiWorkspacesWorkspaceGetGet /workspaces/{workspace}Get a workspace
WorkspacesApiWorkspacesWorkspaceHooksGetGet /workspaces/{workspace}/hooksList webhooks for a workspace
WorkspacesApiWorkspacesWorkspaceHooksPostPost /workspaces/{workspace}/hooksCreate a webhook for a workspace
WorkspacesApiWorkspacesWorkspaceHooksUidDeleteDelete /workspaces/{workspace}/hooks/{uid}Delete a webhook for a workspace
WorkspacesApiWorkspacesWorkspaceHooksUidGetGet /workspaces/{workspace}/hooks/{uid}Get a webhook for a workspace
WorkspacesApiWorkspacesWorkspaceHooksUidPutPut /workspaces/{workspace}/hooks/{uid}Update a webhook for a workspace
WorkspacesApiWorkspacesWorkspaceMembersGetGet /workspaces/{workspace}/membersList users in a workspace
WorkspacesApiWorkspacesWorkspaceMembersMemberGetGet /workspaces/{workspace}/members/{member}Get user membership for a workspace
WorkspacesApiWorkspacesWorkspacePermissionsGetGet /workspaces/{workspace}/permissionsList user permissions in a workspace
WorkspacesApiWorkspacesWorkspacePermissionsRepositoriesGetGet /workspaces/{workspace}/permissions/repositoriesList all repository permissions for a workspace
WorkspacesApiWorkspacesWorkspacePermissionsRepositoriesRepoSlugGetGet /workspaces/{workspace}/permissions/repositories/{repo_slug}List a repository permissions for a workspace
WorkspacesApiWorkspacesWorkspaceProjectsGetGet /workspaces/{workspace}/projectsList projects in a workspace
WorkspacesApiWorkspacesWorkspaceProjectsProjectKeyGetGet /workspaces/{workspace}/projects/{project_key}Get a project for a workspace

Documentation For Models

Documentation For Authorization

api_key

  • Type: API key
  • API key parameter name: Authorization
  • Location: HTTP header

Note, each API key must be added to a map of map[string]APIKey where the key is: Authorization and passed in as the auth context for each request.

basic

  • Type: HTTP basic authentication

Example

auth := context.WithValue(context.Background(), sw.ContextBasicAuth, sw.BasicAuth{
    UserName: "username",
    Password: "password",
})
r, err := client.Service.Operation(auth, args)

oauth2

  • Type: OAuth
  • Flow: accessCode
  • Authorization URL: https://bitbucket.org/site/oauth2/authorize
  • Scopes:
  • wiki: Read and modify your repositories' wikis
  • pullrequest:write: Read and modify your repositories and their pull requests
  • runner: Access your workspaces/repositories' runners
  • runner:write: Access and edit your workspaces/repositories' runners
  • pipeline:variable: Access your repositories' build pipelines and configure their variables
  • project:write: Read and modify your workspace's project settings, and read and transfer repositories within your workspace's projects
  • pipeline:write: Access and rerun your repositories' build pipelines
  • snippet: Read your snippets
  • repository:delete: Delete your repositories
  • repository:write: Read and modify your repositories
  • issue: Read your repositories' issues
  • email: Read your account's primary email address
  • repository: Read your repositories
  • issue:write: Read and modify your repositories' issues
  • webhook: Read and modify your repositories' webhooks
  • pipeline: Access your repositories' build pipelines
  • snippet:write: Read and modify your snippets
  • account: Read your account information
  • repository:admin: Administer your repositories
  • pullrequest: Read your repositories and their pull requests
  • project: Read your workspace's project settings and read repositories contained within your workspace's projects
  • team: Read your team membership information
  • team:write: Read and modify your team membership information
  • account:write: Read and modify your account information

Example

auth := context.WithValue(context.Background(), sw.ContextAccessToken, "ACCESSTOKENSTRING")
r, err := client.Service.Operation(auth, args)

Or via OAuth2 module to automatically refresh tokens and perform user authentication.

import "golang.org/x/oauth2"

/* Perform OAuth2 round trip request and obtain a token */

tokenSource := oauth2cfg.TokenSource(createContext(httpClient), &token)
auth := context.WithValue(oauth2.NoContext, sw.ContextOAuth2, tokenSource)
r, err := client.Service.Operation(auth, args)

Documentation for Utility Methods

Due to the fact that model structure members are all pointers, this package contains a number of utility functions to easily obtain pointers to values of basic types. Each of these functions takes a value of the given basic type and returns a pointer to it:

  • PtrBool
  • PtrInt
  • PtrInt32
  • PtrInt64
  • PtrFloat
  • PtrFloat32
  • PtrFloat64
  • PtrString
  • PtrTime

Author

[email protected]

# Functions

CacheExpires helper function to determine remaining time before repeating a request.
NewAccount instantiates a new Account object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountLinks instantiates a new AccountLinks object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountLinksWithDefaults instantiates a new AccountLinks object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountWithDefaults instantiates a new Account object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAPIClient creates a new API client.
NewAPIResponse returns a new APIResponse object.
NewAPIResponseWithError returns a new APIResponse object with the provided error message.
NewApplicationProperty instantiates a new ApplicationProperty object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewApplicationPropertyWithDefaults instantiates a new ApplicationProperty object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAuthor instantiates a new Author object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAuthorWithDefaults instantiates a new Author object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBaseCommit instantiates a new BaseCommit object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBaseCommitWithDefaults instantiates a new BaseCommit object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBranch instantiates a new Branch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBranchingModel instantiates a new BranchingModel object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBranchingModelBranchTypes instantiates a new BranchingModelBranchTypes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBranchingModelBranchTypesWithDefaults instantiates a new BranchingModelBranchTypes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBranchingModelDevelopment instantiates a new BranchingModelDevelopment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBranchingModelDevelopmentWithDefaults instantiates a new BranchingModelDevelopment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBranchingModelSettings instantiates a new BranchingModelSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBranchingModelSettingsBranchTypes instantiates a new BranchingModelSettingsBranchTypes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBranchingModelSettingsBranchTypesWithDefaults instantiates a new BranchingModelSettingsBranchTypes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBranchingModelSettingsDevelopment instantiates a new BranchingModelSettingsDevelopment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBranchingModelSettingsDevelopmentWithDefaults instantiates a new BranchingModelSettingsDevelopment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBranchingModelSettingsLinks instantiates a new BranchingModelSettingsLinks object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBranchingModelSettingsLinksWithDefaults instantiates a new BranchingModelSettingsLinks object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBranchingModelSettingsProduction instantiates a new BranchingModelSettingsProduction object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBranchingModelSettingsProductionWithDefaults instantiates a new BranchingModelSettingsProduction object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBranchingModelSettingsWithDefaults instantiates a new BranchingModelSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBranchingModelWithDefaults instantiates a new BranchingModel object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBranchrestriction instantiates a new Branchrestriction object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBranchRestriction instantiates a new BranchRestriction object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBranchrestrictionWithDefaults instantiates a new Branchrestriction object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBranchRestrictionWithDefaults instantiates a new BranchRestriction object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBranchWithDefaults instantiates a new Branch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComment instantiates a new Comment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCommentInline instantiates a new CommentInline object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCommentInlineWithDefaults instantiates a new CommentInline object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCommentLinks instantiates a new CommentLinks object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCommentLinksWithDefaults instantiates a new CommentLinks object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCommentWithDefaults instantiates a new Comment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCommit instantiates a new Commit object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCommitComment instantiates a new CommitComment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCommitCommentWithDefaults instantiates a new CommitComment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCommitFile instantiates a new CommitFile object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCommitFileWithDefaults instantiates a new CommitFile object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCommitReport instantiates a new CommitReport object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCommitReportWithDefaults instantiates a new CommitReport object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCommitstatus instantiates a new Commitstatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCommitStatus instantiates a new CommitStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCommitStatusLinks instantiates a new CommitStatusLinks object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCommitStatusLinksWithDefaults instantiates a new CommitStatusLinks object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCommitstatusWithDefaults instantiates a new Commitstatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCommitStatusWithDefaults instantiates a new CommitStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCommitWithDefaults instantiates a new Commit object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComponent instantiates a new Component object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComponentWithDefaults instantiates a new Component object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfiguration returns a new Configuration object.
NewDdevReport instantiates a new DdevReport object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDdevReportWithDefaults instantiates a new DdevReport object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeployKey instantiates a new DeployKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeployKeyWithDefaults instantiates a new DeployKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeployment instantiates a new Deployment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeploymentEnvironment instantiates a new DeploymentEnvironment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeploymentEnvironmentLock instantiates a new DeploymentEnvironmentLock object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeploymentEnvironmentLockWithDefaults instantiates a new DeploymentEnvironmentLock object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeploymentEnvironmentWithDefaults instantiates a new DeploymentEnvironment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeploymentRelease instantiates a new DeploymentRelease object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeploymentReleaseWithDefaults instantiates a new DeploymentRelease object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeploymentsDdevDeploymentEnvironment instantiates a new DeploymentsDdevDeploymentEnvironment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeploymentsDdevDeploymentEnvironmentLock instantiates a new DeploymentsDdevDeploymentEnvironmentLock object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeploymentsDdevDeploymentEnvironmentLockWithDefaults instantiates a new DeploymentsDdevDeploymentEnvironmentLock object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeploymentsDdevDeploymentEnvironmentWithDefaults instantiates a new DeploymentsDdevDeploymentEnvironment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeploymentsDdevPaginatedEnvironments instantiates a new DeploymentsDdevPaginatedEnvironments object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeploymentsDdevPaginatedEnvironmentsWithDefaults instantiates a new DeploymentsDdevPaginatedEnvironments object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeploymentsStgWestDeploymentEnvironment instantiates a new DeploymentsStgWestDeploymentEnvironment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeploymentsStgWestDeploymentEnvironmentLock instantiates a new DeploymentsStgWestDeploymentEnvironmentLock object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeploymentsStgWestDeploymentEnvironmentLockWithDefaults instantiates a new DeploymentsStgWestDeploymentEnvironmentLock object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeploymentsStgWestDeploymentEnvironmentWithDefaults instantiates a new DeploymentsStgWestDeploymentEnvironment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeploymentsStgWestPaginatedEnvironments instantiates a new DeploymentsStgWestPaginatedEnvironments object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeploymentsStgWestPaginatedEnvironmentsWithDefaults instantiates a new DeploymentsStgWestPaginatedEnvironments object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeploymentState instantiates a new DeploymentState object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeploymentStateCompleted instantiates a new DeploymentStateCompleted object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeploymentStateCompletedAllOf instantiates a new DeploymentStateCompletedAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeploymentStateCompletedAllOfWithDefaults instantiates a new DeploymentStateCompletedAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeploymentStateCompletedStatus instantiates a new DeploymentStateCompletedStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeploymentStateCompletedStatusFailed instantiates a new DeploymentStateCompletedStatusFailed object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeploymentStateCompletedStatusFailedAllOf instantiates a new DeploymentStateCompletedStatusFailedAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeploymentStateCompletedStatusFailedAllOfWithDefaults instantiates a new DeploymentStateCompletedStatusFailedAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeploymentStateCompletedStatusFailedWithDefaults instantiates a new DeploymentStateCompletedStatusFailed object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeploymentStateCompletedStatusStopped instantiates a new DeploymentStateCompletedStatusStopped object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeploymentStateCompletedStatusStoppedAllOf instantiates a new DeploymentStateCompletedStatusStoppedAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeploymentStateCompletedStatusStoppedAllOfWithDefaults instantiates a new DeploymentStateCompletedStatusStoppedAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeploymentStateCompletedStatusStoppedWithDefaults instantiates a new DeploymentStateCompletedStatusStopped object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeploymentStateCompletedStatusSuccessful instantiates a new DeploymentStateCompletedStatusSuccessful object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeploymentStateCompletedStatusSuccessfulAllOf instantiates a new DeploymentStateCompletedStatusSuccessfulAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeploymentStateCompletedStatusSuccessfulAllOfWithDefaults instantiates a new DeploymentStateCompletedStatusSuccessfulAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeploymentStateCompletedStatusSuccessfulWithDefaults instantiates a new DeploymentStateCompletedStatusSuccessful object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeploymentStateCompletedStatusWithDefaults instantiates a new DeploymentStateCompletedStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeploymentStateCompletedWithDefaults instantiates a new DeploymentStateCompleted object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeploymentStateInProgress instantiates a new DeploymentStateInProgress object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeploymentStateInProgressAllOf instantiates a new DeploymentStateInProgressAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeploymentStateInProgressAllOfWithDefaults instantiates a new DeploymentStateInProgressAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeploymentStateInProgressWithDefaults instantiates a new DeploymentStateInProgress object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeploymentStateUndeployed instantiates a new DeploymentStateUndeployed object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeploymentStateUndeployedAllOf instantiates a new DeploymentStateUndeployedAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeploymentStateUndeployedAllOfWithDefaults instantiates a new DeploymentStateUndeployedAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeploymentStateUndeployedWithDefaults instantiates a new DeploymentStateUndeployed object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeploymentStateWithDefaults instantiates a new DeploymentState object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeploymentVariable instantiates a new DeploymentVariable object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeploymentVariableWithDefaults instantiates a new DeploymentVariable object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeploymentWithDefaults instantiates a new Deployment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDiffstat instantiates a new Diffstat object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDiffstatWithDefaults instantiates a new Diffstat object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewErrorError instantiates a new ErrorError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewErrorErrorWithDefaults instantiates a new ErrorError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExportOptions instantiates a new ExportOptions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExportOptionsWithDefaults instantiates a new ExportOptions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGroup instantiates a new Group object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGroupLinks instantiates a new GroupLinks object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGroupLinksWithDefaults instantiates a new GroupLinks object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGroupWithDefaults instantiates a new Group object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewHookEvent instantiates a new HookEvent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewHookEventWithDefaults instantiates a new HookEvent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIssue instantiates a new Issue object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIssueAttachment instantiates a new IssueAttachment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIssueAttachmentWithDefaults instantiates a new IssueAttachment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIssueChange instantiates a new IssueChange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIssueChangeChanges instantiates a new IssueChangeChanges object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIssueChangeChangesAssignee instantiates a new IssueChangeChangesAssignee object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIssueChangeChangesAssigneeWithDefaults instantiates a new IssueChangeChangesAssignee object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIssueChangeChangesWithDefaults instantiates a new IssueChangeChanges object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIssueChangeLinks instantiates a new IssueChangeLinks object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIssueChangeLinksWithDefaults instantiates a new IssueChangeLinks object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIssueChangeWithDefaults instantiates a new IssueChange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIssueComment instantiates a new IssueComment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIssueCommentWithDefaults instantiates a new IssueComment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIssueJobStatus instantiates a new IssueJobStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIssueJobStatusWithDefaults instantiates a new IssueJobStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIssueLinks instantiates a new IssueLinks object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIssueLinksWithDefaults instantiates a new IssueLinks object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIssueWithDefaults instantiates a new Issue object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewJiraProject instantiates a new JiraProject object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewJiraProjectWithDefaults instantiates a new JiraProject object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewJiraSite instantiates a new JiraSite object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewJiraSiteWithDefaults instantiates a new JiraSite object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLink instantiates a new Link object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLinkWithDefaults instantiates a new Link object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMilestone instantiates a new Milestone object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMilestoneWithDefaults instantiates a new Milestone object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewModelError instantiates a new ModelError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewModelErrorWithDefaults instantiates a new ModelError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
NewObject instantiates a new Object object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewObjectWithDefaults instantiates a new Object object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPage instantiates a new Page object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPageWithDefaults instantiates a new Page object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedAnnotations instantiates a new PaginatedAnnotations object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedAnnotationsWithDefaults instantiates a new PaginatedAnnotations object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedBranches instantiates a new PaginatedBranches object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedBranchesWithDefaults instantiates a new PaginatedBranches object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedBranchrestrictions instantiates a new PaginatedBranchrestrictions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedBranchrestrictionsWithDefaults instantiates a new PaginatedBranchrestrictions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedChangeset instantiates a new PaginatedChangeset object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedChangesetWithDefaults instantiates a new PaginatedChangeset object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedCommitComments instantiates a new PaginatedCommitComments object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedCommitCommentsWithDefaults instantiates a new PaginatedCommitComments object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedCommitstatuses instantiates a new PaginatedCommitstatuses object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedCommitstatusesWithDefaults instantiates a new PaginatedCommitstatuses object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedComponents instantiates a new PaginatedComponents object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedComponentsWithDefaults instantiates a new PaginatedComponents object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedDeployKeys instantiates a new PaginatedDeployKeys object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedDeployKeysWithDefaults instantiates a new PaginatedDeployKeys object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedDeployments instantiates a new PaginatedDeployments object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedDeploymentsWithDefaults instantiates a new PaginatedDeployments object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedDeploymentVariable instantiates a new PaginatedDeploymentVariable object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedDeploymentVariableWithDefaults instantiates a new PaginatedDeploymentVariable object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedDiffstats instantiates a new PaginatedDiffstats object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedDiffstatsWithDefaults instantiates a new PaginatedDiffstats object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedEnvironments instantiates a new PaginatedEnvironments object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedEnvironmentsWithDefaults instantiates a new PaginatedEnvironments object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedFiles instantiates a new PaginatedFiles object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedFilesWithDefaults instantiates a new PaginatedFiles object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedHookEvents instantiates a new PaginatedHookEvents object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedHookEventsWithDefaults instantiates a new PaginatedHookEvents object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedIssueAttachments instantiates a new PaginatedIssueAttachments object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedIssueAttachmentsWithDefaults instantiates a new PaginatedIssueAttachments object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedIssueComments instantiates a new PaginatedIssueComments object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedIssueCommentsWithDefaults instantiates a new PaginatedIssueComments object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedIssues instantiates a new PaginatedIssues object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedIssuesWithDefaults instantiates a new PaginatedIssues object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedLogEntries instantiates a new PaginatedLogEntries object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedLogEntriesWithDefaults instantiates a new PaginatedLogEntries object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedMilestones instantiates a new PaginatedMilestones object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedMilestonesWithDefaults instantiates a new PaginatedMilestones object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedPipelineCaches instantiates a new PaginatedPipelineCaches object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedPipelineCachesWithDefaults instantiates a new PaginatedPipelineCaches object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedPipelineKnownHosts instantiates a new PaginatedPipelineKnownHosts object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedPipelineKnownHostsWithDefaults instantiates a new PaginatedPipelineKnownHosts object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedPipelines instantiates a new PaginatedPipelines object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedPipelineScheduleExecutions instantiates a new PaginatedPipelineScheduleExecutions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedPipelineScheduleExecutionsWithDefaults instantiates a new PaginatedPipelineScheduleExecutions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedPipelineSchedules instantiates a new PaginatedPipelineSchedules object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedPipelineSchedulesWithDefaults instantiates a new PaginatedPipelineSchedules object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedPipelineSteps instantiates a new PaginatedPipelineSteps object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedPipelineStepsWithDefaults instantiates a new PaginatedPipelineSteps object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedPipelinesWithDefaults instantiates a new PaginatedPipelines object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedPipelineVariables instantiates a new PaginatedPipelineVariables object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedPipelineVariablesWithDefaults instantiates a new PaginatedPipelineVariables object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedProjects instantiates a new PaginatedProjects object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedProjectsWithDefaults instantiates a new PaginatedProjects object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedPullrequestComments instantiates a new PaginatedPullrequestComments object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedPullrequestCommentsWithDefaults instantiates a new PaginatedPullrequestComments object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedPullrequests instantiates a new PaginatedPullrequests object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedPullrequestsWithDefaults instantiates a new PaginatedPullrequests object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedRefs instantiates a new PaginatedRefs object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedRefsWithDefaults instantiates a new PaginatedRefs object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedReports instantiates a new PaginatedReports object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedReportsWithDefaults instantiates a new PaginatedReports object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedRepositories instantiates a new PaginatedRepositories object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedRepositoriesWithDefaults instantiates a new PaginatedRepositories object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedRepositoryGroupPermissions instantiates a new PaginatedRepositoryGroupPermissions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedRepositoryGroupPermissionsWithDefaults instantiates a new PaginatedRepositoryGroupPermissions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedRepositoryPermissions instantiates a new PaginatedRepositoryPermissions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedRepositoryPermissionsWithDefaults instantiates a new PaginatedRepositoryPermissions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedRepositoryUserPermissions instantiates a new PaginatedRepositoryUserPermissions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedRepositoryUserPermissionsWithDefaults instantiates a new PaginatedRepositoryUserPermissions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedSnippetComments instantiates a new PaginatedSnippetComments object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedSnippetCommentsWithDefaults instantiates a new PaginatedSnippetComments object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedSnippetCommit instantiates a new PaginatedSnippetCommit object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedSnippetCommitWithDefaults instantiates a new PaginatedSnippetCommit object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedSnippets instantiates a new PaginatedSnippets object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedSnippetsWithDefaults instantiates a new PaginatedSnippets object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedSshUserKeys instantiates a new PaginatedSshUserKeys object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedSshUserKeysWithDefaults instantiates a new PaginatedSshUserKeys object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedTags instantiates a new PaginatedTags object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedTagsWithDefaults instantiates a new PaginatedTags object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedTeamPermissions instantiates a new PaginatedTeamPermissions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedTeamPermissionsWithDefaults instantiates a new PaginatedTeamPermissions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedTeams instantiates a new PaginatedTeams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedTeamsWithDefaults instantiates a new PaginatedTeams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedTreeentries instantiates a new PaginatedTreeentries object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedTreeentriesWithDefaults instantiates a new PaginatedTreeentries object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedUsers instantiates a new PaginatedUsers object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedUsersWithDefaults instantiates a new PaginatedUsers object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedVersions instantiates a new PaginatedVersions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedVersionsWithDefaults instantiates a new PaginatedVersions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedWebhookSubscriptions instantiates a new PaginatedWebhookSubscriptions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedWebhookSubscriptionsWithDefaults instantiates a new PaginatedWebhookSubscriptions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedWorkspaceMemberships instantiates a new PaginatedWorkspaceMemberships object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedWorkspaceMembershipsWithDefaults instantiates a new PaginatedWorkspaceMemberships object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedWorkspaces instantiates a new PaginatedWorkspaces object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedWorkspacesWithDefaults instantiates a new PaginatedWorkspaces object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewParticipant instantiates a new Participant object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewParticipantWithDefaults instantiates a new Participant object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipeline instantiates a new Pipeline object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineBuildNumber instantiates a new PipelineBuildNumber object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineBuildNumberWithDefaults instantiates a new PipelineBuildNumber object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineCache instantiates a new PipelineCache object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineCacheContentUri instantiates a new PipelineCacheContentUri object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineCacheContentUriWithDefaults instantiates a new PipelineCacheContentUri object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineCacheWithDefaults instantiates a new PipelineCache object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineCommand instantiates a new PipelineCommand object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineCommandWithDefaults instantiates a new PipelineCommand object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineCommitTarget instantiates a new PipelineCommitTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineCommitTargetWithDefaults instantiates a new PipelineCommitTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineCompletedError instantiates a new PipelineCompletedError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineCompletedErrorWithDefaults instantiates a new PipelineCompletedError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineCompletedState instantiates a new PipelineCompletedState object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineCompletedStateWithDefaults instantiates a new PipelineCompletedState object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineError instantiates a new PipelineError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineErrorWithDefaults instantiates a new PipelineError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineImage instantiates a new PipelineImage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineImageWithDefaults instantiates a new PipelineImage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineInProgressState instantiates a new PipelineInProgressState object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineInProgressStateWithDefaults instantiates a new PipelineInProgressState object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineKnownHost instantiates a new PipelineKnownHost object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineKnownHostWithDefaults instantiates a new PipelineKnownHost object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelinePendingState instantiates a new PipelinePendingState object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelinePendingStateWithDefaults instantiates a new PipelinePendingState object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineRefTarget instantiates a new PipelineRefTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineRefTargetWithDefaults instantiates a new PipelineRefTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineSchedule instantiates a new PipelineSchedule object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineScheduleExecution instantiates a new PipelineScheduleExecution object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineScheduleExecutionErrored instantiates a new PipelineScheduleExecutionErrored object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineScheduleExecutionErroredAllOf instantiates a new PipelineScheduleExecutionErroredAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineScheduleExecutionErroredAllOfWithDefaults instantiates a new PipelineScheduleExecutionErroredAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineScheduleExecutionErroredWithDefaults instantiates a new PipelineScheduleExecutionErrored object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineScheduleExecutionExecuted instantiates a new PipelineScheduleExecutionExecuted object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineScheduleExecutionExecutedAllOf instantiates a new PipelineScheduleExecutionExecutedAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineScheduleExecutionExecutedAllOfWithDefaults instantiates a new PipelineScheduleExecutionExecutedAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineScheduleExecutionExecutedWithDefaults instantiates a new PipelineScheduleExecutionExecuted object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineScheduleExecutionWithDefaults instantiates a new PipelineScheduleExecution object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineScheduleWithDefaults instantiates a new PipelineSchedule object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelinesConfig instantiates a new PipelinesConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelinesConfiguration instantiates a new PipelinesConfiguration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelinesConfigurationWithDefaults instantiates a new PipelinesConfiguration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelinesConfigWithDefaults instantiates a new PipelinesConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelinesDdevPipelineStep instantiates a new PipelinesDdevPipelineStep object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelinesDdevPipelineStepWithDefaults instantiates a new PipelinesDdevPipelineStep object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineSelector instantiates a new PipelineSelector object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineSelectorWithDefaults instantiates a new PipelineSelector object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineSshKeyPair instantiates a new PipelineSshKeyPair object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineSshKeyPairWithDefaults instantiates a new PipelineSshKeyPair object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineSshPublicKey instantiates a new PipelineSshPublicKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineSshPublicKeyWithDefaults instantiates a new PipelineSshPublicKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelinesStgWestPipelineStep instantiates a new PipelinesStgWestPipelineStep object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelinesStgWestPipelineStepWithDefaults instantiates a new PipelinesStgWestPipelineStep object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineState instantiates a new PipelineState object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStateCompleted instantiates a new PipelineStateCompleted object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStateCompletedError instantiates a new PipelineStateCompletedError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStateCompletedErrorWithDefaults instantiates a new PipelineStateCompletedError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStateCompletedExpired instantiates a new PipelineStateCompletedExpired object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStateCompletedExpiredAllOf instantiates a new PipelineStateCompletedExpiredAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStateCompletedExpiredAllOfWithDefaults instantiates a new PipelineStateCompletedExpiredAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStateCompletedExpiredWithDefaults instantiates a new PipelineStateCompletedExpired object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStateCompletedFailed instantiates a new PipelineStateCompletedFailed object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStateCompletedFailedAllOf instantiates a new PipelineStateCompletedFailedAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStateCompletedFailedAllOfWithDefaults instantiates a new PipelineStateCompletedFailedAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStateCompletedFailedWithDefaults instantiates a new PipelineStateCompletedFailed object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStateCompletedResult instantiates a new PipelineStateCompletedResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStateCompletedResultWithDefaults instantiates a new PipelineStateCompletedResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStateCompletedStopped instantiates a new PipelineStateCompletedStopped object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStateCompletedStoppedAllOf instantiates a new PipelineStateCompletedStoppedAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStateCompletedStoppedAllOfWithDefaults instantiates a new PipelineStateCompletedStoppedAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStateCompletedStoppedWithDefaults instantiates a new PipelineStateCompletedStopped object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStateCompletedSuccessful instantiates a new PipelineStateCompletedSuccessful object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStateCompletedSuccessfulAllOf instantiates a new PipelineStateCompletedSuccessfulAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStateCompletedSuccessfulAllOfWithDefaults instantiates a new PipelineStateCompletedSuccessfulAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStateCompletedSuccessfulWithDefaults instantiates a new PipelineStateCompletedSuccessful object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStateCompletedWithDefaults instantiates a new PipelineStateCompleted object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStateInProgress instantiates a new PipelineStateInProgress object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStateInProgressPaused instantiates a new PipelineStateInProgressPaused object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStateInProgressPausedAllOf instantiates a new PipelineStateInProgressPausedAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStateInProgressPausedAllOfWithDefaults instantiates a new PipelineStateInProgressPausedAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStateInProgressPausedWithDefaults instantiates a new PipelineStateInProgressPaused object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStateInProgressRunning instantiates a new PipelineStateInProgressRunning object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStateInProgressRunningAllOf instantiates a new PipelineStateInProgressRunningAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStateInProgressRunningAllOfWithDefaults instantiates a new PipelineStateInProgressRunningAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStateInProgressRunningWithDefaults instantiates a new PipelineStateInProgressRunning object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStateInProgressStage instantiates a new PipelineStateInProgressStage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStateInProgressStageWithDefaults instantiates a new PipelineStateInProgressStage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStateInProgressWithDefaults instantiates a new PipelineStateInProgress object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStatePending instantiates a new PipelineStatePending object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStatePendingWithDefaults instantiates a new PipelineStatePending object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStateWithDefaults instantiates a new PipelineState object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStep instantiates a new PipelineStep object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStepError instantiates a new PipelineStepError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStepErrorWithDefaults instantiates a new PipelineStepError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStepState instantiates a new PipelineStepState object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStepStateCompleted instantiates a new PipelineStepStateCompleted object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStepStateCompletedAllOf instantiates a new PipelineStepStateCompletedAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStepStateCompletedAllOfWithDefaults instantiates a new PipelineStepStateCompletedAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStepStateCompletedError instantiates a new PipelineStepStateCompletedError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStepStateCompletedErrorAllOf instantiates a new PipelineStepStateCompletedErrorAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStepStateCompletedErrorAllOfWithDefaults instantiates a new PipelineStepStateCompletedErrorAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStepStateCompletedErrorWithDefaults instantiates a new PipelineStepStateCompletedError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStepStateCompletedExpired instantiates a new PipelineStepStateCompletedExpired object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStepStateCompletedExpiredAllOf instantiates a new PipelineStepStateCompletedExpiredAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStepStateCompletedExpiredAllOfWithDefaults instantiates a new PipelineStepStateCompletedExpiredAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStepStateCompletedExpiredWithDefaults instantiates a new PipelineStepStateCompletedExpired object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStepStateCompletedFailed instantiates a new PipelineStepStateCompletedFailed object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStepStateCompletedFailedAllOf instantiates a new PipelineStepStateCompletedFailedAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStepStateCompletedFailedAllOfWithDefaults instantiates a new PipelineStepStateCompletedFailedAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStepStateCompletedFailedWithDefaults instantiates a new PipelineStepStateCompletedFailed object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStepStateCompletedNotRun instantiates a new PipelineStepStateCompletedNotRun object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStepStateCompletedNotRunAllOf instantiates a new PipelineStepStateCompletedNotRunAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStepStateCompletedNotRunAllOfWithDefaults instantiates a new PipelineStepStateCompletedNotRunAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStepStateCompletedNotRunWithDefaults instantiates a new PipelineStepStateCompletedNotRun object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStepStateCompletedResult instantiates a new PipelineStepStateCompletedResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStepStateCompletedResultWithDefaults instantiates a new PipelineStepStateCompletedResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStepStateCompletedStopped instantiates a new PipelineStepStateCompletedStopped object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStepStateCompletedStoppedAllOf instantiates a new PipelineStepStateCompletedStoppedAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStepStateCompletedStoppedAllOfWithDefaults instantiates a new PipelineStepStateCompletedStoppedAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStepStateCompletedStoppedWithDefaults instantiates a new PipelineStepStateCompletedStopped object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStepStateCompletedSuccessful instantiates a new PipelineStepStateCompletedSuccessful object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStepStateCompletedSuccessfulAllOf instantiates a new PipelineStepStateCompletedSuccessfulAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStepStateCompletedSuccessfulAllOfWithDefaults instantiates a new PipelineStepStateCompletedSuccessfulAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStepStateCompletedSuccessfulWithDefaults instantiates a new PipelineStepStateCompletedSuccessful object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStepStateCompletedWithDefaults instantiates a new PipelineStepStateCompleted object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStepStateInProgress instantiates a new PipelineStepStateInProgress object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStepStateInProgressAllOf instantiates a new PipelineStepStateInProgressAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStepStateInProgressAllOfWithDefaults instantiates a new PipelineStepStateInProgressAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStepStateInProgressWithDefaults instantiates a new PipelineStepStateInProgress object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStepStatePending instantiates a new PipelineStepStatePending object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStepStatePendingAllOf instantiates a new PipelineStepStatePendingAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStepStatePendingAllOfWithDefaults instantiates a new PipelineStepStatePendingAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStepStatePendingWithDefaults instantiates a new PipelineStepStatePending object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStepStateReady instantiates a new PipelineStepStateReady object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStepStateReadyAllOf instantiates a new PipelineStepStateReadyAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineStepStateReadyAllOfWithDefaults instantiates a new PipelineStepStateReadyAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStepStateReadyWithDefaults instantiates a new PipelineStepStateReady object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStepStateWithDefaults instantiates a new PipelineStepState object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineStepWithDefaults instantiates a new PipelineStep object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineTarget instantiates a new PipelineTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineTargetWithDefaults instantiates a new PipelineTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineTrigger instantiates a new PipelineTrigger object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineTriggerManual instantiates a new PipelineTriggerManual object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineTriggerManualWithDefaults instantiates a new PipelineTriggerManual object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineTriggerPush instantiates a new PipelineTriggerPush object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineTriggerPushWithDefaults instantiates a new PipelineTriggerPush object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineTriggerWithDefaults instantiates a new PipelineTrigger object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineVariable instantiates a new PipelineVariable object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPipelineVariableWithDefaults instantiates a new PipelineVariable object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPipelineWithDefaults instantiates a new Pipeline object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProject instantiates a new Project object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProjectLinks instantiates a new ProjectLinks object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProjectLinksWithDefaults instantiates a new ProjectLinks object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProjectWithDefaults instantiates a new Project object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPullrequest instantiates a new Pullrequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPullRequest instantiates a new PullRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPullRequestBranch instantiates a new PullRequestBranch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPullRequestBranchWithDefaults instantiates a new PullRequestBranch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPullrequestComment instantiates a new PullrequestComment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPullRequestComment instantiates a new PullRequestComment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPullrequestCommentWithDefaults instantiates a new PullrequestComment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPullRequestCommentWithDefaults instantiates a new PullRequestComment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPullRequestCommit instantiates a new PullRequestCommit object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPullRequestCommitWithDefaults instantiates a new PullRequestCommit object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPullrequestEndpoint instantiates a new PullrequestEndpoint object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPullrequestEndpointWithDefaults instantiates a new PullrequestEndpoint object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPullRequestLinks instantiates a new PullRequestLinks object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPullRequestLinksWithDefaults instantiates a new PullRequestLinks object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPullrequestMergeParameters instantiates a new PullrequestMergeParameters object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPullrequestMergeParametersWithDefaults instantiates a new PullrequestMergeParameters object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPullrequestWithDefaults instantiates a new Pullrequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPullRequestWithDefaults instantiates a new PullRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRef instantiates a new Ref object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRefLinks instantiates a new RefLinks object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRefLinksWithDefaults instantiates a new RefLinks object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRefWithDefaults instantiates a new Ref object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRenderedPullRequestMarkup instantiates a new RenderedPullRequestMarkup object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRenderedPullRequestMarkupTitle instantiates a new RenderedPullRequestMarkupTitle object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRenderedPullRequestMarkupTitleWithDefaults instantiates a new RenderedPullRequestMarkupTitle object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRenderedPullRequestMarkupWithDefaults instantiates a new RenderedPullRequestMarkup object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReport instantiates a new Report object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReportAnnotation instantiates a new ReportAnnotation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReportAnnotationWithDefaults instantiates a new ReportAnnotation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReportData instantiates a new ReportData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReportDataWithDefaults instantiates a new ReportData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReportWithDefaults instantiates a new Report object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRepository instantiates a new Repository object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRepositoryGroupPermission instantiates a new RepositoryGroupPermission object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRepositoryGroupPermissionWithDefaults instantiates a new RepositoryGroupPermission object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRepositoryLinks instantiates a new RepositoryLinks object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRepositoryLinksWithDefaults instantiates a new RepositoryLinks object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRepositoryPermission instantiates a new RepositoryPermission object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRepositoryPermissionWithDefaults instantiates a new RepositoryPermission object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRepositoryUserPermission instantiates a new RepositoryUserPermission object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRepositoryUserPermissionWithDefaults instantiates a new RepositoryUserPermission object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRepositoryWithDefaults instantiates a new Repository object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSearchCodeSearchResult instantiates a new SearchCodeSearchResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSearchCodeSearchResultWithDefaults instantiates a new SearchCodeSearchResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSearchContentMatch instantiates a new SearchContentMatch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSearchContentMatchWithDefaults instantiates a new SearchContentMatch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSearchLine instantiates a new SearchLine object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSearchLineWithDefaults instantiates a new SearchLine object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSearchResultPage instantiates a new SearchResultPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSearchResultPageWithDefaults instantiates a new SearchResultPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSearchSegment instantiates a new SearchSegment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSearchSegmentWithDefaults instantiates a new SearchSegment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSnippet instantiates a new Snippet object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSnippetComment instantiates a new SnippetComment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSnippetCommentWithDefaults instantiates a new SnippetComment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSnippetCommit instantiates a new SnippetCommit object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSnippetCommitLinks instantiates a new SnippetCommitLinks object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSnippetCommitLinksWithDefaults instantiates a new SnippetCommitLinks object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSnippetCommitWithDefaults instantiates a new SnippetCommit object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSnippetWithDefaults instantiates a new Snippet object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSshAccountKey instantiates a new SshAccountKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSshAccountKeyWithDefaults instantiates a new SshAccountKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSshKey instantiates a new SshKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSshKeyWithDefaults instantiates a new SshKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStgWestReport instantiates a new StgWestReport object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStgWestReportWithDefaults instantiates a new StgWestReport object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSubjectTypes instantiates a new SubjectTypes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSubjectTypesRepository instantiates a new SubjectTypesRepository object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSubjectTypesRepositoryWithDefaults instantiates a new SubjectTypesRepository object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSubjectTypesWithDefaults instantiates a new SubjectTypes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTag instantiates a new Tag object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTagWithDefaults instantiates a new Tag object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTeam instantiates a new Team object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTeamPermission instantiates a new TeamPermission object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTeamPermissionWithDefaults instantiates a new TeamPermission object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTeamWithDefaults instantiates a new Team object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTreeentry instantiates a new Treeentry object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTreeentryWithDefaults instantiates a new Treeentry object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUser instantiates a new User object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserWithDefaults instantiates a new User object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVersion instantiates a new Version object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVersionWithDefaults instantiates a new Version object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWebhookSubscription instantiates a new WebhookSubscription object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWebhookSubscriptionWithDefaults instantiates a new WebhookSubscription object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkspace instantiates a new Workspace object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkspaceLinks instantiates a new WorkspaceLinks object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkspaceLinksWithDefaults instantiates a new WorkspaceLinks object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkspaceMembership instantiates a new WorkspaceMembership object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWorkspaceMembershipWithDefaults instantiates a new WorkspaceMembership object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWorkspaceWithDefaults instantiates a new Workspace object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
PtrBool is a helper routine that returns a pointer to given boolean value.
PtrFloat32 is a helper routine that returns a pointer to given float value.
PtrFloat64 is a helper routine that returns a pointer to given float value.
PtrInt is a helper routine that returns a pointer to given integer value.
PtrInt32 is a helper routine that returns a pointer to given integer value.
PtrInt64 is a helper routine that returns a pointer to given integer value.
PtrString is a helper routine that returns a pointer to given string value.
PtrTime is helper routine that returns a pointer to given Time value.

# Variables

ContextAccessToken takes a string oauth2 access token as authentication for the request.
ContextAPIKeys takes a string apikey as authentication for the request.
ContextBasicAuth takes BasicAuth as authentication for the request.
ContextHttpSignatureAuth takes HttpSignatureAuth as authentication for the request.
ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
ContextOperationServerIndices uses a server configuration from the index mapping.
ContextOperationServerVariables overrides a server configuration variables using operation specific values.
ContextServerIndex uses a server configuration from the index.
ContextServerVariables overrides a server configuration variables.

# Structs

Account An account object.
AccountLinks struct for AccountLinks.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIClient manages communication with the Bitbucket API API v2.0 In most cases there should be only one, shared, APIClient.
APIKey provides API key based authentication to a request passed via context using ContextAPIKey.
APIResponse stores the API response returned by the server.
ApplicationProperty An application property.
Author The author of a change in a repository.
BaseCommit The common base type for both repository and snippet commits.
BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth.
Branch A branch object, representing a branch in a repository.
BranchingModel A repository's branching model.
No description provided by the author
No description provided by the author
No description provided by the author
BranchingModelBranchTypes struct for BranchingModelBranchTypes.
BranchingModelDevelopment struct for BranchingModelDevelopment.
BranchingModelSettings A repository's branching model settings.
BranchingModelSettingsBranchTypes struct for BranchingModelSettingsBranchTypes.
BranchingModelSettingsDevelopment struct for BranchingModelSettingsDevelopment.
BranchingModelSettingsLinks struct for BranchingModelSettingsLinks.
BranchingModelSettingsProduction struct for BranchingModelSettingsProduction.
Branchrestriction struct for Branchrestriction.
BranchRestriction A branch restriction rule.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Comment The base type for all comments.
CommentInline struct for CommentInline.
CommentLinks struct for CommentLinks.
Commit A repository commit object.
CommitComment A commit comment.
CommitFile A file object, representing a file at a commit in a repository.
CommitReport A report for a commit.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Commitstatus struct for Commitstatus.
CommitStatus A commit status object.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
CommitStatusLinks struct for CommitStatusLinks.
Component A component as defined in a repository's issue tracker.
Configuration stores the configuration of the API client.
DdevReport struct for DdevReport.
DeployKey Represents deploy key for a repository.
Deployment A Bitbucket Deployment.
DeploymentEnvironment A Bitbucket Deployment Environment.
DeploymentEnvironmentLock A Bitbucket Deployment Environment Lock.
DeploymentRelease A Bitbucket Deployment Release.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
DeploymentsDdevDeploymentEnvironment struct for DeploymentsDdevDeploymentEnvironment.
DeploymentsDdevDeploymentEnvironmentLock struct for DeploymentsDdevDeploymentEnvironmentLock.
DeploymentsDdevPaginatedEnvironments A paged list of environments.
DeploymentsStgWestDeploymentEnvironment struct for DeploymentsStgWestDeploymentEnvironment.
DeploymentsStgWestDeploymentEnvironmentLock struct for DeploymentsStgWestDeploymentEnvironmentLock.
DeploymentsStgWestPaginatedEnvironments A paged list of environments.
DeploymentState struct for DeploymentState.
DeploymentStateCompleted struct for DeploymentStateCompleted.
DeploymentStateCompletedAllOf A Bitbucket Deployment COMPLETED deployment state.
DeploymentStateCompletedStatus struct for DeploymentStateCompletedStatus.
DeploymentStateCompletedStatusFailed struct for DeploymentStateCompletedStatusFailed.
DeploymentStateCompletedStatusFailedAllOf A FAILED completed deployment status.
DeploymentStateCompletedStatusStopped struct for DeploymentStateCompletedStatusStopped.
DeploymentStateCompletedStatusStoppedAllOf A STOPPED completed deployment status.
DeploymentStateCompletedStatusSuccessful struct for DeploymentStateCompletedStatusSuccessful.
DeploymentStateCompletedStatusSuccessfulAllOf A SUCCESSFUL completed deployment status.
DeploymentStateInProgress struct for DeploymentStateInProgress.
DeploymentStateInProgressAllOf A Bitbucket Deployment IN_PROGRESS deployment state.
DeploymentStateUndeployed struct for DeploymentStateUndeployed.
DeploymentStateUndeployedAllOf A Bitbucket Deployment UNDEPLOYED deployment state.
DeploymentVariable A Pipelines deployment variable.
Diffstat A diffstat object that includes a summary of changes made to a file between two commits.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
ErrorError struct for ErrorError.
ExportOptions Options for issue export.
GenericOpenAPIError Provides access to the body, error and model on returned errors.
Group A group object.
GroupLinks struct for GroupLinks.
HookEvent An event, associated with a resource or subject type.
Issue An issue.
IssueAttachment An issue file attachment's meta data.
IssueChange An issue change.
IssueChangeChanges struct for IssueChangeChanges.
IssueChangeChangesAssignee struct for IssueChangeChangesAssignee.
IssueChangeLinks struct for IssueChangeLinks.
IssueComment A issue comment.
IssueJobStatus The status of an import or export job.
IssueLinks struct for IssueLinks.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
JiraProject struct for JiraProject.
JiraSite struct for JiraSite.
Link A link to a resource related to this object.
Milestone A milestone as defined in a repository's issue tracker.
ModelError Base type for most resource objects.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Object Base type for most resource objects.
Page struct for Page.
PaginatedAnnotations A paginated list of annotations.
PaginatedBranches A paginated list of branches.
PaginatedBranchrestrictions A paginated list of branch restriction rules.
PaginatedChangeset A paginated list of commits.
PaginatedCommitComments A paginated list of commit comments.
PaginatedCommitstatuses A paginated list of commit status objects.
PaginatedComponents A paginated list of issue tracker components.
PaginatedDeployKeys A paginated list of deploy keys.
PaginatedDeployments A paged list of deployments.
PaginatedDeploymentVariable A paged list of deployment variables.
PaginatedDiffstats A paginated list of diffstats.
PaginatedEnvironments A paged list of environments.
PaginatedFiles A paginated list of commit_file objects.
PaginatedHookEvents A paginated list of webhook types available to subscribe on.
PaginatedIssueAttachments A paginated list of issue attachments.
PaginatedIssueComments A paginated list of issue comments.
PaginatedIssues A paginated list of issues.
PaginatedLogEntries A paginated list of issue changes.
PaginatedMilestones A paginated list of issue tracker milestones.
PaginatedPipelineCaches A paged list of pipeline caches.
PaginatedPipelineKnownHosts A paged list of known hosts.
PaginatedPipelines A paged list of pipelines.
PaginatedPipelineScheduleExecutions A paged list of the executions of a schedule.
PaginatedPipelineSchedules A paged list of schedules.
PaginatedPipelineSteps A paged list of pipeline steps.
PaginatedPipelineVariables A paged list of variables.
PaginatedProjects A paginated list of projects.
PaginatedPullrequestComments A paginated list of pullrequest comments.
PaginatedPullrequests A paginated list of pullrequests.
PaginatedRefs A paginated list of refs.
PaginatedReports A paginated list of reports.
PaginatedRepositories A paginated list of repositories.
PaginatedRepositoryGroupPermissions A paginated list of repository group permissions.
PaginatedRepositoryPermissions A paginated list of repository permissions.
PaginatedRepositoryUserPermissions A paginated list of repository user permissions.
PaginatedSnippetComments A paginated list of snippet comments.
PaginatedSnippetCommit A paginated list of snippet commits.
PaginatedSnippets A paginated list of snippets.
PaginatedSshUserKeys A paginated list of SSH keys.
PaginatedTags A paginated list of tags.
PaginatedTeamPermissions A paginated list of team permissions.
PaginatedTeams A paginated list of teams.
PaginatedTreeentries A paginated list of commit_file and/or commit_directory objects.
PaginatedUsers A paginated list of users.
PaginatedVersions A paginated list of issue tracker versions.
PaginatedWebhookSubscriptions A paginated list of webhook subscriptions.
PaginatedWorkspaceMemberships A paginated list of workspace memberships.
PaginatedWorkspaces A paginated list of workspaces.
Participant Object describing a user's role on resources like commits or pull requests.
Pipeline A Bitbucket Pipeline.
PipelineBuildNumber A Pipelines build number.
PipelineCache A representation of metadata for a pipeline cache for given repository.
PipelineCacheContentUri A representation of the location of pipeline cache content.
PipelineCommand An executable pipeline command.
PipelineCommitTarget A Bitbucket Pipelines commit target.
PipelineCompletedError A Bitbucket Pipelines ERROR pipeline result.
PipelineCompletedState A Bitbucket Pipelines COMPLETED pipeline state.
PipelineError An error causing a pipeline failure.
PipelineImage The definition of a Docker image that can be used for a Bitbucket Pipelines step execution context.
PipelineInProgressState A Bitbucket Pipelines IN_PROGRESS pipeline state.
PipelineKnownHost A Pipelines known host.
PipelinePendingState A Bitbucket Pipelines PENDING pipeline state.
PipelineRefTarget A Bitbucket Pipelines reference target.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
PipelineSchedule A Pipelines schedule.
PipelineScheduleExecution struct for PipelineScheduleExecution.
PipelineScheduleExecutionErrored struct for PipelineScheduleExecutionErrored.
PipelineScheduleExecutionErroredAllOf A Pipelines schedule execution that failed to be executed.
PipelineScheduleExecutionExecuted struct for PipelineScheduleExecutionExecuted.
PipelineScheduleExecutionExecutedAllOf A Pipelines executed schedule execution.
PipelinesConfig struct for PipelinesConfig.
PipelinesConfiguration The Pipelines configuration for a repository.
PipelinesDdevPipelineStep struct for PipelinesDdevPipelineStep.
PipelineSelector A representation of the selector that was used to identify the pipeline in the YML file.
PipelineSshKeyPair struct for PipelineSshKeyPair.
PipelineSshPublicKey struct for PipelineSshPublicKey.
PipelinesStgWestPipelineStep struct for PipelinesStgWestPipelineStep.
PipelineState struct for PipelineState.
PipelineStateCompleted struct for PipelineStateCompleted.
PipelineStateCompletedError struct for PipelineStateCompletedError.
PipelineStateCompletedExpired struct for PipelineStateCompletedExpired.
PipelineStateCompletedExpiredAllOf A Bitbucket Pipelines EXPIRED pipeline result.
PipelineStateCompletedFailed struct for PipelineStateCompletedFailed.
PipelineStateCompletedFailedAllOf A Bitbucket Pipelines FAILED pipeline result.
PipelineStateCompletedResult struct for PipelineStateCompletedResult.
PipelineStateCompletedStopped struct for PipelineStateCompletedStopped.
PipelineStateCompletedStoppedAllOf A Bitbucket Pipelines STOPPED pipeline result.
PipelineStateCompletedSuccessful struct for PipelineStateCompletedSuccessful.
PipelineStateCompletedSuccessfulAllOf A Bitbucket Pipelines SUCCESSFUL pipeline result.
PipelineStateInProgress struct for PipelineStateInProgress.
PipelineStateInProgressPaused struct for PipelineStateInProgressPaused.
PipelineStateInProgressPausedAllOf A Bitbucket Pipelines PAUSED stage of a pipeline that is in progress.
PipelineStateInProgressRunning struct for PipelineStateInProgressRunning.
PipelineStateInProgressRunningAllOf A Bitbucket Pipelines RUNNING stage of a pipeline that is in progress.
PipelineStateInProgressStage struct for PipelineStateInProgressStage.
PipelineStatePending struct for PipelineStatePending.
PipelineStep A step of a Bitbucket pipeline.
PipelineStepError An error causing a step failure.
PipelineStepState struct for PipelineStepState.
PipelineStepStateCompleted struct for PipelineStepStateCompleted.
PipelineStepStateCompletedAllOf A Bitbucket Pipelines COMPLETED pipeline step state.
PipelineStepStateCompletedError struct for PipelineStepStateCompletedError.
PipelineStepStateCompletedErrorAllOf A Bitbucket Pipelines ERROR pipeline step result.
PipelineStepStateCompletedExpired struct for PipelineStepStateCompletedExpired.
PipelineStepStateCompletedExpiredAllOf A Bitbucket Pipelines EXPIRED pipeline step result.
PipelineStepStateCompletedFailed struct for PipelineStepStateCompletedFailed.
PipelineStepStateCompletedFailedAllOf A Bitbucket Pipelines FAILED pipeline step result.
PipelineStepStateCompletedNotRun struct for PipelineStepStateCompletedNotRun.
PipelineStepStateCompletedNotRunAllOf A Bitbucket Pipelines NOT_RUN pipeline step result.
PipelineStepStateCompletedResult struct for PipelineStepStateCompletedResult.
PipelineStepStateCompletedStopped struct for PipelineStepStateCompletedStopped.
PipelineStepStateCompletedStoppedAllOf A Bitbucket Pipelines STOPPED pipeline step result.
PipelineStepStateCompletedSuccessful struct for PipelineStepStateCompletedSuccessful.
PipelineStepStateCompletedSuccessfulAllOf A Bitbucket Pipelines SUCCESSFUL pipeline step result.
PipelineStepStateInProgress struct for PipelineStepStateInProgress.
PipelineStepStateInProgressAllOf A Bitbucket Pipelines IN_PROGRESS pipeline step state.
PipelineStepStatePending struct for PipelineStepStatePending.
PipelineStepStatePendingAllOf A Bitbucket Pipelines PENDING pipeline step state.
PipelineStepStateReady struct for PipelineStepStateReady.
PipelineStepStateReadyAllOf A Bitbucket Pipelines READY pipeline step state.
PipelineTarget struct for PipelineTarget.
PipelineTrigger struct for PipelineTrigger.
PipelineTriggerManual struct for PipelineTriggerManual.
PipelineTriggerPush struct for PipelineTriggerPush.
PipelineVariable A Pipelines variable.
Project A Bitbucket project.
ProjectLinks struct for ProjectLinks.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Pullrequest struct for Pullrequest.
PullRequest A pull request object.
PullRequestBranch struct for PullRequestBranch.
PullrequestComment struct for PullrequestComment.
PullRequestComment A pullrequest comment.
PullRequestCommit struct for PullRequestCommit.
PullrequestEndpoint struct for PullrequestEndpoint.
PullRequestLinks struct for PullRequestLinks.
PullrequestMergeParameters The metadata that describes a pull request merge.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Ref A ref object, representing a branch or tag in a repository.
RefLinks struct for RefLinks.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
RenderedPullRequestMarkup User provided pull request text, interpreted in a markup language and rendered in HTML.
RenderedPullRequestMarkupTitle struct for RenderedPullRequestMarkupTitle.
Report struct for Report.
ReportAnnotation A report for a commit.
ReportData A key-value element that will be displayed along with the report.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Repository A Bitbucket repository.
RepositoryGroupPermission A group's permission for a given repository.
RepositoryLinks struct for RepositoryLinks.
RepositoryPermission A user's permission for a given repository.
RepositoryUserPermission A user's direct permission for a given repository.
No description provided by the author
No description provided by the author
No description provided by the author
SearchCodeSearchResult struct for SearchCodeSearchResult.
SearchContentMatch struct for SearchContentMatch.
SearchLine struct for SearchLine.
SearchResultPage struct for SearchResultPage.
SearchSegment struct for SearchSegment.
ServerConfiguration stores the information about a server.
ServerVariable stores the information about a server variable.
Snippet A snippet object.
SnippetComment A comment on a snippet.
SnippetCommit .
SnippetCommitLinks struct for SnippetCommitLinks.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
SshAccountKey struct for SshAccountKey.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
SshKey struct for SshKey.
StgWestReport struct for StgWestReport.
SubjectTypes The mapping of resource/subject types pointing to their individual event types.
SubjectTypesRepository struct for SubjectTypesRepository.
Tag A tag object, representing a tag in a repository.
Team struct for Team.
TeamPermission A user's permission for a given team.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Treeentry Base type for most resource objects.
User A user object.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Version A version as defined in a repository's issue tracker.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
WebhookSubscription A Webhook subscription.
Workspace A Bitbucket workspace.
WorkspaceLinks struct for WorkspaceLinks.
WorkspaceMembership A Bitbucket workspace membership.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Type aliases

AddonApiService AddonApi service.
BranchingModelApiService BranchingModelApi service.
BranchRestrictionsApiService BranchRestrictionsApi service.
CommitsApiService CommitsApi service.
CommitStatusesApiService CommitStatusesApi service.
DeploymentsApiService DeploymentsApi service.
DownloadsApiService DownloadsApi service.
IssueTrackerApiService IssueTrackerApi service.
PipelinesApiService PipelinesApi service.
ProjectsApiService ProjectsApi service.
PropertiesApiService PropertiesApi service.
PullrequestsApiService PullrequestsApi service.
RefsApiService RefsApi service.
ReportsApiService ReportsApi service.
RepositoriesApiService RepositoriesApi service.
SearchApiService SearchApi service.
ServerConfigurations stores multiple ServerConfiguration items.
SnippetsApiService SnippetsApi service.
SourceApiService SourceApi service.
SshApiService SshApi service.
TeamsApiService TeamsApi service.
UsersApiService UsersApi service.
WebhooksApiService WebhooksApi service.
WorkspacesApiService WorkspacesApi service.