Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44920,6 +44920,9 @@ components:
description: Name of the API key.
example: "API Key for submitting metrics"
type: string
private_action_runner_enroll_enabled:
description: Whether the API key can enroll a Private Action Runner.
type: boolean
remote_config_read_enabled:
description: The remote config read enabled status.
type: boolean
Expand Down Expand Up @@ -84281,6 +84284,9 @@ components:
description: Name of the API key.
example: "API Key for submitting metrics"
type: string
private_action_runner_enroll_enabled:
description: Whether the API key can enroll a Private Action Runner.
type: boolean
remote_config_read_enabled:
description: The remote config read enabled status.
type: boolean
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ export class FullAPIKeyAttributes {
* Name of the API key.
*/
"name"?: string;
/**
* Whether the API key can enroll a Private Action Runner.
*/
"privateActionRunnerEnrollEnabled"?: boolean;
/**
* The remote config read enabled status.
*/
Expand Down Expand Up @@ -90,6 +94,10 @@ export class FullAPIKeyAttributes {
baseName: "name",
type: "string",
},
privateActionRunnerEnrollEnabled: {
baseName: "private_action_runner_enroll_enabled",
type: "boolean",
},
remoteConfigReadEnabled: {
baseName: "remote_config_read_enabled",
type: "boolean",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ export class PartialAPIKeyAttributes {
* Name of the API key.
*/
"name"?: string;
/**
* Whether the API key can enroll a Private Action Runner.
*/
"privateActionRunnerEnrollEnabled"?: boolean;
/**
* The remote config read enabled status.
*/
Expand Down Expand Up @@ -80,6 +84,10 @@ export class PartialAPIKeyAttributes {
baseName: "name",
type: "string",
},
privateActionRunnerEnrollEnabled: {
baseName: "private_action_runner_enroll_enabled",
type: "boolean",
},
remoteConfigReadEnabled: {
baseName: "remote_config_read_enabled",
type: "boolean",
Expand Down
Loading