@admiral-io/sdk 1.6.4 → 1.6.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/proto/admiral/api/agent/v1/agent_pb.d.ts +135 -129
- package/dist/proto/admiral/api/agent/v1/agent_pb.d.ts.map +1 -1
- package/dist/proto/admiral/api/agent/v1/agent_pb.js +39 -33
- package/dist/proto/admiral/api/agent/v1/agent_pb.js.map +1 -1
- package/dist/proto/admiral/api/user/v1/user_pb.d.ts +129 -127
- package/dist/proto/admiral/api/user/v1/user_pb.d.ts.map +1 -1
- package/dist/proto/admiral/api/user/v1/user_pb.js +39 -37
- package/dist/proto/admiral/api/user/v1/user_pb.js.map +1 -1
- package/dist/proto/admiral/common/v1/apikey_pb.d.ts +202 -0
- package/dist/proto/admiral/common/v1/apikey_pb.d.ts.map +1 -0
- package/dist/proto/admiral/common/v1/apikey_pb.js +85 -0
- package/dist/proto/admiral/common/v1/apikey_pb.js.map +1 -0
- package/package.json +1 -1
- package/dist/proto/admiral/common/v1/token_pb.d.ts +0 -222
- package/dist/proto/admiral/common/v1/token_pb.d.ts.map +0 -1
- package/dist/proto/admiral/common/v1/token_pb.js +0 -110
- package/dist/proto/admiral/common/v1/token_pb.js.map +0 -1
|
@@ -2,7 +2,7 @@ import type { GenEnum, GenFile, GenMessage, GenService } from "@bufbuild/protobu
|
|
|
2
2
|
import type { ListAgentJobsRequestSchema, ListAgentJobsResponseSchema, TerraformAgentStatus } from "./jobs_pb.js";
|
|
3
3
|
import type { GetWorkloadRequestSchema, GetWorkloadResponseSchema, KubernetesAgentStatus, ListWorkloadEventsRequestSchema, ListWorkloadEventsResponseSchema, ListWorkloadsRequestSchema, ListWorkloadsResponseSchema } from "./workloads_pb.js";
|
|
4
4
|
import type { ActorRef } from "../../../common/v1/actor_pb.js";
|
|
5
|
-
import type {
|
|
5
|
+
import type { ApiKey } from "../../../common/v1/apikey_pb.js";
|
|
6
6
|
import type { Duration, FieldMask, Timestamp } from "@bufbuild/protobuf/wkt";
|
|
7
7
|
import type { Message } from "@bufbuild/protobuf";
|
|
8
8
|
/**
|
|
@@ -62,7 +62,7 @@ export type Agent = Message<"admiral.api.agent.v1.Agent"> & {
|
|
|
62
62
|
healthStatus: AgentHealthStatus;
|
|
63
63
|
/**
|
|
64
64
|
* (KUBERNETES only) The Kubernetes kube-system namespace UID, bound at agent
|
|
65
|
-
* registration using a first-write-wins strategy. Used to detect when a
|
|
65
|
+
* registration using a first-write-wins strategy. Used to detect when a key
|
|
66
66
|
* is accidentally deployed to a different physical cluster. Empty for TERRAFORM
|
|
67
67
|
* agents.
|
|
68
68
|
*
|
|
@@ -70,7 +70,7 @@ export type Agent = Message<"admiral.api.agent.v1.Agent"> & {
|
|
|
70
70
|
*/
|
|
71
71
|
clusterUid: string;
|
|
72
72
|
/**
|
|
73
|
-
* The user or agent who created this agent (server-populated from
|
|
73
|
+
* The user or agent who created this agent (server-populated from key).
|
|
74
74
|
*
|
|
75
75
|
* @generated from field: admiral.common.v1.ActorRef created_by = 8;
|
|
76
76
|
*/
|
|
@@ -103,7 +103,7 @@ export declare const AgentSchema: GenMessage<Agent>;
|
|
|
103
103
|
export type CreateAgentRequest = Message<"admiral.api.agent.v1.CreateAgentRequest"> & {
|
|
104
104
|
/**
|
|
105
105
|
* The execution plane this agent serves (TERRAFORM or KUBERNETES). Selects the
|
|
106
|
-
*
|
|
106
|
+
* key's auto-assigned scopes and is immutable.
|
|
107
107
|
*
|
|
108
108
|
* @generated from field: admiral.api.agent.v1.AgentKind kind = 1;
|
|
109
109
|
*/
|
|
@@ -137,7 +137,7 @@ export type CreateAgentRequest = Message<"admiral.api.agent.v1.CreateAgentReques
|
|
|
137
137
|
*/
|
|
138
138
|
export declare const CreateAgentRequestSchema: GenMessage<CreateAgentRequest>;
|
|
139
139
|
/**
|
|
140
|
-
* CreateAgentResponse contains the newly created agent and its initial
|
|
140
|
+
* CreateAgentResponse contains the newly created agent and its initial API key.
|
|
141
141
|
*
|
|
142
142
|
* @generated from message admiral.api.agent.v1.CreateAgentResponse
|
|
143
143
|
*/
|
|
@@ -149,13 +149,13 @@ export type CreateAgentResponse = Message<"admiral.api.agent.v1.CreateAgentRespo
|
|
|
149
149
|
*/
|
|
150
150
|
agent?: Agent | undefined;
|
|
151
151
|
/**
|
|
152
|
-
* The raw
|
|
153
|
-
*
|
|
154
|
-
*
|
|
152
|
+
* The raw API key secret (e.g., "adms_pL2mN5oQ8rS1..."). Shown exactly once
|
|
153
|
+
* and cannot be retrieved again. Deploy this key to the agent binary for
|
|
154
|
+
* authentication. For additional keys, use CreateApiKey.
|
|
155
155
|
*
|
|
156
|
-
* @generated from field: string
|
|
156
|
+
* @generated from field: string plain_text_key = 2;
|
|
157
157
|
*/
|
|
158
|
-
|
|
158
|
+
plainTextKey: string;
|
|
159
159
|
};
|
|
160
160
|
/**
|
|
161
161
|
* Describes the message admiral.api.agent.v1.CreateAgentResponse.
|
|
@@ -314,8 +314,8 @@ export declare const UpdateAgentResponseSchema: GenMessage<UpdateAgentResponse>;
|
|
|
314
314
|
*/
|
|
315
315
|
export type DeleteAgentRequest = Message<"admiral.api.agent.v1.DeleteAgentRequest"> & {
|
|
316
316
|
/**
|
|
317
|
-
* The unique identifier of the agent to delete (UUID). All
|
|
318
|
-
*
|
|
317
|
+
* The unique identifier of the agent to delete (UUID). All API keys bound to
|
|
318
|
+
* its service account are revoked.
|
|
319
319
|
*
|
|
320
320
|
* @generated from field: string agent_id = 1;
|
|
321
321
|
*/
|
|
@@ -463,70 +463,70 @@ export type GetAgentStatusResponse = Message<"admiral.api.agent.v1.GetAgentStatu
|
|
|
463
463
|
*/
|
|
464
464
|
export declare const GetAgentStatusResponseSchema: GenMessage<GetAgentStatusResponse>;
|
|
465
465
|
/**
|
|
466
|
-
*
|
|
466
|
+
* CreateApiKeyRequest contains the parameters for creating a new API key bound to
|
|
467
467
|
* an agent.
|
|
468
468
|
*
|
|
469
|
-
* @generated from message admiral.api.agent.v1.
|
|
469
|
+
* @generated from message admiral.api.agent.v1.CreateApiKeyRequest
|
|
470
470
|
*/
|
|
471
|
-
export type
|
|
471
|
+
export type CreateApiKeyRequest = Message<"admiral.api.agent.v1.CreateApiKeyRequest"> & {
|
|
472
472
|
/**
|
|
473
|
-
* The agent to bind this
|
|
473
|
+
* The agent to bind this key to (UUID).
|
|
474
474
|
*
|
|
475
475
|
* @generated from field: string agent_id = 1;
|
|
476
476
|
*/
|
|
477
477
|
agentId: string;
|
|
478
478
|
/**
|
|
479
|
-
* URL-safe, human-readable identifier for the
|
|
480
|
-
* Unique within the agent's
|
|
479
|
+
* URL-safe, human-readable identifier for the key (e.g., "prod-agent-key").
|
|
480
|
+
* Unique within the agent's keys. Lowercase alphanumeric and hyphens only,
|
|
481
481
|
* must start with a letter and end with an alphanumeric character (1-63 chars).
|
|
482
482
|
*
|
|
483
483
|
* @generated from field: string name = 2;
|
|
484
484
|
*/
|
|
485
485
|
name: string;
|
|
486
486
|
/**
|
|
487
|
-
* Optional expiration time. If unset, the
|
|
487
|
+
* Optional expiration time. If unset, the key does not expire.
|
|
488
488
|
*
|
|
489
489
|
* @generated from field: google.protobuf.Timestamp expires_at = 3;
|
|
490
490
|
*/
|
|
491
491
|
expiresAt?: Timestamp | undefined;
|
|
492
492
|
};
|
|
493
493
|
/**
|
|
494
|
-
* Describes the message admiral.api.agent.v1.
|
|
495
|
-
* Use `create(
|
|
494
|
+
* Describes the message admiral.api.agent.v1.CreateApiKeyRequest.
|
|
495
|
+
* Use `create(CreateApiKeyRequestSchema)` to create a new message.
|
|
496
496
|
*/
|
|
497
|
-
export declare const
|
|
497
|
+
export declare const CreateApiKeyRequestSchema: GenMessage<CreateApiKeyRequest>;
|
|
498
498
|
/**
|
|
499
|
-
*
|
|
499
|
+
* CreateApiKeyResponse contains the newly created API key.
|
|
500
500
|
*
|
|
501
|
-
* @generated from message admiral.api.agent.v1.
|
|
501
|
+
* @generated from message admiral.api.agent.v1.CreateApiKeyResponse
|
|
502
502
|
*/
|
|
503
|
-
export type
|
|
503
|
+
export type CreateApiKeyResponse = Message<"admiral.api.agent.v1.CreateApiKeyResponse"> & {
|
|
504
504
|
/**
|
|
505
|
-
* The created
|
|
505
|
+
* The created key metadata. Scopes are auto-assigned from the agent's kind.
|
|
506
506
|
*
|
|
507
|
-
* @generated from field: admiral.common.v1.
|
|
507
|
+
* @generated from field: admiral.common.v1.ApiKey api_key = 1;
|
|
508
508
|
*/
|
|
509
|
-
|
|
509
|
+
apiKey?: ApiKey | undefined;
|
|
510
510
|
/**
|
|
511
|
-
* The raw
|
|
511
|
+
* The raw secret. Shown exactly once and cannot be retrieved again.
|
|
512
512
|
*
|
|
513
|
-
* @generated from field: string
|
|
513
|
+
* @generated from field: string plain_text_key = 2;
|
|
514
514
|
*/
|
|
515
|
-
|
|
515
|
+
plainTextKey: string;
|
|
516
516
|
};
|
|
517
517
|
/**
|
|
518
|
-
* Describes the message admiral.api.agent.v1.
|
|
519
|
-
* Use `create(
|
|
518
|
+
* Describes the message admiral.api.agent.v1.CreateApiKeyResponse.
|
|
519
|
+
* Use `create(CreateApiKeyResponseSchema)` to create a new message.
|
|
520
520
|
*/
|
|
521
|
-
export declare const
|
|
521
|
+
export declare const CreateApiKeyResponseSchema: GenMessage<CreateApiKeyResponse>;
|
|
522
522
|
/**
|
|
523
|
-
*
|
|
523
|
+
* ListApiKeysRequest contains pagination and filter parameters.
|
|
524
524
|
*
|
|
525
|
-
* @generated from message admiral.api.agent.v1.
|
|
525
|
+
* @generated from message admiral.api.agent.v1.ListApiKeysRequest
|
|
526
526
|
*/
|
|
527
|
-
export type
|
|
527
|
+
export type ListApiKeysRequest = Message<"admiral.api.agent.v1.ListApiKeysRequest"> & {
|
|
528
528
|
/**
|
|
529
|
-
* The agent to list
|
|
529
|
+
* The agent to list keys for (UUID).
|
|
530
530
|
*
|
|
531
531
|
* @generated from field: string agent_id = 1;
|
|
532
532
|
*/
|
|
@@ -536,14 +536,14 @@ export type ListAgentTokensRequest = Message<"admiral.api.agent.v1.ListAgentToke
|
|
|
536
536
|
* API documentation for the full operator and predicate reference).
|
|
537
537
|
*
|
|
538
538
|
* Filterable fields:
|
|
539
|
-
* - `name`: filter by
|
|
540
|
-
* - `status`: filter by
|
|
539
|
+
* - `name`: filter by key name.
|
|
540
|
+
* - `status`: filter by key status (ACTIVE, REVOKED).
|
|
541
541
|
*
|
|
542
542
|
* @generated from field: string filter = 2;
|
|
543
543
|
*/
|
|
544
544
|
filter: string;
|
|
545
545
|
/**
|
|
546
|
-
* Maximum number of
|
|
546
|
+
* Maximum number of keys to return per page. Defaults to 50 when omitted or
|
|
547
547
|
* 0; must not exceed 100.
|
|
548
548
|
*
|
|
549
549
|
* @generated from field: int32 page_size = 3;
|
|
@@ -557,22 +557,22 @@ export type ListAgentTokensRequest = Message<"admiral.api.agent.v1.ListAgentToke
|
|
|
557
557
|
pageToken: string;
|
|
558
558
|
};
|
|
559
559
|
/**
|
|
560
|
-
* Describes the message admiral.api.agent.v1.
|
|
561
|
-
* Use `create(
|
|
560
|
+
* Describes the message admiral.api.agent.v1.ListApiKeysRequest.
|
|
561
|
+
* Use `create(ListApiKeysRequestSchema)` to create a new message.
|
|
562
562
|
*/
|
|
563
|
-
export declare const
|
|
563
|
+
export declare const ListApiKeysRequestSchema: GenMessage<ListApiKeysRequest>;
|
|
564
564
|
/**
|
|
565
|
-
*
|
|
565
|
+
* ListApiKeysResponse contains a page of agent API key metadata.
|
|
566
566
|
*
|
|
567
|
-
* @generated from message admiral.api.agent.v1.
|
|
567
|
+
* @generated from message admiral.api.agent.v1.ListApiKeysResponse
|
|
568
568
|
*/
|
|
569
|
-
export type
|
|
569
|
+
export type ListApiKeysResponse = Message<"admiral.api.agent.v1.ListApiKeysResponse"> & {
|
|
570
570
|
/**
|
|
571
|
-
* The list of
|
|
571
|
+
* The list of keys. Secrets are never included.
|
|
572
572
|
*
|
|
573
|
-
* @generated from field: repeated admiral.common.v1.
|
|
573
|
+
* @generated from field: repeated admiral.common.v1.ApiKey api_keys = 1;
|
|
574
574
|
*/
|
|
575
|
-
|
|
575
|
+
apiKeys: ApiKey[];
|
|
576
576
|
/**
|
|
577
577
|
* Pagination token for the next page. Empty when there are no more results.
|
|
578
578
|
*
|
|
@@ -581,84 +581,84 @@ export type ListAgentTokensResponse = Message<"admiral.api.agent.v1.ListAgentTok
|
|
|
581
581
|
nextPageToken: string;
|
|
582
582
|
};
|
|
583
583
|
/**
|
|
584
|
-
* Describes the message admiral.api.agent.v1.
|
|
585
|
-
* Use `create(
|
|
584
|
+
* Describes the message admiral.api.agent.v1.ListApiKeysResponse.
|
|
585
|
+
* Use `create(ListApiKeysResponseSchema)` to create a new message.
|
|
586
586
|
*/
|
|
587
|
-
export declare const
|
|
587
|
+
export declare const ListApiKeysResponseSchema: GenMessage<ListApiKeysResponse>;
|
|
588
588
|
/**
|
|
589
|
-
*
|
|
590
|
-
* unique; the server resolves the parent agent from the
|
|
589
|
+
* GetApiKeyRequest identifies an agent API key to retrieve. Key IDs are globally
|
|
590
|
+
* unique; the server resolves the parent agent from the key ID.
|
|
591
591
|
*
|
|
592
|
-
* @generated from message admiral.api.agent.v1.
|
|
592
|
+
* @generated from message admiral.api.agent.v1.GetApiKeyRequest
|
|
593
593
|
*/
|
|
594
|
-
export type
|
|
594
|
+
export type GetApiKeyRequest = Message<"admiral.api.agent.v1.GetApiKeyRequest"> & {
|
|
595
595
|
/**
|
|
596
|
-
* The unique identifier of the
|
|
596
|
+
* The unique identifier of the key (UUID).
|
|
597
597
|
*
|
|
598
598
|
* @generated from field: string token_id = 1;
|
|
599
599
|
*/
|
|
600
600
|
tokenId: string;
|
|
601
601
|
};
|
|
602
602
|
/**
|
|
603
|
-
* Describes the message admiral.api.agent.v1.
|
|
604
|
-
* Use `create(
|
|
603
|
+
* Describes the message admiral.api.agent.v1.GetApiKeyRequest.
|
|
604
|
+
* Use `create(GetApiKeyRequestSchema)` to create a new message.
|
|
605
605
|
*/
|
|
606
|
-
export declare const
|
|
606
|
+
export declare const GetApiKeyRequestSchema: GenMessage<GetApiKeyRequest>;
|
|
607
607
|
/**
|
|
608
|
-
*
|
|
608
|
+
* GetApiKeyResponse contains the requested agent API key metadata.
|
|
609
609
|
*
|
|
610
|
-
* @generated from message admiral.api.agent.v1.
|
|
610
|
+
* @generated from message admiral.api.agent.v1.GetApiKeyResponse
|
|
611
611
|
*/
|
|
612
|
-
export type
|
|
612
|
+
export type GetApiKeyResponse = Message<"admiral.api.agent.v1.GetApiKeyResponse"> & {
|
|
613
613
|
/**
|
|
614
|
-
* The
|
|
614
|
+
* The key metadata. The key secret is never included.
|
|
615
615
|
*
|
|
616
|
-
* @generated from field: admiral.common.v1.
|
|
616
|
+
* @generated from field: admiral.common.v1.ApiKey api_key = 1;
|
|
617
617
|
*/
|
|
618
|
-
|
|
618
|
+
apiKey?: ApiKey | undefined;
|
|
619
619
|
};
|
|
620
620
|
/**
|
|
621
|
-
* Describes the message admiral.api.agent.v1.
|
|
622
|
-
* Use `create(
|
|
621
|
+
* Describes the message admiral.api.agent.v1.GetApiKeyResponse.
|
|
622
|
+
* Use `create(GetApiKeyResponseSchema)` to create a new message.
|
|
623
623
|
*/
|
|
624
|
-
export declare const
|
|
624
|
+
export declare const GetApiKeyResponseSchema: GenMessage<GetApiKeyResponse>;
|
|
625
625
|
/**
|
|
626
|
-
*
|
|
627
|
-
* globally unique; the server resolves the parent agent from the
|
|
626
|
+
* RevokeApiKeyRequest identifies an agent API key to revoke. Key IDs are
|
|
627
|
+
* globally unique; the server resolves the parent agent from the key ID.
|
|
628
628
|
*
|
|
629
|
-
* @generated from message admiral.api.agent.v1.
|
|
629
|
+
* @generated from message admiral.api.agent.v1.RevokeApiKeyRequest
|
|
630
630
|
*/
|
|
631
|
-
export type
|
|
631
|
+
export type RevokeApiKeyRequest = Message<"admiral.api.agent.v1.RevokeApiKeyRequest"> & {
|
|
632
632
|
/**
|
|
633
|
-
* The unique identifier of the
|
|
633
|
+
* The unique identifier of the key to revoke (UUID).
|
|
634
634
|
*
|
|
635
635
|
* @generated from field: string token_id = 1;
|
|
636
636
|
*/
|
|
637
637
|
tokenId: string;
|
|
638
638
|
};
|
|
639
639
|
/**
|
|
640
|
-
* Describes the message admiral.api.agent.v1.
|
|
641
|
-
* Use `create(
|
|
640
|
+
* Describes the message admiral.api.agent.v1.RevokeApiKeyRequest.
|
|
641
|
+
* Use `create(RevokeApiKeyRequestSchema)` to create a new message.
|
|
642
642
|
*/
|
|
643
|
-
export declare const
|
|
643
|
+
export declare const RevokeApiKeyRequestSchema: GenMessage<RevokeApiKeyRequest>;
|
|
644
644
|
/**
|
|
645
|
-
*
|
|
645
|
+
* RevokeApiKeyResponse contains the revoked agent API key metadata.
|
|
646
646
|
*
|
|
647
|
-
* @generated from message admiral.api.agent.v1.
|
|
647
|
+
* @generated from message admiral.api.agent.v1.RevokeApiKeyResponse
|
|
648
648
|
*/
|
|
649
|
-
export type
|
|
649
|
+
export type RevokeApiKeyResponse = Message<"admiral.api.agent.v1.RevokeApiKeyResponse"> & {
|
|
650
650
|
/**
|
|
651
|
-
* The
|
|
651
|
+
* The key metadata with updated status.
|
|
652
652
|
*
|
|
653
|
-
* @generated from field: admiral.common.v1.
|
|
653
|
+
* @generated from field: admiral.common.v1.ApiKey api_key = 1;
|
|
654
654
|
*/
|
|
655
|
-
|
|
655
|
+
apiKey?: ApiKey | undefined;
|
|
656
656
|
};
|
|
657
657
|
/**
|
|
658
|
-
* Describes the message admiral.api.agent.v1.
|
|
659
|
-
* Use `create(
|
|
658
|
+
* Describes the message admiral.api.agent.v1.RevokeApiKeyResponse.
|
|
659
|
+
* Use `create(RevokeApiKeyResponseSchema)` to create a new message.
|
|
660
660
|
*/
|
|
661
|
-
export declare const
|
|
661
|
+
export declare const RevokeApiKeyResponseSchema: GenMessage<RevokeApiKeyResponse>;
|
|
662
662
|
/**
|
|
663
663
|
* AgentKind names the execution contract an agent serves, by its canonical tool.
|
|
664
664
|
* The engine is a sub-axis within a kind (TERRAFORM runs terraform/tofu;
|
|
@@ -745,18 +745,24 @@ export declare enum AgentHealthStatus {
|
|
|
745
745
|
export declare const AgentHealthStatusSchema: GenEnum<AgentHealthStatus>;
|
|
746
746
|
/**
|
|
747
747
|
* AgentAPI is the management surface for execution agents: their lifecycle,
|
|
748
|
-
* their
|
|
749
|
-
*
|
|
750
|
-
*
|
|
748
|
+
* their API keys, and read-only visibility into the work they have done. It is
|
|
749
|
+
* the human-facing half of the agent contract, called with a user's own API key
|
|
750
|
+
* from the CLI, Terraform provider, or web app.
|
|
751
|
+
*
|
|
752
|
+
* An agent's key is bound to the agent's service account
|
|
753
|
+
* (BINDING_TYPE_SERVICE_ACCOUNT), not to the agent record: an agent HAS a
|
|
754
|
+
* service account rather than being one, so its credential rotates without
|
|
755
|
+
* touching the agent.
|
|
751
756
|
*
|
|
752
757
|
* The execution protocol the agents themselves speak lives in AgentRuntimeAPI
|
|
753
|
-
* (runtime.proto). That half is
|
|
758
|
+
* (runtime.proto). That half is reachable only with a service-account-bound
|
|
759
|
+
* key, excluded from the public OpenAPI
|
|
754
760
|
* surface, and changes with the agent binaries. Keeping the two apart means the
|
|
755
761
|
* documented management contract is not versioned against the churn of job
|
|
756
762
|
* bundles, hooks, and engines.
|
|
757
763
|
*
|
|
758
764
|
* Both agent kinds are managed here and share one identity, lifecycle, and
|
|
759
|
-
*
|
|
765
|
+
* key model:
|
|
760
766
|
*
|
|
761
767
|
* - TERRAFORM agents are the execution plane for infrastructure operations
|
|
762
768
|
* (plan, apply, destroy) run by a terraform-semantic engine (Terraform or
|
|
@@ -766,12 +772,12 @@ export declare const AgentHealthStatusSchema: GenEnum<AgentHealthStatus>;
|
|
|
766
772
|
* reporting workload telemetry and applying rendered manifest revisions.
|
|
767
773
|
*
|
|
768
774
|
* Administrators create an agent via CreateAgent (passing the kind), which
|
|
769
|
-
* returns
|
|
775
|
+
* returns an API key for deploying the agent binary. Once the
|
|
770
776
|
* agent boots and begins reporting through AgentRuntimeAPI, the server
|
|
771
777
|
* transitions its health from PENDING to HEALTHY.
|
|
772
778
|
*
|
|
773
779
|
* Management routes follow /v1/agents/... (plural, with IDs); the runtime
|
|
774
|
-
* protocol uses /v1/agent/... (singular, no ID; derived from the
|
|
780
|
+
* protocol uses /v1/agent/... (singular, no ID; derived from the key's binding).
|
|
775
781
|
*
|
|
776
782
|
* Message definitions live in companion files: jobs.proto (TERRAFORM execution)
|
|
777
783
|
* and workloads.proto (KUBERNETES telemetry and revision delivery).
|
|
@@ -784,14 +790,14 @@ export declare const AgentAPI: GenService<{
|
|
|
784
790
|
* Admin CRUD
|
|
785
791
|
* ---------------------------------------------------------------------------
|
|
786
792
|
* CreateAgent creates a new agent record within the caller's tenant and
|
|
787
|
-
* generates an initial
|
|
793
|
+
* generates an initial API key. The agent starts in PENDING
|
|
788
794
|
* health status until it begins reporting.
|
|
789
795
|
*
|
|
790
796
|
* The request's `kind` selects the agent's execution plane (TERRAFORM or KUBERNETES)
|
|
791
|
-
* and determines the
|
|
797
|
+
* and determines the key's auto-assigned scopes. The kind is immutable.
|
|
792
798
|
*
|
|
793
|
-
* The response includes a `
|
|
794
|
-
* exactly once. Deploy this
|
|
799
|
+
* The response includes a `plain_text_key`: the raw API key secret shown
|
|
800
|
+
* exactly once. Deploy this key to the agent binary for authentication.
|
|
795
801
|
*
|
|
796
802
|
* Scope: `agent:write`
|
|
797
803
|
*
|
|
@@ -846,7 +852,7 @@ export declare const AgentAPI: GenService<{
|
|
|
846
852
|
};
|
|
847
853
|
/**
|
|
848
854
|
* DeleteAgent permanently deletes an agent record and revokes all associated
|
|
849
|
-
*
|
|
855
|
+
* API keys. For TERRAFORM agents, any not-yet-completed jobs assigned
|
|
850
856
|
* to this agent will be failed. This action cannot be undone.
|
|
851
857
|
*
|
|
852
858
|
* Scope: `agent:write`
|
|
@@ -896,68 +902,68 @@ export declare const AgentAPI: GenService<{
|
|
|
896
902
|
};
|
|
897
903
|
/**
|
|
898
904
|
* ---------------------------------------------------------------------------
|
|
899
|
-
*
|
|
905
|
+
* API keys
|
|
900
906
|
* ---------------------------------------------------------------------------
|
|
901
|
-
*
|
|
902
|
-
*
|
|
903
|
-
*
|
|
907
|
+
* CreateApiKey creates a new API key bound to the specified agent's service
|
|
908
|
+
* account. Scopes are auto-assigned from the agent's kind and cannot be
|
|
909
|
+
* overridden. The response includes the raw secret, shown exactly once.
|
|
904
910
|
*
|
|
905
|
-
* Use this to create additional
|
|
906
|
-
* zero-downtime
|
|
911
|
+
* Use this to create additional API keys for an existing agent (e.g., for
|
|
912
|
+
* zero-downtime key rotation). The initial key is created automatically by
|
|
907
913
|
* CreateAgent.
|
|
908
914
|
*
|
|
909
915
|
* Scope: `agent:write`
|
|
910
916
|
*
|
|
911
|
-
* @generated from rpc admiral.api.agent.v1.AgentAPI.
|
|
917
|
+
* @generated from rpc admiral.api.agent.v1.AgentAPI.CreateApiKey
|
|
912
918
|
*/
|
|
913
|
-
|
|
919
|
+
createApiKey: {
|
|
914
920
|
methodKind: "unary";
|
|
915
|
-
input: typeof
|
|
916
|
-
output: typeof
|
|
921
|
+
input: typeof CreateApiKeyRequestSchema;
|
|
922
|
+
output: typeof CreateApiKeyResponseSchema;
|
|
917
923
|
};
|
|
918
924
|
/**
|
|
919
|
-
*
|
|
920
|
-
* agent.
|
|
925
|
+
* ListApiKeys returns a paginated list of API keys bound to the specified
|
|
926
|
+
* agent. Secrets are never included.
|
|
921
927
|
*
|
|
922
928
|
* Scope: `agent:read`
|
|
923
929
|
*
|
|
924
|
-
* @generated from rpc admiral.api.agent.v1.AgentAPI.
|
|
930
|
+
* @generated from rpc admiral.api.agent.v1.AgentAPI.ListApiKeys
|
|
925
931
|
*/
|
|
926
|
-
|
|
932
|
+
listApiKeys: {
|
|
927
933
|
methodKind: "unary";
|
|
928
|
-
input: typeof
|
|
929
|
-
output: typeof
|
|
934
|
+
input: typeof ListApiKeysRequestSchema;
|
|
935
|
+
output: typeof ListApiKeysResponseSchema;
|
|
930
936
|
};
|
|
931
937
|
/**
|
|
932
|
-
*
|
|
933
|
-
* secret is never included.
|
|
934
|
-
* is required in the path; the server resolves the parent agent from the
|
|
938
|
+
* GetApiKey retrieves a single API key by ID. Returns metadata only; the key
|
|
939
|
+
* secret is never included. Key IDs are globally unique, so no agent scoping
|
|
940
|
+
* is required in the path; the server resolves the parent agent from the key
|
|
935
941
|
* ID. Authorization is enforced via the `agent:read` scope, not by path prefix.
|
|
936
942
|
*
|
|
937
943
|
* Scope: `agent:read`
|
|
938
944
|
*
|
|
939
|
-
* @generated from rpc admiral.api.agent.v1.AgentAPI.
|
|
945
|
+
* @generated from rpc admiral.api.agent.v1.AgentAPI.GetApiKey
|
|
940
946
|
*/
|
|
941
|
-
|
|
947
|
+
getApiKey: {
|
|
942
948
|
methodKind: "unary";
|
|
943
|
-
input: typeof
|
|
944
|
-
output: typeof
|
|
949
|
+
input: typeof GetApiKeyRequestSchema;
|
|
950
|
+
output: typeof GetApiKeyResponseSchema;
|
|
945
951
|
};
|
|
946
952
|
/**
|
|
947
|
-
*
|
|
948
|
-
* will receive a 401 on its next request. If this is the only active
|
|
949
|
-
* the agent, the agent will become disconnected.
|
|
953
|
+
* RevokeApiKey permanently revokes an API key bound to this agent. The agent
|
|
954
|
+
* will receive a 401 on its next request. If this is the only active key for
|
|
955
|
+
* the agent, the agent will become disconnected. Key IDs are globally unique,
|
|
950
956
|
* so no agent scoping is required in the path; authorization is enforced via
|
|
951
957
|
* the `agent:write` scope, not by path prefix.
|
|
952
958
|
*
|
|
953
959
|
* Scope: `agent:write`
|
|
954
960
|
*
|
|
955
|
-
* @generated from rpc admiral.api.agent.v1.AgentAPI.
|
|
961
|
+
* @generated from rpc admiral.api.agent.v1.AgentAPI.RevokeApiKey
|
|
956
962
|
*/
|
|
957
|
-
|
|
963
|
+
revokeApiKey: {
|
|
958
964
|
methodKind: "unary";
|
|
959
|
-
input: typeof
|
|
960
|
-
output: typeof
|
|
965
|
+
input: typeof RevokeApiKeyRequestSchema;
|
|
966
|
+
output: typeof RevokeApiKeyResponseSchema;
|
|
961
967
|
};
|
|
962
968
|
/**
|
|
963
969
|
* ---------------------------------------------------------------------------
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent_pb.d.ts","sourceRoot":"","sources":["../../../../../../proto/admiral/api/agent/v1/agent_pb.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAC;AAE7F,OAAO,KAAK,EAAE,0BAA0B,EAAE,2BAA2B,EAAE,oBAAoB,EAAE,MAAM,cAAc,CAAC;AAElH,OAAO,KAAK,EAAE,wBAAwB,EAAE,yBAAyB,EAAE,qBAAqB,EAAE,+BAA+B,EAAE,gCAAgC,EAAE,0BAA0B,EAAE,2BAA2B,EAAE,MAAM,mBAAmB,CAAC;AAEhP,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,gCAAgC,CAAC;AAG/D,OAAO,KAAK,EAAE,
|
|
1
|
+
{"version":3,"file":"agent_pb.d.ts","sourceRoot":"","sources":["../../../../../../proto/admiral/api/agent/v1/agent_pb.ts"],"names":[],"mappings":"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"}
|