You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
798 B
39 lines
798 B
11 months ago
|
type InquireHostResponse = APICommandInquireHostResponseBody & {
|
||
|
hostIpAddress: string;
|
||
|
hostPassword: string;
|
||
|
};
|
||
|
|
||
|
/** TestAccessForm */
|
||
|
|
||
|
type TestAccessFormikValues = {
|
||
|
ip: string;
|
||
|
password: string;
|
||
|
};
|
||
|
|
||
|
type TestAccessFormProps = {
|
||
|
setResponse: React.Dispatch<
|
||
|
React.SetStateAction<InquireHostResponse | undefined>
|
||
|
>;
|
||
|
};
|
||
|
|
||
|
/** PrepareHostForm */
|
||
|
|
||
|
/**
|
||
|
* @property hostType - Type of host to prepare; note that `node` is `subnode`
|
||
|
* due to renaming.
|
||
|
*/
|
||
|
type PrepareHostFormikValues = TestAccessFormikValues & {
|
||
|
enterpriseKey?: string;
|
||
|
name: string;
|
||
|
redhatConfirmPassword?: string;
|
||
|
redhatPassword?: string;
|
||
|
redhatUsername?: string;
|
||
|
type: '' | 'dr' | 'subnode';
|
||
|
uuid: string;
|
||
|
};
|
||
|
|
||
|
type PreapreHostFormProps = {
|
||
|
host: InquireHostResponse;
|
||
|
tools: CrudListFormTools;
|
||
|
};
|