All URIs are relative to https://chaos.qernal.com/v1
Method | HTTP request | Description |
---|---|---|
ProjectsSecretsCreate | Post /projects/{project_id}/secrets | Create project secret |
ProjectsSecretsDelete | Delete /projects/{project_id}/secrets/{secret_name} | Delete project secret |
ProjectsSecretsGet | Get /projects/{project_id}/secrets/{secret_name} | Get project secret |
ProjectsSecretsList | Get /projects/{project_id}/secrets | List project secrets of a specific type |
ProjectsSecretsUpdate | Put /projects/{project_id}/secrets/{secret_name} | Update project secret |
SecretResponse ProjectsSecretsCreate(ctx, projectId).SecretBody(secretBody).Execute()
Create project secret
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/qernal/openapi-chaos-go-client"
)
func main() {
projectId := "3069614e-adc8-47cb-a69c-decf9c5f90fc" // string | Project ID reference
secretBody := *openapiclient.NewSecretBody("MY_SECRET", openapiclient.SecretCreateType("registry"), openapiclient.SecretCreatePayload{SecretCertificate: openapiclient.NewSecretCertificate("<x509 certificate pem format>", "<base64 encrypted pkcs8 or pkcs1 pem format>")}, "keys/dek/123") // SecretBody | Create/Update any field The example generated may only be for one of the secret types, look towards the payload section of the schema for further fields, values and examples.
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.SecretsAPI.ProjectsSecretsCreate(context.Background(), projectId).SecretBody(secretBody).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `SecretsAPI.ProjectsSecretsCreate``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `ProjectsSecretsCreate`: SecretResponse
fmt.Fprintf(os.Stdout, "Response from `SecretsAPI.ProjectsSecretsCreate`: %v\n", resp)
}
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
projectId | string | Project ID reference |
Other parameters are passed through a pointer to a apiProjectsSecretsCreateRequest struct via the builder pattern
Name | Type | Description | Notes |
---|
secretBody | SecretBody | Create/Update any field The example generated may only be for one of the secret types, look towards the payload section of the schema for further fields, values and examples. |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
DeletedResponse ProjectsSecretsDelete(ctx, projectId, secretName).Execute()
Delete project secret
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/qernal/openapi-chaos-go-client"
)
func main() {
projectId := "3069614e-adc8-47cb-a69c-decf9c5f90fc" // string | Project ID reference
secretName := "MY_SECRET" // string | Unique secret name
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.SecretsAPI.ProjectsSecretsDelete(context.Background(), projectId, secretName).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `SecretsAPI.ProjectsSecretsDelete``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `ProjectsSecretsDelete`: DeletedResponse
fmt.Fprintf(os.Stdout, "Response from `SecretsAPI.ProjectsSecretsDelete`: %v\n", resp)
}
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
projectId | string | Project ID reference | |
secretName | string | Unique secret name |
Other parameters are passed through a pointer to a apiProjectsSecretsDeleteRequest struct via the builder pattern
Name | Type | Description | Notes |
---|
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
SecretMetaResponse ProjectsSecretsGet(ctx, projectId, secretName).Execute()
Get project secret
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/qernal/openapi-chaos-go-client"
)
func main() {
projectId := "3069614e-adc8-47cb-a69c-decf9c5f90fc" // string | Project ID reference
secretName := "MY_SECRET" // string | Unique secret name
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.SecretsAPI.ProjectsSecretsGet(context.Background(), projectId, secretName).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `SecretsAPI.ProjectsSecretsGet``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `ProjectsSecretsGet`: SecretMetaResponse
fmt.Fprintf(os.Stdout, "Response from `SecretsAPI.ProjectsSecretsGet`: %v\n", resp)
}
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
projectId | string | Project ID reference | |
secretName | string | Unique secret name |
Other parameters are passed through a pointer to a apiProjectsSecretsGetRequest struct via the builder pattern
Name | Type | Description | Notes |
---|
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ListSecretResponse ProjectsSecretsList(ctx, projectId).Page(page).SecretType(secretType).Execute()
List project secrets of a specific type
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/qernal/openapi-chaos-go-client"
)
func main() {
projectId := "3069614e-adc8-47cb-a69c-decf9c5f90fc" // string | Project ID reference
page := *openapiclient.NewOrganisationsListPageParameter() // OrganisationsListPageParameter | Query parameters for pagination (optional)
secretType := openapiclient.SecretMetaType("registry") // SecretMetaType | Type of secret to filter on (optional)
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.SecretsAPI.ProjectsSecretsList(context.Background(), projectId).Page(page).SecretType(secretType).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `SecretsAPI.ProjectsSecretsList``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `ProjectsSecretsList`: ListSecretResponse
fmt.Fprintf(os.Stdout, "Response from `SecretsAPI.ProjectsSecretsList`: %v\n", resp)
}
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
projectId | string | Project ID reference |
Other parameters are passed through a pointer to a apiProjectsSecretsListRequest struct via the builder pattern
Name | Type | Description | Notes |
---|
page | OrganisationsListPageParameter | Query parameters for pagination | secretType | SecretMetaType | Type of secret to filter on |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
SecretResponse ProjectsSecretsUpdate(ctx, projectId, secretName).SecretBodyPatch(secretBodyPatch).Execute()
Update project secret
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/qernal/openapi-chaos-go-client"
)
func main() {
projectId := "3069614e-adc8-47cb-a69c-decf9c5f90fc" // string | Project ID reference
secretName := "MY_SECRET" // string | Unique secret name
secretBodyPatch := *openapiclient.NewSecretBodyPatch(openapiclient.SecretCreateType("registry"), openapiclient.SecretCreatePayload{SecretCertificate: openapiclient.NewSecretCertificate("<x509 certificate pem format>", "<base64 encrypted pkcs8 or pkcs1 pem format>")}, "keys/dek/123") // SecretBodyPatch | Update any field
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.SecretsAPI.ProjectsSecretsUpdate(context.Background(), projectId, secretName).SecretBodyPatch(secretBodyPatch).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `SecretsAPI.ProjectsSecretsUpdate``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `ProjectsSecretsUpdate`: SecretResponse
fmt.Fprintf(os.Stdout, "Response from `SecretsAPI.ProjectsSecretsUpdate`: %v\n", resp)
}
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
projectId | string | Project ID reference | |
secretName | string | Unique secret name |
Other parameters are passed through a pointer to a apiProjectsSecretsUpdateRequest struct via the builder pattern
Name | Type | Description | Notes |
---|
secretBodyPatch | SecretBodyPatch | Update any field |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]