Share feedback
Answers are generated based on the documentation.

Experimental

Schema

CredentialFenceReceipt

Type: object

CredentialFenceReceipt acknowledges one completed generation without granting current use.
generation · required

Type: integer | string

generation increases for each accepted material/rule replacement on that target.
All schema constraints and annotations
{
  "description": "generation increases for each accepted material/rule replacement on that target.",
  "exclusiveMinimum": 0,
  "format": "int64",
  "type": [
    "integer",
    "string"
  ]
}
target · required

Type: string

target is the complete Sandbox or Secret resource name bound to this receipt.
All schema constraints and annotations
{
  "description": "target is the complete Sandbox or Secret resource name bound to this receipt.",
  "pattern": "^(sandboxes|secrets)/[^/]+$",
  "type": "string"
}
All schema constraints and annotations
{
  "description": "CredentialFenceReceipt acknowledges one completed generation without granting current use.",
  "properties": {
    "generation": {
      "description": "generation increases for each accepted material/rule replacement on that target.",
      "exclusiveMinimum": 0,
      "format": "int64",
      "type": [
        "integer",
        "string"
      ]
    },
    "target": {
      "description": "target is the complete Sandbox or Secret resource name bound to this receipt.",
      "pattern": "^(sandboxes|secrets)/[^/]+$",
      "type": "string"
    }
  },
  "required": [
    "target",
    "generation"
  ],
  "title": "CredentialFenceReceipt",
  "type": "object"
}