Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48210,7 +48210,6 @@ components:
$ref: "#/components/schemas/IncidentUserDefinedRolePolicy"
required:
- name
- policy
type: object
IncidentUserDefinedRoleDataAttributesResponse:
description: Attributes of an incident user-defined role.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export class IncidentUserDefinedRoleDataAttributesRequest {
/**
* Policy configuration for a user-defined role.
*/
"policy": IncidentUserDefinedRolePolicy;
"policy"?: IncidentUserDefinedRolePolicy;
/**
* A container for additional, undeclared properties.
* This is a holder for any undeclared properties as specified with
Expand Down Expand Up @@ -45,7 +45,6 @@ export class IncidentUserDefinedRoleDataAttributesRequest {
policy: {
baseName: "policy",
type: "IncidentUserDefinedRolePolicy",
required: true,
},
additionalProperties: {
baseName: "additionalProperties",
Expand Down
Loading