Skip to content

Commit

Permalink
fix(client): Allow for non-default API paths to be used.
Browse files Browse the repository at this point in the history
feat(tests): Allow for env vars to be sourced in generated tests.
BREAKING CHANGE: Rename `Agent_Reset0` to `Agents_Reset` and `Agent_Reset1` to `Agent_Reset` for multi and singleton agent resets.
  • Loading branch information
spbsoluble committed Dec 1, 2023
1 parent 5814879 commit 01014c1
Show file tree
Hide file tree
Showing 85 changed files with 2,528 additions and 988 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,9 @@ Class | Method | HTTP request | Description
*AgentApi* | [**AgentFetchLogs**](docs/AgentApi.md#agentfetchlogs) | **Post** /Agents/{id}/FetchLogs | Schedules a job on the agent to retrieve log files
*AgentApi* | [**AgentGetAgentDetail**](docs/AgentApi.md#agentgetagentdetail) | **Get** /Agents/{id} | Returns details for a single agent, specified by ID
*AgentApi* | [**AgentGetAgents**](docs/AgentApi.md#agentgetagents) | **Get** /Agents | Returns all agents according to the provided filter and output parameters
*AgentApi* | [**AgentReset0**](docs/AgentApi.md#agentreset0) | **Post** /Agents/Reset | Reset a list of agents
*AgentApi* | [**AgentReset1**](docs/AgentApi.md#agentreset1) | **Post** /Agents/{id}/Reset | Reset an agent to a new state
*AgentApi* | [**AgentReset**](docs/AgentApi.md#agentreset) | **Post** /Agents/{id}/Reset | Reset an agent to a new state
*AgentApi* | [**AgentSetAuthCertificateReenrollment**](docs/AgentApi.md#agentsetauthcertificatereenrollment) | **Post** /Agents/SetAuthCertificateReenrollment | Update the AuthCertificateReenrollment value for an agent to request or require (or unset the request) the agent to enroll for a new client authentication certificate on its next registration.
*AgentApi* | [**AgentsReset**](docs/AgentApi.md#agentsreset) | **Post** /Agents/Reset | Reset a list of agents
*AgentBlueprintApi* | [**AgentBlueprintApplyBlueprint**](docs/AgentBlueprintApi.md#agentblueprintapplyblueprint) | **Post** /AgentBluePrint/ApplyBlueprint | Applies the selected agent blueprint to the provided agents
*AgentBlueprintApi* | [**AgentBlueprintDeleteBlueprint**](docs/AgentBlueprintApi.md#agentblueprintdeleteblueprint) | **Delete** /AgentBluePrint/{id} | Deletes an agent blueprint by its Keyfactor identifier
*AgentBlueprintApi* | [**AgentBlueprintGenerateBlueprint**](docs/AgentBlueprintApi.md#agentblueprintgenerateblueprint) | **Post** /AgentBluePrint/GenerateBluePrint | Generates an agent blueprint from the provided agents
Expand Down
246 changes: 135 additions & 111 deletions api/command/api_agent.go

Large diffs are not rendered by default.

49 changes: 35 additions & 14 deletions api/command/api_agent_blueprint.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

35 changes: 27 additions & 8 deletions api/command/api_agent_blueprint_test.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

42 changes: 30 additions & 12 deletions api/command/api_agent_pool.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 15 additions & 4 deletions api/command/api_agent_pool_test.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 01014c1

Please sign in to comment.