PolicyValue

  • A PolicyValue represents a specific value for a policy managed by the service.

  • The JSON representation includes policySchema (string) and value (object).

  • policySchema is the fully qualified name of the associated policy schema.

  • value is an object in Struct format representing the policy's value, compatible with its schema.

A particular value for a policy managed by the service.

JSON representation
{
  "policySchema": string,
  "value": {
    object
  }
}
Fields
policySchema

string

The fully qualified name of the policy schema associated with this policy.

value

object (Struct format)

The value of the policy that is compatible with the schema that it is associated with.