├── .github └── workflows │ └── lint_and_test.yml ├── .gitignore ├── .golangci.yml ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── access_requests.go ├── access_requests_test.go ├── appearance.go ├── appearance_test.go ├── applications.go ├── applications_test.go ├── audit_events.go ├── audit_events_test.go ├── avatar.go ├── avatar_test.go ├── award_emojis.go ├── award_emojis_test.go ├── boards.go ├── boards_test.go ├── branches.go ├── branches_test.go ├── broadcast_messages.go ├── broadcast_messages_test.go ├── ci_yml_templates.go ├── ci_yml_templates_test.go ├── client_options.go ├── cluster_agents.go ├── cluster_agents_test.go ├── commits.go ├── commits_test.go ├── container_registry.go ├── container_registry_test.go ├── custom_attributes.go ├── custom_attributes_test.go ├── dependency_list_export.go ├── dependency_list_export_test.go ├── deploy_keys.go ├── deploy_keys_test.go ├── deploy_tokens.go ├── deploy_tokens_test.go ├── deployments.go ├── deployments_merge_requests.go ├── deployments_merge_requests_test.go ├── deployments_test.go ├── discussions.go ├── discussions_test.go ├── dockerfile_templates.go ├── dockerfile_templates_test.go ├── dora_metrics.go ├── dora_metrics_test.go ├── draft_notes.go ├── draft_notes_test.go ├── environments.go ├── environments_test.go ├── epic_issues.go ├── epic_issues_test.go ├── epics.go ├── epics_test.go ├── error_tracking.go ├── error_tracking_test.go ├── event_parsing.go ├── event_parsing_systemhook_test.go ├── event_parsing_webhook_test.go ├── event_systemhook_types.go ├── event_webhook_types.go ├── event_webhook_types_test.go ├── events.go ├── events_test.go ├── examples ├── applications.go ├── basic_auth.go ├── bitbucket_import.go ├── cluster_agents.go ├── deployments_merge_requests.go ├── impersonation.go ├── labels.go ├── languages.go ├── main.go ├── pagination.go ├── personal_access_tokens.go ├── pipelines.go ├── pipelinestestreport.go ├── projects.go ├── repository_archive.go ├── repository_files.go ├── services.go ├── topics.go └── webhook.go ├── external_status_checks.go ├── external_status_checks_test.go ├── feature_flags.go ├── feature_flags_test.go ├── fixtures_test.go ├── freeze_periods.go ├── freeze_periods_test.go ├── generic_packages.go ├── generic_packages_test.go ├── geo_nodes.go ├── geo_nodes_test.go ├── gitignore_templates.go ├── gitignore_templates_test.go ├── gitlab.go ├── gitlab_test.go ├── go.mod ├── go.sum ├── group_access_tokens.go ├── group_access_tokens_test.go ├── group_badges.go ├── group_badges_test.go ├── group_boards.go ├── group_boards_test.go ├── group_clusters.go ├── group_clusters_test.go ├── group_epic_boards.go ├── group_epic_boards_test.go ├── group_hooks.go ├── group_hooks_test.go ├── group_import_export.go ├── group_import_export_test.go ├── group_iterations.go ├── group_iterations_test.go ├── group_labels.go ├── group_labels_test.go ├── group_members.go ├── group_members_test.go ├── group_milestones.go ├── group_milestones_test.go ├── group_protected_environments.go ├── group_protected_environments_test.go ├── group_repository_storage_move.go ├── group_repository_storage_move_test.go ├── group_serviceaccounts.go ├── group_serviceaccounts_test.go ├── group_ssh_certificates.go ├── group_ssh_certificates_test.go ├── group_variables.go ├── group_variables_test.go ├── group_wikis.go ├── group_wikis_test.go ├── groups.go ├── groups_test.go ├── import.go ├── import_test.go ├── instance_clusters.go ├── instance_clusters_test.go ├── instance_variables.go ├── instance_variables_test.go ├── invites.go ├── invites_test.go ├── issue_links.go ├── issue_links_test.go ├── issues.go ├── issues_statistics.go ├── issues_statistics_test.go ├── issues_test.go ├── job_token_scope.go ├── job_token_scope_test.go ├── jobs.go ├── jobs_test.go ├── keys.go ├── keys_test.go ├── labels.go ├── labels_test.go ├── license.go ├── license_templates.go ├── license_templates_test.go ├── license_test.go ├── markdown.go ├── markdown_test.go ├── member_roles.go ├── member_roles_test.go ├── merge_request_approvals.go ├── merge_request_approvals_test.go ├── merge_requests.go ├── merge_requests_test.go ├── merge_trains.go ├── merge_trains_test.go ├── metadata.go ├── metadata_test.go ├── milestones.go ├── milestones_test.go ├── namespaces.go ├── namespaces_test.go ├── notes.go ├── notes_test.go ├── notifications.go ├── notifications_test.go ├── packages.go ├── packages_test.go ├── pages.go ├── pages_domains.go ├── pages_domains_test.go ├── pages_test.go ├── personal_access_tokens.go ├── personal_access_tokens_test.go ├── pipeline_schedules.go ├── pipeline_schedules_test.go ├── pipeline_triggers.go ├── pipeline_triggers_test.go ├── pipelines.go ├── pipelines_test.go ├── plan_limits.go ├── plan_limits_test.go ├── project_access_tokens.go ├── project_access_tokens_test.go ├── project_badges.go ├── project_badges_test.go ├── project_clusters.go ├── project_clusters_test.go ├── project_feature_flags.go ├── project_feature_flags_test.go ├── project_import_export.go ├── project_import_export_test.go ├── project_iterations.go ├── project_iterations_test.go ├── project_managed_licenses.go ├── project_managed_licenses_test.go ├── project_markdown_uploads.go ├── project_markdown_uploads_test.go ├── project_members.go ├── project_members_test.go ├── project_mirror.go ├── project_mirror_test.go ├── project_repository_storage_move.go ├── project_repository_storage_move_test.go ├── project_snippets.go ├── project_snippets_test.go ├── project_templates.go ├── project_templates_test.go ├── project_variables.go ├── project_variables_test.go ├── project_vulnerabilities.go ├── project_vulnerabilities_test.go ├── projects.go ├── projects_test.go ├── protected_branches.go ├── protected_branches_test.go ├── protected_environments.go ├── protected_environments_test.go ├── protected_tags.go ├── protected_tags_test.go ├── releaselinks.go ├── releaselinks_test.go ├── releases.go ├── releases_test.go ├── repositories.go ├── repositories_test.go ├── repository_files.go ├── repository_files_test.go ├── repository_submodules.go ├── repository_submodules_test.go ├── request_options.go ├── request_options_test.go ├── resource_group.go ├── resource_group_test.go ├── resource_iteration_events.go ├── resource_iteration_events_test.go ├── resource_label_events.go ├── resource_label_events_test.go ├── resource_milestone_events.go ├── resource_milestone_events_test.go ├── resource_state_events.go ├── resource_state_events_test.go ├── resource_weight_events.go ├── resource_weight_events_test.go ├── runners.go ├── runners_test.go ├── search.go ├── search_test.go ├── services.go ├── services_test.go ├── settings.go ├── settings_test.go ├── sidekiq_metrics.go ├── sidekiq_metrics_test.go ├── snippet_repository_storage_move.go ├── snippet_repository_storage_move_test.go ├── snippets.go ├── snippets_test.go ├── strings.go ├── strings_test.go ├── system_hooks.go ├── system_hooks_test.go ├── tags.go ├── tags_test.go ├── testdata ├── add_merge_request_in_merge_train.json ├── add_project_managed_license.json ├── create_dependency_list_export.json ├── create_draft_note.json ├── create_group_access_token.json ├── create_group_ssh_certificates.json ├── create_member_role.json ├── create_project_access_token.json ├── create_project_feature_flag.json ├── create_service_account_user.json ├── download_dependency_list_export.json ├── edit_project_managed_license.json ├── get_branch.json ├── get_commit.json ├── get_compound_metrics.json ├── get_dependency_list_export.json ├── get_draft_note.json ├── get_geo_node_status.json ├── get_group_access_token.json ├── get_merge_request.json ├── get_merge_request_in_merge_train.json ├── get_merge_requests.json ├── get_merge_requests_author_username.json ├── get_merge_requests_not_author_username.json ├── get_pipeline_testreport.json ├── get_project_access_token.json ├── get_project_feature_flag.json ├── get_project_managed_license.json ├── get_serviceaccounts.json ├── get_signature.json ├── get_user.json ├── get_user_admin.json ├── get_user_associations_count.json ├── get_user_memberships.json ├── issue_move.json ├── list_branches.json ├── list_draft_notes.json ├── list_geo_nodes_status.json ├── list_group_access_tokens.json ├── list_group_iterations.json ├── list_group_ssh_certificates.json ├── list_member_roles.json ├── list_merge_request_diff.json ├── list_merge_requests_in_merge_train.json ├── list_merge_trains_in_project.json ├── list_personal_access_tokens_single.json ├── list_personal_access_tokens_with_user_filter.json ├── list_personal_access_tokens_without_user_filter.json ├── list_project_access_tokens.json ├── list_project_feature_flags.json ├── list_project_managed_licenses.json ├── list_todos.json ├── post_user_personal_access_tokens.json ├── rotate_group_access_token.json ├── rotate_personal_access_token.json ├── rotate_project_access_token.json ├── search_users.json ├── systemhooks │ ├── group_create.json │ ├── group_destroy.json │ ├── group_rename.json │ ├── key_create.json │ ├── key_destroy.json │ ├── merge_request.json │ ├── project_create.json │ ├── project_destroy.json │ ├── project_rename.json │ ├── project_transfer.json │ ├── project_update.json │ ├── push.json │ ├── repository_update.json │ ├── tag_push.json │ ├── user_add_to_group.json │ ├── user_add_to_team.json │ ├── user_create.json │ ├── user_destroy.json │ ├── user_failed_login.json │ ├── user_remove_from_group.json │ ├── user_remove_from_team.json │ ├── user_rename.json │ ├── user_update_for_group.json │ └── user_update_for_team.json ├── update_draft_note.json ├── update_project_feature_flag.json └── webhooks │ ├── build.json │ ├── deployment.json │ ├── feature_flag.json │ ├── group_merge_request.json │ ├── issue.json │ ├── job.json │ ├── member.json │ ├── merge_request.json │ ├── note_commit.json │ ├── note_issue.json │ ├── note_merge_request.json │ ├── note_snippet.json │ ├── pipeline.json │ ├── push.json │ ├── release.json │ ├── resource_access_token_group.json │ ├── resource_access_token_project.json │ ├── service_merge_request.json │ ├── subgroup.json │ ├── tag_push.json │ └── wiki_page.json ├── time_stats.go ├── todos.go ├── todos_test.go ├── topics.go ├── topics_test.go ├── types.go ├── types_test.go ├── users.go ├── users_test.go ├── validate.go ├── validate_test.go ├── version.go ├── version_test.go ├── wikis.go └── wikis_test.go /.github/workflows/lint_and_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/.github/workflows/lint_and_test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/.golangci.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/README.md -------------------------------------------------------------------------------- /access_requests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/access_requests.go -------------------------------------------------------------------------------- /access_requests_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/access_requests_test.go -------------------------------------------------------------------------------- /appearance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/appearance.go -------------------------------------------------------------------------------- /appearance_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/appearance_test.go -------------------------------------------------------------------------------- /applications.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/applications.go -------------------------------------------------------------------------------- /applications_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/applications_test.go -------------------------------------------------------------------------------- /audit_events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/audit_events.go -------------------------------------------------------------------------------- /audit_events_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/audit_events_test.go -------------------------------------------------------------------------------- /avatar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/avatar.go -------------------------------------------------------------------------------- /avatar_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/avatar_test.go -------------------------------------------------------------------------------- /award_emojis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/award_emojis.go -------------------------------------------------------------------------------- /award_emojis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/award_emojis_test.go -------------------------------------------------------------------------------- /boards.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/boards.go -------------------------------------------------------------------------------- /boards_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/boards_test.go -------------------------------------------------------------------------------- /branches.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/branches.go -------------------------------------------------------------------------------- /branches_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/branches_test.go -------------------------------------------------------------------------------- /broadcast_messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/broadcast_messages.go -------------------------------------------------------------------------------- /broadcast_messages_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/broadcast_messages_test.go -------------------------------------------------------------------------------- /ci_yml_templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/ci_yml_templates.go -------------------------------------------------------------------------------- /ci_yml_templates_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/ci_yml_templates_test.go -------------------------------------------------------------------------------- /client_options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/client_options.go -------------------------------------------------------------------------------- /cluster_agents.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/cluster_agents.go -------------------------------------------------------------------------------- /cluster_agents_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/cluster_agents_test.go -------------------------------------------------------------------------------- /commits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/commits.go -------------------------------------------------------------------------------- /commits_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/commits_test.go -------------------------------------------------------------------------------- /container_registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/container_registry.go -------------------------------------------------------------------------------- /container_registry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/container_registry_test.go -------------------------------------------------------------------------------- /custom_attributes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/custom_attributes.go -------------------------------------------------------------------------------- /custom_attributes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/custom_attributes_test.go -------------------------------------------------------------------------------- /dependency_list_export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/dependency_list_export.go -------------------------------------------------------------------------------- /dependency_list_export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/dependency_list_export_test.go -------------------------------------------------------------------------------- /deploy_keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/deploy_keys.go -------------------------------------------------------------------------------- /deploy_keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/deploy_keys_test.go -------------------------------------------------------------------------------- /deploy_tokens.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/deploy_tokens.go -------------------------------------------------------------------------------- /deploy_tokens_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/deploy_tokens_test.go -------------------------------------------------------------------------------- /deployments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/deployments.go -------------------------------------------------------------------------------- /deployments_merge_requests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/deployments_merge_requests.go -------------------------------------------------------------------------------- /deployments_merge_requests_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/deployments_merge_requests_test.go -------------------------------------------------------------------------------- /deployments_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/deployments_test.go -------------------------------------------------------------------------------- /discussions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/discussions.go -------------------------------------------------------------------------------- /discussions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/discussions_test.go -------------------------------------------------------------------------------- /dockerfile_templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/dockerfile_templates.go -------------------------------------------------------------------------------- /dockerfile_templates_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/dockerfile_templates_test.go -------------------------------------------------------------------------------- /dora_metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/dora_metrics.go -------------------------------------------------------------------------------- /dora_metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/dora_metrics_test.go -------------------------------------------------------------------------------- /draft_notes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/draft_notes.go -------------------------------------------------------------------------------- /draft_notes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/draft_notes_test.go -------------------------------------------------------------------------------- /environments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/environments.go -------------------------------------------------------------------------------- /environments_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/environments_test.go -------------------------------------------------------------------------------- /epic_issues.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/epic_issues.go -------------------------------------------------------------------------------- /epic_issues_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/epic_issues_test.go -------------------------------------------------------------------------------- /epics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/epics.go -------------------------------------------------------------------------------- /epics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/epics_test.go -------------------------------------------------------------------------------- /error_tracking.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/error_tracking.go -------------------------------------------------------------------------------- /error_tracking_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/error_tracking_test.go -------------------------------------------------------------------------------- /event_parsing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/event_parsing.go -------------------------------------------------------------------------------- /event_parsing_systemhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/event_parsing_systemhook_test.go -------------------------------------------------------------------------------- /event_parsing_webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/event_parsing_webhook_test.go -------------------------------------------------------------------------------- /event_systemhook_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/event_systemhook_types.go -------------------------------------------------------------------------------- /event_webhook_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/event_webhook_types.go -------------------------------------------------------------------------------- /event_webhook_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/event_webhook_types_test.go -------------------------------------------------------------------------------- /events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/events.go -------------------------------------------------------------------------------- /events_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/events_test.go -------------------------------------------------------------------------------- /examples/applications.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/examples/applications.go -------------------------------------------------------------------------------- /examples/basic_auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/examples/basic_auth.go -------------------------------------------------------------------------------- /examples/bitbucket_import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/examples/bitbucket_import.go -------------------------------------------------------------------------------- /examples/cluster_agents.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/examples/cluster_agents.go -------------------------------------------------------------------------------- /examples/deployments_merge_requests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/examples/deployments_merge_requests.go -------------------------------------------------------------------------------- /examples/impersonation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/examples/impersonation.go -------------------------------------------------------------------------------- /examples/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/examples/labels.go -------------------------------------------------------------------------------- /examples/languages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/examples/languages.go -------------------------------------------------------------------------------- /examples/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/examples/main.go -------------------------------------------------------------------------------- /examples/pagination.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/examples/pagination.go -------------------------------------------------------------------------------- /examples/personal_access_tokens.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/examples/personal_access_tokens.go -------------------------------------------------------------------------------- /examples/pipelines.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/examples/pipelines.go -------------------------------------------------------------------------------- /examples/pipelinestestreport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/examples/pipelinestestreport.go -------------------------------------------------------------------------------- /examples/projects.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/examples/projects.go -------------------------------------------------------------------------------- /examples/repository_archive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/examples/repository_archive.go -------------------------------------------------------------------------------- /examples/repository_files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/examples/repository_files.go -------------------------------------------------------------------------------- /examples/services.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/examples/services.go -------------------------------------------------------------------------------- /examples/topics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/examples/topics.go -------------------------------------------------------------------------------- /examples/webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/examples/webhook.go -------------------------------------------------------------------------------- /external_status_checks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/external_status_checks.go -------------------------------------------------------------------------------- /external_status_checks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/external_status_checks_test.go -------------------------------------------------------------------------------- /feature_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/feature_flags.go -------------------------------------------------------------------------------- /feature_flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/feature_flags_test.go -------------------------------------------------------------------------------- /fixtures_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/fixtures_test.go -------------------------------------------------------------------------------- /freeze_periods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/freeze_periods.go -------------------------------------------------------------------------------- /freeze_periods_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/freeze_periods_test.go -------------------------------------------------------------------------------- /generic_packages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/generic_packages.go -------------------------------------------------------------------------------- /generic_packages_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/generic_packages_test.go -------------------------------------------------------------------------------- /geo_nodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/geo_nodes.go -------------------------------------------------------------------------------- /geo_nodes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/geo_nodes_test.go -------------------------------------------------------------------------------- /gitignore_templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/gitignore_templates.go -------------------------------------------------------------------------------- /gitignore_templates_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/gitignore_templates_test.go -------------------------------------------------------------------------------- /gitlab.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/gitlab.go -------------------------------------------------------------------------------- /gitlab_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/gitlab_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/go.sum -------------------------------------------------------------------------------- /group_access_tokens.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/group_access_tokens.go -------------------------------------------------------------------------------- /group_access_tokens_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/group_access_tokens_test.go -------------------------------------------------------------------------------- /group_badges.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/group_badges.go -------------------------------------------------------------------------------- /group_badges_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/group_badges_test.go -------------------------------------------------------------------------------- /group_boards.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/group_boards.go -------------------------------------------------------------------------------- /group_boards_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/group_boards_test.go -------------------------------------------------------------------------------- /group_clusters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/group_clusters.go -------------------------------------------------------------------------------- /group_clusters_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/group_clusters_test.go -------------------------------------------------------------------------------- /group_epic_boards.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/group_epic_boards.go -------------------------------------------------------------------------------- /group_epic_boards_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/group_epic_boards_test.go -------------------------------------------------------------------------------- /group_hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/group_hooks.go -------------------------------------------------------------------------------- /group_hooks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/group_hooks_test.go -------------------------------------------------------------------------------- /group_import_export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/group_import_export.go -------------------------------------------------------------------------------- /group_import_export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/group_import_export_test.go -------------------------------------------------------------------------------- /group_iterations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/group_iterations.go -------------------------------------------------------------------------------- /group_iterations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/group_iterations_test.go -------------------------------------------------------------------------------- /group_labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/group_labels.go -------------------------------------------------------------------------------- /group_labels_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/group_labels_test.go -------------------------------------------------------------------------------- /group_members.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/group_members.go -------------------------------------------------------------------------------- /group_members_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/group_members_test.go -------------------------------------------------------------------------------- /group_milestones.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/group_milestones.go -------------------------------------------------------------------------------- /group_milestones_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/group_milestones_test.go -------------------------------------------------------------------------------- /group_protected_environments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/group_protected_environments.go -------------------------------------------------------------------------------- /group_protected_environments_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/group_protected_environments_test.go -------------------------------------------------------------------------------- /group_repository_storage_move.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/group_repository_storage_move.go -------------------------------------------------------------------------------- /group_repository_storage_move_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/group_repository_storage_move_test.go -------------------------------------------------------------------------------- /group_serviceaccounts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/group_serviceaccounts.go -------------------------------------------------------------------------------- /group_serviceaccounts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/group_serviceaccounts_test.go -------------------------------------------------------------------------------- /group_ssh_certificates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/group_ssh_certificates.go -------------------------------------------------------------------------------- /group_ssh_certificates_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/group_ssh_certificates_test.go -------------------------------------------------------------------------------- /group_variables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/group_variables.go -------------------------------------------------------------------------------- /group_variables_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/group_variables_test.go -------------------------------------------------------------------------------- /group_wikis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/group_wikis.go -------------------------------------------------------------------------------- /group_wikis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/group_wikis_test.go -------------------------------------------------------------------------------- /groups.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/groups.go -------------------------------------------------------------------------------- /groups_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/groups_test.go -------------------------------------------------------------------------------- /import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/import.go -------------------------------------------------------------------------------- /import_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/import_test.go -------------------------------------------------------------------------------- /instance_clusters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/instance_clusters.go -------------------------------------------------------------------------------- /instance_clusters_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/instance_clusters_test.go -------------------------------------------------------------------------------- /instance_variables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/instance_variables.go -------------------------------------------------------------------------------- /instance_variables_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/instance_variables_test.go -------------------------------------------------------------------------------- /invites.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/invites.go -------------------------------------------------------------------------------- /invites_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/invites_test.go -------------------------------------------------------------------------------- /issue_links.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/issue_links.go -------------------------------------------------------------------------------- /issue_links_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/issue_links_test.go -------------------------------------------------------------------------------- /issues.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/issues.go -------------------------------------------------------------------------------- /issues_statistics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/issues_statistics.go -------------------------------------------------------------------------------- /issues_statistics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/issues_statistics_test.go -------------------------------------------------------------------------------- /issues_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/issues_test.go -------------------------------------------------------------------------------- /job_token_scope.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/job_token_scope.go -------------------------------------------------------------------------------- /job_token_scope_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/job_token_scope_test.go -------------------------------------------------------------------------------- /jobs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/jobs.go -------------------------------------------------------------------------------- /jobs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/jobs_test.go -------------------------------------------------------------------------------- /keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/keys.go -------------------------------------------------------------------------------- /keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/keys_test.go -------------------------------------------------------------------------------- /labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/labels.go -------------------------------------------------------------------------------- /labels_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/labels_test.go -------------------------------------------------------------------------------- /license.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/license.go -------------------------------------------------------------------------------- /license_templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/license_templates.go -------------------------------------------------------------------------------- /license_templates_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/license_templates_test.go -------------------------------------------------------------------------------- /license_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/license_test.go -------------------------------------------------------------------------------- /markdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/markdown.go -------------------------------------------------------------------------------- /markdown_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/markdown_test.go -------------------------------------------------------------------------------- /member_roles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/member_roles.go -------------------------------------------------------------------------------- /member_roles_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/member_roles_test.go -------------------------------------------------------------------------------- /merge_request_approvals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/merge_request_approvals.go -------------------------------------------------------------------------------- /merge_request_approvals_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/merge_request_approvals_test.go -------------------------------------------------------------------------------- /merge_requests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/merge_requests.go -------------------------------------------------------------------------------- /merge_requests_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/merge_requests_test.go -------------------------------------------------------------------------------- /merge_trains.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/merge_trains.go -------------------------------------------------------------------------------- /merge_trains_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/merge_trains_test.go -------------------------------------------------------------------------------- /metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/metadata.go -------------------------------------------------------------------------------- /metadata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/metadata_test.go -------------------------------------------------------------------------------- /milestones.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/milestones.go -------------------------------------------------------------------------------- /milestones_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/milestones_test.go -------------------------------------------------------------------------------- /namespaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/namespaces.go -------------------------------------------------------------------------------- /namespaces_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/namespaces_test.go -------------------------------------------------------------------------------- /notes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/notes.go -------------------------------------------------------------------------------- /notes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/notes_test.go -------------------------------------------------------------------------------- /notifications.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/notifications.go -------------------------------------------------------------------------------- /notifications_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/notifications_test.go -------------------------------------------------------------------------------- /packages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/packages.go -------------------------------------------------------------------------------- /packages_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/packages_test.go -------------------------------------------------------------------------------- /pages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/pages.go -------------------------------------------------------------------------------- /pages_domains.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/pages_domains.go -------------------------------------------------------------------------------- /pages_domains_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/pages_domains_test.go -------------------------------------------------------------------------------- /pages_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/pages_test.go -------------------------------------------------------------------------------- /personal_access_tokens.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/personal_access_tokens.go -------------------------------------------------------------------------------- /personal_access_tokens_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/personal_access_tokens_test.go -------------------------------------------------------------------------------- /pipeline_schedules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/pipeline_schedules.go -------------------------------------------------------------------------------- /pipeline_schedules_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/pipeline_schedules_test.go -------------------------------------------------------------------------------- /pipeline_triggers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/pipeline_triggers.go -------------------------------------------------------------------------------- /pipeline_triggers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/pipeline_triggers_test.go -------------------------------------------------------------------------------- /pipelines.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/pipelines.go -------------------------------------------------------------------------------- /pipelines_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/pipelines_test.go -------------------------------------------------------------------------------- /plan_limits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/plan_limits.go -------------------------------------------------------------------------------- /plan_limits_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/plan_limits_test.go -------------------------------------------------------------------------------- /project_access_tokens.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/project_access_tokens.go -------------------------------------------------------------------------------- /project_access_tokens_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/project_access_tokens_test.go -------------------------------------------------------------------------------- /project_badges.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/project_badges.go -------------------------------------------------------------------------------- /project_badges_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/project_badges_test.go -------------------------------------------------------------------------------- /project_clusters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/project_clusters.go -------------------------------------------------------------------------------- /project_clusters_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/project_clusters_test.go -------------------------------------------------------------------------------- /project_feature_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/project_feature_flags.go -------------------------------------------------------------------------------- /project_feature_flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/project_feature_flags_test.go -------------------------------------------------------------------------------- /project_import_export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/project_import_export.go -------------------------------------------------------------------------------- /project_import_export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/project_import_export_test.go -------------------------------------------------------------------------------- /project_iterations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/project_iterations.go -------------------------------------------------------------------------------- /project_iterations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/project_iterations_test.go -------------------------------------------------------------------------------- /project_managed_licenses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/project_managed_licenses.go -------------------------------------------------------------------------------- /project_managed_licenses_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/project_managed_licenses_test.go -------------------------------------------------------------------------------- /project_markdown_uploads.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/project_markdown_uploads.go -------------------------------------------------------------------------------- /project_markdown_uploads_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/project_markdown_uploads_test.go -------------------------------------------------------------------------------- /project_members.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/project_members.go -------------------------------------------------------------------------------- /project_members_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/project_members_test.go -------------------------------------------------------------------------------- /project_mirror.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/project_mirror.go -------------------------------------------------------------------------------- /project_mirror_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/project_mirror_test.go -------------------------------------------------------------------------------- /project_repository_storage_move.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/project_repository_storage_move.go -------------------------------------------------------------------------------- /project_repository_storage_move_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/project_repository_storage_move_test.go -------------------------------------------------------------------------------- /project_snippets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/project_snippets.go -------------------------------------------------------------------------------- /project_snippets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/project_snippets_test.go -------------------------------------------------------------------------------- /project_templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/project_templates.go -------------------------------------------------------------------------------- /project_templates_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/project_templates_test.go -------------------------------------------------------------------------------- /project_variables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/project_variables.go -------------------------------------------------------------------------------- /project_variables_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/project_variables_test.go -------------------------------------------------------------------------------- /project_vulnerabilities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/project_vulnerabilities.go -------------------------------------------------------------------------------- /project_vulnerabilities_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/project_vulnerabilities_test.go -------------------------------------------------------------------------------- /projects.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/projects.go -------------------------------------------------------------------------------- /projects_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/projects_test.go -------------------------------------------------------------------------------- /protected_branches.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/protected_branches.go -------------------------------------------------------------------------------- /protected_branches_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/protected_branches_test.go -------------------------------------------------------------------------------- /protected_environments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/protected_environments.go -------------------------------------------------------------------------------- /protected_environments_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/protected_environments_test.go -------------------------------------------------------------------------------- /protected_tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/protected_tags.go -------------------------------------------------------------------------------- /protected_tags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/protected_tags_test.go -------------------------------------------------------------------------------- /releaselinks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/releaselinks.go -------------------------------------------------------------------------------- /releaselinks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/releaselinks_test.go -------------------------------------------------------------------------------- /releases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/releases.go -------------------------------------------------------------------------------- /releases_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/releases_test.go -------------------------------------------------------------------------------- /repositories.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/repositories.go -------------------------------------------------------------------------------- /repositories_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/repositories_test.go -------------------------------------------------------------------------------- /repository_files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/repository_files.go -------------------------------------------------------------------------------- /repository_files_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/repository_files_test.go -------------------------------------------------------------------------------- /repository_submodules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/repository_submodules.go -------------------------------------------------------------------------------- /repository_submodules_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/repository_submodules_test.go -------------------------------------------------------------------------------- /request_options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/request_options.go -------------------------------------------------------------------------------- /request_options_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/request_options_test.go -------------------------------------------------------------------------------- /resource_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/resource_group.go -------------------------------------------------------------------------------- /resource_group_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/resource_group_test.go -------------------------------------------------------------------------------- /resource_iteration_events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/resource_iteration_events.go -------------------------------------------------------------------------------- /resource_iteration_events_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/resource_iteration_events_test.go -------------------------------------------------------------------------------- /resource_label_events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/resource_label_events.go -------------------------------------------------------------------------------- /resource_label_events_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/resource_label_events_test.go -------------------------------------------------------------------------------- /resource_milestone_events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/resource_milestone_events.go -------------------------------------------------------------------------------- /resource_milestone_events_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/resource_milestone_events_test.go -------------------------------------------------------------------------------- /resource_state_events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/resource_state_events.go -------------------------------------------------------------------------------- /resource_state_events_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/resource_state_events_test.go -------------------------------------------------------------------------------- /resource_weight_events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/resource_weight_events.go -------------------------------------------------------------------------------- /resource_weight_events_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/resource_weight_events_test.go -------------------------------------------------------------------------------- /runners.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/runners.go -------------------------------------------------------------------------------- /runners_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/runners_test.go -------------------------------------------------------------------------------- /search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/search.go -------------------------------------------------------------------------------- /search_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/search_test.go -------------------------------------------------------------------------------- /services.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/services.go -------------------------------------------------------------------------------- /services_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/services_test.go -------------------------------------------------------------------------------- /settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/settings.go -------------------------------------------------------------------------------- /settings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/settings_test.go -------------------------------------------------------------------------------- /sidekiq_metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/sidekiq_metrics.go -------------------------------------------------------------------------------- /sidekiq_metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/sidekiq_metrics_test.go -------------------------------------------------------------------------------- /snippet_repository_storage_move.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/snippet_repository_storage_move.go -------------------------------------------------------------------------------- /snippet_repository_storage_move_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/snippet_repository_storage_move_test.go -------------------------------------------------------------------------------- /snippets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/snippets.go -------------------------------------------------------------------------------- /snippets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/snippets_test.go -------------------------------------------------------------------------------- /strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/strings.go -------------------------------------------------------------------------------- /strings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/strings_test.go -------------------------------------------------------------------------------- /system_hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/system_hooks.go -------------------------------------------------------------------------------- /system_hooks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/system_hooks_test.go -------------------------------------------------------------------------------- /tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/tags.go -------------------------------------------------------------------------------- /tags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/tags_test.go -------------------------------------------------------------------------------- /testdata/add_merge_request_in_merge_train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/add_merge_request_in_merge_train.json -------------------------------------------------------------------------------- /testdata/add_project_managed_license.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/add_project_managed_license.json -------------------------------------------------------------------------------- /testdata/create_dependency_list_export.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/create_dependency_list_export.json -------------------------------------------------------------------------------- /testdata/create_draft_note.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/create_draft_note.json -------------------------------------------------------------------------------- /testdata/create_group_access_token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/create_group_access_token.json -------------------------------------------------------------------------------- /testdata/create_group_ssh_certificates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/create_group_ssh_certificates.json -------------------------------------------------------------------------------- /testdata/create_member_role.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/create_member_role.json -------------------------------------------------------------------------------- /testdata/create_project_access_token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/create_project_access_token.json -------------------------------------------------------------------------------- /testdata/create_project_feature_flag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/create_project_feature_flag.json -------------------------------------------------------------------------------- /testdata/create_service_account_user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/create_service_account_user.json -------------------------------------------------------------------------------- /testdata/download_dependency_list_export.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/download_dependency_list_export.json -------------------------------------------------------------------------------- /testdata/edit_project_managed_license.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/edit_project_managed_license.json -------------------------------------------------------------------------------- /testdata/get_branch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/get_branch.json -------------------------------------------------------------------------------- /testdata/get_commit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/get_commit.json -------------------------------------------------------------------------------- /testdata/get_compound_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/get_compound_metrics.json -------------------------------------------------------------------------------- /testdata/get_dependency_list_export.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/get_dependency_list_export.json -------------------------------------------------------------------------------- /testdata/get_draft_note.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/get_draft_note.json -------------------------------------------------------------------------------- /testdata/get_geo_node_status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/get_geo_node_status.json -------------------------------------------------------------------------------- /testdata/get_group_access_token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/get_group_access_token.json -------------------------------------------------------------------------------- /testdata/get_merge_request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/get_merge_request.json -------------------------------------------------------------------------------- /testdata/get_merge_request_in_merge_train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/get_merge_request_in_merge_train.json -------------------------------------------------------------------------------- /testdata/get_merge_requests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/get_merge_requests.json -------------------------------------------------------------------------------- /testdata/get_merge_requests_author_username.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/get_merge_requests_author_username.json -------------------------------------------------------------------------------- /testdata/get_merge_requests_not_author_username.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/get_merge_requests_not_author_username.json -------------------------------------------------------------------------------- /testdata/get_pipeline_testreport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/get_pipeline_testreport.json -------------------------------------------------------------------------------- /testdata/get_project_access_token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/get_project_access_token.json -------------------------------------------------------------------------------- /testdata/get_project_feature_flag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/get_project_feature_flag.json -------------------------------------------------------------------------------- /testdata/get_project_managed_license.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/get_project_managed_license.json -------------------------------------------------------------------------------- /testdata/get_serviceaccounts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/get_serviceaccounts.json -------------------------------------------------------------------------------- /testdata/get_signature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/get_signature.json -------------------------------------------------------------------------------- /testdata/get_user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/get_user.json -------------------------------------------------------------------------------- /testdata/get_user_admin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/get_user_admin.json -------------------------------------------------------------------------------- /testdata/get_user_associations_count.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/get_user_associations_count.json -------------------------------------------------------------------------------- /testdata/get_user_memberships.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/get_user_memberships.json -------------------------------------------------------------------------------- /testdata/issue_move.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/issue_move.json -------------------------------------------------------------------------------- /testdata/list_branches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/list_branches.json -------------------------------------------------------------------------------- /testdata/list_draft_notes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/list_draft_notes.json -------------------------------------------------------------------------------- /testdata/list_geo_nodes_status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/list_geo_nodes_status.json -------------------------------------------------------------------------------- /testdata/list_group_access_tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/list_group_access_tokens.json -------------------------------------------------------------------------------- /testdata/list_group_iterations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/list_group_iterations.json -------------------------------------------------------------------------------- /testdata/list_group_ssh_certificates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/list_group_ssh_certificates.json -------------------------------------------------------------------------------- /testdata/list_member_roles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/list_member_roles.json -------------------------------------------------------------------------------- /testdata/list_merge_request_diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/list_merge_request_diff.json -------------------------------------------------------------------------------- /testdata/list_merge_requests_in_merge_train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/list_merge_requests_in_merge_train.json -------------------------------------------------------------------------------- /testdata/list_merge_trains_in_project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/list_merge_trains_in_project.json -------------------------------------------------------------------------------- /testdata/list_personal_access_tokens_single.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/list_personal_access_tokens_single.json -------------------------------------------------------------------------------- /testdata/list_personal_access_tokens_with_user_filter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/list_personal_access_tokens_with_user_filter.json -------------------------------------------------------------------------------- /testdata/list_personal_access_tokens_without_user_filter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/list_personal_access_tokens_without_user_filter.json -------------------------------------------------------------------------------- /testdata/list_project_access_tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/list_project_access_tokens.json -------------------------------------------------------------------------------- /testdata/list_project_feature_flags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/list_project_feature_flags.json -------------------------------------------------------------------------------- /testdata/list_project_managed_licenses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/list_project_managed_licenses.json -------------------------------------------------------------------------------- /testdata/list_todos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/list_todos.json -------------------------------------------------------------------------------- /testdata/post_user_personal_access_tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/post_user_personal_access_tokens.json -------------------------------------------------------------------------------- /testdata/rotate_group_access_token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/rotate_group_access_token.json -------------------------------------------------------------------------------- /testdata/rotate_personal_access_token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/rotate_personal_access_token.json -------------------------------------------------------------------------------- /testdata/rotate_project_access_token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/rotate_project_access_token.json -------------------------------------------------------------------------------- /testdata/search_users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/search_users.json -------------------------------------------------------------------------------- /testdata/systemhooks/group_create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/systemhooks/group_create.json -------------------------------------------------------------------------------- /testdata/systemhooks/group_destroy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/systemhooks/group_destroy.json -------------------------------------------------------------------------------- /testdata/systemhooks/group_rename.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/systemhooks/group_rename.json -------------------------------------------------------------------------------- /testdata/systemhooks/key_create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/systemhooks/key_create.json -------------------------------------------------------------------------------- /testdata/systemhooks/key_destroy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/systemhooks/key_destroy.json -------------------------------------------------------------------------------- /testdata/systemhooks/merge_request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/systemhooks/merge_request.json -------------------------------------------------------------------------------- /testdata/systemhooks/project_create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/systemhooks/project_create.json -------------------------------------------------------------------------------- /testdata/systemhooks/project_destroy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/systemhooks/project_destroy.json -------------------------------------------------------------------------------- /testdata/systemhooks/project_rename.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/systemhooks/project_rename.json -------------------------------------------------------------------------------- /testdata/systemhooks/project_transfer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/systemhooks/project_transfer.json -------------------------------------------------------------------------------- /testdata/systemhooks/project_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/systemhooks/project_update.json -------------------------------------------------------------------------------- /testdata/systemhooks/push.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/systemhooks/push.json -------------------------------------------------------------------------------- /testdata/systemhooks/repository_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/systemhooks/repository_update.json -------------------------------------------------------------------------------- /testdata/systemhooks/tag_push.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/systemhooks/tag_push.json -------------------------------------------------------------------------------- /testdata/systemhooks/user_add_to_group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/systemhooks/user_add_to_group.json -------------------------------------------------------------------------------- /testdata/systemhooks/user_add_to_team.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/systemhooks/user_add_to_team.json -------------------------------------------------------------------------------- /testdata/systemhooks/user_create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/systemhooks/user_create.json -------------------------------------------------------------------------------- /testdata/systemhooks/user_destroy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/systemhooks/user_destroy.json -------------------------------------------------------------------------------- /testdata/systemhooks/user_failed_login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/systemhooks/user_failed_login.json -------------------------------------------------------------------------------- /testdata/systemhooks/user_remove_from_group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/systemhooks/user_remove_from_group.json -------------------------------------------------------------------------------- /testdata/systemhooks/user_remove_from_team.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/systemhooks/user_remove_from_team.json -------------------------------------------------------------------------------- /testdata/systemhooks/user_rename.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/systemhooks/user_rename.json -------------------------------------------------------------------------------- /testdata/systemhooks/user_update_for_group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/systemhooks/user_update_for_group.json -------------------------------------------------------------------------------- /testdata/systemhooks/user_update_for_team.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/systemhooks/user_update_for_team.json -------------------------------------------------------------------------------- /testdata/update_draft_note.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/update_draft_note.json -------------------------------------------------------------------------------- /testdata/update_project_feature_flag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/update_project_feature_flag.json -------------------------------------------------------------------------------- /testdata/webhooks/build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/webhooks/build.json -------------------------------------------------------------------------------- /testdata/webhooks/deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/webhooks/deployment.json -------------------------------------------------------------------------------- /testdata/webhooks/feature_flag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/webhooks/feature_flag.json -------------------------------------------------------------------------------- /testdata/webhooks/group_merge_request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/webhooks/group_merge_request.json -------------------------------------------------------------------------------- /testdata/webhooks/issue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/webhooks/issue.json -------------------------------------------------------------------------------- /testdata/webhooks/job.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/webhooks/job.json -------------------------------------------------------------------------------- /testdata/webhooks/member.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/webhooks/member.json -------------------------------------------------------------------------------- /testdata/webhooks/merge_request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/webhooks/merge_request.json -------------------------------------------------------------------------------- /testdata/webhooks/note_commit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/webhooks/note_commit.json -------------------------------------------------------------------------------- /testdata/webhooks/note_issue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/webhooks/note_issue.json -------------------------------------------------------------------------------- /testdata/webhooks/note_merge_request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/webhooks/note_merge_request.json -------------------------------------------------------------------------------- /testdata/webhooks/note_snippet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/webhooks/note_snippet.json -------------------------------------------------------------------------------- /testdata/webhooks/pipeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/webhooks/pipeline.json -------------------------------------------------------------------------------- /testdata/webhooks/push.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/webhooks/push.json -------------------------------------------------------------------------------- /testdata/webhooks/release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/webhooks/release.json -------------------------------------------------------------------------------- /testdata/webhooks/resource_access_token_group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/webhooks/resource_access_token_group.json -------------------------------------------------------------------------------- /testdata/webhooks/resource_access_token_project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/webhooks/resource_access_token_project.json -------------------------------------------------------------------------------- /testdata/webhooks/service_merge_request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/webhooks/service_merge_request.json -------------------------------------------------------------------------------- /testdata/webhooks/subgroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/webhooks/subgroup.json -------------------------------------------------------------------------------- /testdata/webhooks/tag_push.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/webhooks/tag_push.json -------------------------------------------------------------------------------- /testdata/webhooks/wiki_page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/testdata/webhooks/wiki_page.json -------------------------------------------------------------------------------- /time_stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/time_stats.go -------------------------------------------------------------------------------- /todos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/todos.go -------------------------------------------------------------------------------- /todos_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/todos_test.go -------------------------------------------------------------------------------- /topics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/topics.go -------------------------------------------------------------------------------- /topics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/topics_test.go -------------------------------------------------------------------------------- /types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/types.go -------------------------------------------------------------------------------- /types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/types_test.go -------------------------------------------------------------------------------- /users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/users.go -------------------------------------------------------------------------------- /users_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/users_test.go -------------------------------------------------------------------------------- /validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/validate.go -------------------------------------------------------------------------------- /validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/validate_test.go -------------------------------------------------------------------------------- /version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/version.go -------------------------------------------------------------------------------- /version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/version_test.go -------------------------------------------------------------------------------- /wikis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/wikis.go -------------------------------------------------------------------------------- /wikis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanzy/go-gitlab/HEAD/wikis_test.go --------------------------------------------------------------------------------