openapi: 3.0.1 info: title: GitLab api/v4/ Admin Application API version: v4 description: Needs description. termsOfService: https://about.gitlab.com/terms/ license: name: CC BY-SA 4.0 url: https://gitlab.com/gitlab-org/gitlab/-/blob/master/LICENSE servers: - url: https://www.gitlab.com/api/ security: - ApiKeyAuth: [] tags: - name: Application paths: /api/v4/application/appearance: get: tags: - Application description: Get the current appearance operationId: getApiV4ApplicationAppearance responses: '200': description: Get the current appearance content: application/json: schema: $ref: '#/components/schemas/API_Entities_Appearance' x-microcks-operation: delay: 0 dispatcher: FALLBACK put: tags: - Application description: Modify appearance operationId: putApiV4ApplicationAppearance requestBody: content: multipart/form-data: schema: properties: title: type: string description: Instance title on the sign in / sign up page description: type: string description: Markdown text shown on the sign in / sign up page pwa_name: type: string description: Name of the Progressive Web App pwa_short_name: type: string description: Optional, short name for Progressive Web App pwa_description: type: string description: An explanation of what the Progressive Web App does logo: type: string description: Instance image used on the sign in / sign up page format: binary pwa_icon: type: string description: Icon used for Progressive Web App format: binary header_logo: type: string description: Instance image used for the main navigation bar format: binary favicon: type: string description: Instance favicon in .ico/.png format format: binary new_project_guidelines: type: string description: Markdown text shown on the new project page profile_image_guidelines: type: string description: Markdown text shown on the profile page below Public Avatar header_message: type: string description: Message within the system header bar footer_message: type: string description: Message within the system footer bar message_background_color: type: string description: Background color for the system header / footer bar message_font_color: type: string description: Font color for the system header / footer bar email_header_and_footer_enabled: type: boolean description: Add header and footer to all outgoing emails if enabled responses: '200': description: Modify appearance content: application/json: schema: $ref: '#/components/schemas/API_Entities_Appearance' x-microcks-operation: delay: 0 dispatcher: FALLBACK /api/v4/application/plan_limits: get: tags: - Application summary: GitLab Get Current Plan Limits description: List the current limits of a plan on the GitLab instance. operationId: getApiV4ApplicationPlanLimits parameters: - name: plan_name in: query description: 'Name of the plan to get the limits from. Default: default.' schema: type: string default: default enum: - default - free - bronze - silver - premium - gold - ultimate - ultimate_trial - premium_trial - opensource example: default responses: '200': description: Get current plan limits content: application/json: schema: $ref: '#/components/schemas/API_Entities_PlanLimit' '401': description: Unauthorized content: {} '403': description: Forbidden content: {} x-microcks-operation: delay: 0 dispatcher: FALLBACK put: tags: - Application summary: GitLab Change Plan Limits description: Modify the limits of a plan on the GitLab instance. operationId: putApiV4ApplicationPlanLimits requestBody: content: application/json: schema: required: - plan_name properties: plan_name: type: string description: Name of the plan to update enum: - default - free - bronze - silver - premium - gold - ultimate - ultimate_trial - premium_trial - opensource ci_pipeline_size: type: integer description: Maximum number of jobs in a single pipeline format: int32 ci_active_jobs: type: integer description: Total number of jobs in currently active pipelines format: int32 ci_project_subscriptions: type: integer description: Maximum number of pipeline subscriptions to and from a project format: int32 ci_pipeline_schedules: type: integer description: Maximum number of pipeline schedules format: int32 ci_needs_size_limit: type: integer description: Maximum number of DAG dependencies that a job can have format: int32 ci_registered_group_runners: type: integer description: Maximum number of runners registered per group format: int32 ci_registered_project_runners: type: integer description: Maximum number of runners registered per project format: int32 conan_max_file_size: type: integer description: Maximum Conan package file size in bytes format: int32 enforcement_limit: type: integer description: Maximum storage size for the root namespace enforcement in MiB format: int32 generic_packages_max_file_size: type: integer description: Maximum generic package file size in bytes format: int32 helm_max_file_size: type: integer description: Maximum Helm chart file size in bytes format: int32 maven_max_file_size: type: integer description: Maximum Maven package file size in bytes format: int32 notification_limit: type: integer description: Maximum storage size for the root namespace notifications in MiB format: int32 npm_max_file_size: type: integer description: Maximum NPM package file size in bytes format: int32 nuget_max_file_size: type: integer description: Maximum NuGet package file size in bytes format: int32 pypi_max_file_size: type: integer description: Maximum PyPI package file size in bytes format: int32 terraform_module_max_file_size: type: integer description: Maximum Terraform Module package file size in bytes format: int32 storage_size_limit: type: integer description: Maximum storage size for the root namespace in MiB format: int32 pipeline_hierarchy_size: type: integer description: Maximum number of downstream pipelines in a pipeline's hierarchy tree format: int32 required: true responses: '200': description: Change plan limits content: application/json: schema: $ref: '#/components/schemas/API_Entities_PlanLimit' '400': description: Bad request content: {} '401': description: Unauthorized content: {} '403': description: Forbidden content: {} x-microcks-operation: delay: 0 dispatcher: FALLBACK components: schemas: API_Entities_PlanLimit: type: object properties: ci_pipeline_size: type: integer format: int32 example: 0 ci_active_jobs: type: integer format: int32 example: 0 ci_project_subscriptions: type: integer format: int32 example: 2 ci_pipeline_schedules: type: integer format: int32 example: 10 ci_needs_size_limit: type: integer format: int32 example: 50 ci_registered_group_runners: type: integer format: int32 example: 1000 ci_registered_project_runners: type: integer format: int32 example: 1000 conan_max_file_size: type: integer format: int32 example: 3221225472 enforcement_limit: type: integer format: int32 example: 15000 generic_packages_max_file_size: type: integer format: int32 example: 5368709120 helm_max_file_size: type: integer format: int32 example: 5242880 limits_history: type: object properties: {} example: "{\"enforcement_limit\"=>[{\"timestamp\"=>1686909124, \"user_id\"=>1, \"username\"=>\"x\", \"value\"=>5}],\n \"notification_limit\"=>[{\"timestamp\"=>1686909124, \"user_id\"=>2, \"username\"=>\"y\", \"value\"=>7}]}" maven_max_file_size: type: integer format: int32 example: 3221225472 notification_limit: type: integer format: int32 example: 15000 npm_max_file_size: type: integer format: int32 example: 524288000 nuget_max_file_size: type: integer format: int32 example: 524288000 pipeline_hierarchy_size: type: integer format: int32 example: 1000 pypi_max_file_size: type: integer format: int32 example: 3221225472 terraform_module_max_file_size: type: integer format: int32 example: 1073741824 storage_size_limit: type: integer format: int32 example: 15000 description: API_Entities_PlanLimit model API_Entities_Appearance: type: object properties: title: type: string example: example_value description: type: string example: Example description pwa_name: type: string example: Example Project pwa_short_name: type: string example: Example Project pwa_description: type: string example: Example description logo: type: string example: example_value pwa_icon: type: string example: example_value header_logo: type: string example: example_value favicon: type: string example: example_value new_project_guidelines: type: string example: example_value profile_image_guidelines: type: string example: example_value header_message: type: string example: example_value footer_message: type: string example: example_value message_background_color: type: string example: example_value message_font_color: type: string example: example_value email_header_and_footer_enabled: type: string example: user@example.com description: API_Entities_Appearance model