-
Notifications
You must be signed in to change notification settings - Fork 517
Expand file tree
/
Copy pathoverlay.yaml
More file actions
56 lines (56 loc) · 2.78 KB
/
Copy pathoverlay.yaml
File metadata and controls
56 lines (56 loc) · 2.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
overlay: 1.0.0
info:
title: Overlay
version: 0.0.0
actions:
- target: $.components.schemas.*.properties.password_required_characters.enum
description: Converts enum with special characters to a string
remove: true
- target: $.components.schemas.*.properties.password_required_characters
description: Optionally adds back the enum with escaped backslash and quotes
update:
enum:
- abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ:0123456789
- abcdefghijklmnopqrstuvwxyz:ABCDEFGHIJKLMNOPQRSTUVWXYZ:0123456789
- abcdefghijklmnopqrstuvwxyz:ABCDEFGHIJKLMNOPQRSTUVWXYZ:0123456789:!@#$%^&*()_+-=[]{};'\\\\:\"|<>?,./`~
- ''
- target: $.components.schemas.*.properties.attribute_mapping.properties.keys.additionalProperties.properties.default.oneOf
description: Replaces request union type with interface for easier casting
remove: true
- target: $.components.schemas.*.properties.saml.properties.attribute_mapping.properties.keys.additionalProperties.properties.default.oneOf
description: Replaces response union type with interface for easier casting
remove: true
- target: $.components.schemas.*.properties.items.items.properties.saml.properties.attribute_mapping.properties.keys.additionalProperties.properties.default.oneOf
description: Replaces list union type with interface for easier casting
remove: true
- target: $.components.schemas.*.properties.saml.properties.name_id_format.enum
description: Converts enum with duplicated type to a string
remove: true
- target: $.components.schemas.*.properties.items.items.properties.saml.properties.name_id_format.enum
description: Converts list of enum with duplicated type to a string
remove: true
- target: $.components.schemas.*.properties.connectionString
description: Removes deprecated field that conflicts with naming convention
remove: true
- target: $.components.schemas.*.properties.region_selection.discriminator
description: Replaces discriminated union with concrete type
remove: true
- target: $.components.schemas.*.properties.private_jwk.discriminator
description: Replaces discriminated union with concrete type
remove: true
- target: $.components.schemas.DiskRequestBody.properties.attributes.discriminator
description: Replaces discriminated union with concrete type
remove: true
- target: $.components.schemas.JitStateResponse.discriminator
description: Replaces discriminated union with concrete type
remove: true
- target: $.paths.*.*.parameters[?(@.name=='branch_id_or_ref')]
update:
schema:
type: string
- target: $.components.schemas.V1CreateProjectBody.properties
description: Adds high availability create-project flag hidden from the generated NestJS spec
update:
high_availability:
type: boolean
description: Whether to enable high availability for the project.