@gridscale/api
Version:
gridscale API Wrapper
55 lines • 1.24 kB
text/typescript
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
export const $LoadbalancerCreate = {
properties: {
name: {
type: 'string',
isRequired: true,
},
forwarding_rules: {
type: 'array',
contains: {
properties: {
},
},
isRequired: true,
},
backend_servers: {
type: 'array',
contains: {
properties: {
},
},
isRequired: true,
},
status: {
type: 'string',
},
redirect_http_to_https: {
type: 'boolean',
isRequired: true,
},
labels: {
type: 'array',
contains: {
type: 'string',
},
isRequired: true,
},
algorithm: {
type: 'string',
isRequired: true,
},
listen_ipv4_uuid: {
type: 'string',
isRequired: true,
format: 'uuid',
},
listen_ipv6_uuid: {
type: 'string',
isRequired: true,
format: 'uuid',
},
},
};