@@ -673,10 +673,16 @@ components:
673
673
APIKeyCreateAttributes:
674
674
description: Attributes used to create an API Key.
675
675
properties:
676
+ category:
677
+ description: The APIKeyCreateAttributes category.
678
+ type: string
676
679
name:
677
680
description: Name of the API key.
678
681
example: API Key for submitting metrics
679
682
type: string
683
+ remote_config_read_enabled:
684
+ description: The APIKeyCreateAttributes remote_config_read_enabled.
685
+ type: boolean
680
686
required:
681
687
- name
682
688
type: object
@@ -722,13 +728,20 @@ components:
722
728
description: An object related to an API key.
723
729
oneOf:
724
730
- $ref: '#/components/schemas/User'
731
+ - $ref: '#/components/schemas/LeakedKey'
725
732
APIKeyUpdateAttributes:
726
733
description: Attributes used to update an API Key.
727
734
properties:
735
+ category:
736
+ description: The APIKeyUpdateAttributes category.
737
+ type: string
728
738
name:
729
739
description: Name of the API key.
730
740
example: API Key for submitting metrics
731
741
type: string
742
+ remote_config_read_enabled:
743
+ description: The APIKeyUpdateAttributes remote_config_read_enabled.
744
+ type: boolean
732
745
required:
733
746
- name
734
747
type: object
@@ -981,6 +994,7 @@ components:
981
994
oneOf:
982
995
- $ref: '#/components/schemas/User'
983
996
- $ref: '#/components/schemas/Role'
997
+ - $ref: '#/components/schemas/LeakedKey'
984
998
ApplicationKeyResponseMeta:
985
999
description: Additional information related to the application key response.
986
1000
properties:
@@ -8461,6 +8475,7 @@ components:
8461
8475
created_at:
8462
8476
description: Creation date of the API key.
8463
8477
example: '2020-11-23T10:00:00.000Z'
8478
+ format: date-time
8464
8479
readOnly: true
8465
8480
type: string
8466
8481
key:
@@ -8477,6 +8492,7 @@ components:
8477
8492
modified_at:
8478
8493
description: Date the API key was last modified.
8479
8494
example: '2020-11-23T10:00:00.000Z'
8495
+ format: date-time
8480
8496
readOnly: true
8481
8497
type: string
8482
8498
name:
@@ -11140,6 +11156,45 @@ components:
11140
11156
description: Jira project key
11141
11157
type: string
11142
11158
type: object
11159
+ LeakedKey:
11160
+ description: The definition of LeakedKey object.
11161
+ properties:
11162
+ attributes:
11163
+ $ref: '#/components/schemas/LeakedKeyAttributes'
11164
+ id:
11165
+ description: The LeakedKey id.
11166
+ example: id
11167
+ type: string
11168
+ type:
11169
+ $ref: '#/components/schemas/LeakedKeyType'
11170
+ required:
11171
+ - attributes
11172
+ - id
11173
+ - type
11174
+ type: object
11175
+ LeakedKeyAttributes:
11176
+ description: The definition of LeakedKeyAttributes object.
11177
+ properties:
11178
+ date:
11179
+ description: The LeakedKeyAttributes date.
11180
+ example: '2017-07-21T17:32:28Z'
11181
+ format: date-time
11182
+ type: string
11183
+ leak_source:
11184
+ description: The LeakedKeyAttributes leak_source.
11185
+ type: string
11186
+ required:
11187
+ - date
11188
+ type: object
11189
+ LeakedKeyType:
11190
+ default: leaked_keys
11191
+ description: The definition of LeakedKeyType object.
11192
+ enum:
11193
+ - leaked_keys
11194
+ example: leaked_keys
11195
+ type: string
11196
+ x-enum-varnames:
11197
+ - LEAKED_KEYS
11143
11198
ListAPIsResponse:
11144
11199
description: Response for `ListAPIs`.
11145
11200
properties:
0 commit comments