Variable: ModelSecurityGroupResponseSchema
const ModelSecurityGroupResponseSchema: ZodObject<{
enabled_rule_count: ZodOptional<ZodNumber>;
uuid: ZodString;
tsg_id: ZodString;
created_at: ZodString;
updated_at: ZodString;
name: ZodString;
description: ZodString;
source_type: ZodString;
state: ZodString;
is_tombstone: ZodBoolean;
}, "passthrough", ZodTypeAny, objectOutputType<{
enabled_rule_count: ZodOptional<ZodNumber>;
uuid: ZodString;
tsg_id: ZodString;
created_at: ZodString;
updated_at: ZodString;
name: ZodString;
description: ZodString;
source_type: ZodString;
state: ZodString;
is_tombstone: ZodBoolean;
}, ZodTypeAny, "passthrough">, objectInputType<{
enabled_rule_count: ZodOptional<ZodNumber>;
uuid: ZodString;
tsg_id: ZodString;
created_at: ZodString;
updated_at: ZodString;
name: ZodString;
description: ZodString;
source_type: ZodString;
state: ZodString;
is_tombstone: ZodBoolean;
}, ZodTypeAny, "passthrough">>;
Defined in: src/models/model-security.ts:597
Zod schema for a model security group response.