Speakeasy · Schema

GithubStorePublishingSecretsRequest

A request to store publishing secrets for a github target

AIDocumentationMCPPlatformSDKsTerraformTesting

Properties

Name Type Description
generate_gen_lock_id string The generation lock ID
secrets object A map of secrets to store in the GitHub target
View JSON Schema on GitHub

JSON Schema

speakeasy-githubstorepublishingsecretsrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GithubStorePublishingSecretsRequest",
  "title": "GithubStorePublishingSecretsRequest",
  "description": "A request to store publishing secrets for a github target",
  "type": "object",
  "properties": {
    "generate_gen_lock_id": {
      "type": "string",
      "description": "The generation lock ID"
    },
    "secrets": {
      "type": "object",
      "description": "A map of secrets to store in the GitHub target",
      "additionalProperties": {
        "type": "string"
      }
    }
  },
  "required": [
    "generate_gen_lock_id"
  ]
}