Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

api: update generated api client #47

Merged
merged 1 commit into from
Apr 25, 2024
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
2 changes: 1 addition & 1 deletion api
42 changes: 30 additions & 12 deletions src/Api/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export interface Domain {
*/
domain_id?: string;
/**
* A name of a domain (all lower-case)
* A name of a domain (all lower-case). The domain name can only be set during initial registration and not be modified by updates.
* @type {string}
* @memberof Domain
*/
Expand Down Expand Up @@ -144,14 +144,20 @@ export interface DomainIpa {
* @memberof DomainIpa
*/
servers: Array<DomainIpaServer>;
/**
* List of automount locations for AutoFS
* @type {Array<string>}
* @memberof DomainIpa
*/
automount_locations?: Array<string>;
/**
* A base64 representation of all the list of chain of certificates, including the server ca.
* @type {Array<Certificate>}
* @memberof DomainIpa
*/
ca_certs: Array<Certificate>;
/**
* List of allowed locations
* List of DNS locations
* @type {Array<Location>}
* @memberof DomainIpa
*/
Expand All @@ -163,7 +169,7 @@ export interface DomainIpa {
*/
realm_domains: Array<string>;
/**
* A Kerberos realm name (usually all upper-case domain name)
* A Kerberos realm name (usually all upper-case domain name). The realm can only be set during initial registration and not be modified by updates.
* @type {string}
* @memberof DomainIpa
*/
Expand Down Expand Up @@ -295,7 +301,7 @@ export interface DomainRegisterResponse {
*/
domain_id: string;
/**
* A name of a domain (all lower-case)
* A name of a domain (all lower-case). The domain name can only be set during initial registration and not be modified by updates.
* @type {string}
* @memberof DomainRegisterResponse
*/
Expand Down Expand Up @@ -345,7 +351,7 @@ export interface DomainResponse {
*/
domain_id: string;
/**
* A name of a domain (all lower-case)
* A name of a domain (all lower-case). The domain name can only be set during initial registration and not be modified by updates.
* @type {string}
* @memberof DomainResponse
*/
Expand Down Expand Up @@ -407,7 +413,7 @@ export interface DomainUpdateResponse {
*/
domain_id?: string;
/**
* A name of a domain (all lower-case)
* A name of a domain (all lower-case). The domain name can only be set during initial registration and not be modified by updates.
* @type {string}
* @memberof DomainUpdateResponse
*/
Expand Down Expand Up @@ -489,7 +495,7 @@ export interface HostConf {
*/
domain_id?: string;
/**
* A name of a domain (all lower-case)
* A name of a domain (all lower-case). The domain name can only be set during initial registration and not be modified by updates.
* @type {string}
* @memberof HostConf
*/
Expand All @@ -508,6 +514,12 @@ export interface HostConf {
* @interface HostConfIpa
*/
export interface HostConfIpa {
/**
* Automount location name for ipa-client-automount
* @type {string}
* @memberof HostConfIpa
*/
automount_location?: string;
/**
* A string of concatenated, PEM-encoded X.509 certificates
* @type {string}
Expand All @@ -521,7 +533,13 @@ export interface HostConfIpa {
*/
enrollment_servers: Array<HostConfIpaServer>;
/**
* A Kerberos realm name (usually all upper-case domain name)
* List of additional arguments for ipa-client-install
* @type {Array<string>}
* @memberof HostConfIpa
*/
ipa_client_install_args?: Array<string>;
/**
* A Kerberos realm name (usually all upper-case domain name). The realm can only be set during initial registration and not be modified by updates.
* @type {string}
* @memberof HostConfIpa
*/
Expand Down Expand Up @@ -565,7 +583,7 @@ export interface HostConfResponseSchema {
*/
domain_id: string;
/**
* A name of a domain (all lower-case)
* A name of a domain (all lower-case). The domain name can only be set during initial registration and not be modified by updates.
* @type {string}
* @memberof HostConfResponseSchema
*/
Expand Down Expand Up @@ -621,7 +639,7 @@ export interface ListDomainsData {
*/
domain_id: string;
/**
* A name of a domain (all lower-case)
* A name of a domain (all lower-case). The domain name can only be set during initial registration and not be modified by updates.
* @type {string}
* @memberof ListDomainsData
*/
Expand Down Expand Up @@ -765,7 +783,7 @@ export interface RegisterDomainRequest {
*/
domain_id?: string;
/**
* A name of a domain (all lower-case)
* A name of a domain (all lower-case). The domain name can only be set during initial registration and not be modified by updates.
* @type {string}
* @memberof RegisterDomainRequest
*/
Expand Down Expand Up @@ -810,7 +828,7 @@ export interface SigningKeysResponse {
*/
export interface UpdateDomainAgentRequest {
/**
* A name of a domain (all lower-case)
* A name of a domain (all lower-case). The domain name can only be set during initial registration and not be modified by updates.
* @type {string}
* @memberof UpdateDomainAgentRequest
*/
Expand Down
Loading