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
12 changes: 12 additions & 0 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -71444,6 +71444,10 @@
"no_default_ceiling_policy": {
"type": "boolean",
"description": "Opt out of automatically adding the default ceiling policies to this agent registration."
},
"owner": {
"type": "string",
"description": "Owner of the registration."
}
},
"required": [
Expand Down Expand Up @@ -71476,6 +71480,10 @@
"no_default_ceiling_policy": {
"type": "boolean",
"description": "Opt out of automatically adding the default ceiling policies to this agent registration."
},
"owner": {
"type": "string",
"description": "Owner of the registration."
}
},
"required": [
Expand Down Expand Up @@ -71508,6 +71516,10 @@
"no_default_ceiling_policy": {
"type": "boolean",
"description": "Opt out of automatically adding the default ceiling policies to this agent registration."
},
"owner": {
"type": "string",
"description": "Owner of the registration."
}
},
"required": [
Expand Down
8 changes: 8 additions & 0 deletions src/models/RegisterCreateRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,12 @@ export interface RegisterCreateRequest {
* @memberof RegisterCreateRequest
*/
no_default_ceiling_policy?: boolean;
/**
* Owner of the registration.
* @type {string}
* @memberof RegisterCreateRequest
*/
owner?: string;
}

/**
Expand Down Expand Up @@ -86,6 +92,7 @@ export function RegisterCreateRequestFromJSONTyped(json: any, ignoreDiscriminato
'entity_id': json['entity_id'],
'id': json['id'] == null ? undefined : json['id'],
'no_default_ceiling_policy': json['no_default_ceiling_policy'] == null ? undefined : json['no_default_ceiling_policy'],
'owner': json['owner'] == null ? undefined : json['owner'],
};
}

Expand All @@ -106,6 +113,7 @@ export function RegisterCreateRequestToJSONTyped(value?: RegisterCreateRequest |
'entity_id': value['entity_id'],
'id': value['id'],
'no_default_ceiling_policy': value['no_default_ceiling_policy'],
'owner': value['owner'],
};
}

8 changes: 8 additions & 0 deletions src/models/RegistrationUpdateByIdRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ export interface RegistrationUpdateByIdRequest {
* @memberof RegistrationUpdateByIdRequest
*/
no_default_ceiling_policy?: boolean;
/**
* Owner of the registration.
* @type {string}
* @memberof RegistrationUpdateByIdRequest
*/
owner?: string;
}

/**
Expand All @@ -79,6 +85,7 @@ export function RegistrationUpdateByIdRequestFromJSONTyped(json: any, ignoreDisc
'display_name': json['display_name'],
'entity_id': json['entity_id'],
'no_default_ceiling_policy': json['no_default_ceiling_policy'] == null ? undefined : json['no_default_ceiling_policy'],
'owner': json['owner'] == null ? undefined : json['owner'],
};
}

Expand All @@ -98,6 +105,7 @@ export function RegistrationUpdateByIdRequestToJSONTyped(value?: RegistrationUpd
'display_name': value['display_name'],
'entity_id': value['entity_id'],
'no_default_ceiling_policy': value['no_default_ceiling_policy'],
'owner': value['owner'],
};
}

8 changes: 8 additions & 0 deletions src/models/RegistrationUpdateByNameRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ export interface RegistrationUpdateByNameRequest {
* @memberof RegistrationUpdateByNameRequest
*/
no_default_ceiling_policy?: boolean;
/**
* Owner of the registration.
* @type {string}
* @memberof RegistrationUpdateByNameRequest
*/
owner?: string;
}

/**
Expand All @@ -78,6 +84,7 @@ export function RegistrationUpdateByNameRequestFromJSONTyped(json: any, ignoreDi
'entity_id': json['entity_id'],
'id': json['id'] == null ? undefined : json['id'],
'no_default_ceiling_policy': json['no_default_ceiling_policy'] == null ? undefined : json['no_default_ceiling_policy'],
'owner': json['owner'] == null ? undefined : json['owner'],
};
}

Expand All @@ -97,6 +104,7 @@ export function RegistrationUpdateByNameRequestToJSONTyped(value?: RegistrationU
'entity_id': value['entity_id'],
'id': value['id'],
'no_default_ceiling_policy': value['no_default_ceiling_policy'],
'owner': value['owner'],
};
}