|
| 1 | +/* tslint:disable */ |
| 2 | +/* eslint-disable */ |
| 3 | +/** |
| 4 | + * vpc |
| 5 | + * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) |
| 6 | + * |
| 7 | + * OpenAPI spec version: common-version |
| 8 | + * |
| 9 | + * |
| 10 | + * NOTE: This class is auto generated by the swagger code generator program. |
| 11 | + * https://github.com/swagger-api/swagger-codegen.git |
| 12 | + * Do not edit the class manually. |
| 13 | + */ |
| 14 | + |
| 15 | +import { TagForAllocateEipAddressInput } from './tag-for-allocate-eip-address-input'; |
| 16 | + /** |
| 17 | + * |
| 18 | + * |
| 19 | + * @export |
| 20 | + * @interface AllocateEipAddressRequest |
| 21 | + */ |
| 22 | +export interface AllocateEipAddressRequest { |
| 23 | + |
| 24 | + /** |
| 25 | + * @type {number} |
| 26 | + * @memberof AllocateEipAddressRequest |
| 27 | + */ |
| 28 | + Bandwidth?: number; |
| 29 | + |
| 30 | + /** |
| 31 | + * @type {string} |
| 32 | + * @memberof AllocateEipAddressRequest |
| 33 | + */ |
| 34 | + BandwidthPackageId?: string; |
| 35 | + |
| 36 | + /** |
| 37 | + * @type {number} |
| 38 | + * @memberof AllocateEipAddressRequest |
| 39 | + */ |
| 40 | + BillingType?: number; |
| 41 | + |
| 42 | + /** |
| 43 | + * @type {string} |
| 44 | + * @memberof AllocateEipAddressRequest |
| 45 | + */ |
| 46 | + ClientToken?: string; |
| 47 | + |
| 48 | + /** |
| 49 | + * @type {string} |
| 50 | + * @memberof AllocateEipAddressRequest |
| 51 | + */ |
| 52 | + Description?: string; |
| 53 | + |
| 54 | + /** |
| 55 | + * @type {string} |
| 56 | + * @memberof AllocateEipAddressRequest |
| 57 | + */ |
| 58 | + ISP?: AllocateEipAddressRequestISPEnum; |
| 59 | + |
| 60 | + /** |
| 61 | + * @type {string} |
| 62 | + * @memberof AllocateEipAddressRequest |
| 63 | + */ |
| 64 | + IpAddress?: string; |
| 65 | + |
| 66 | + /** |
| 67 | + * @type {string} |
| 68 | + * @memberof AllocateEipAddressRequest |
| 69 | + */ |
| 70 | + IpAddressPoolId?: string; |
| 71 | + |
| 72 | + /** |
| 73 | + * @type {string} |
| 74 | + * @memberof AllocateEipAddressRequest |
| 75 | + */ |
| 76 | + Name?: string; |
| 77 | + |
| 78 | + /** |
| 79 | + * @type {number} |
| 80 | + * @memberof AllocateEipAddressRequest |
| 81 | + */ |
| 82 | + Period?: number; |
| 83 | + |
| 84 | + /** |
| 85 | + * @type {number} |
| 86 | + * @memberof AllocateEipAddressRequest |
| 87 | + */ |
| 88 | + PeriodUnit?: number; |
| 89 | + |
| 90 | + /** |
| 91 | + * @type {string} |
| 92 | + * @memberof AllocateEipAddressRequest |
| 93 | + */ |
| 94 | + ProjectName?: string; |
| 95 | + |
| 96 | + /** |
| 97 | + * @type {number} |
| 98 | + * @memberof AllocateEipAddressRequest |
| 99 | + */ |
| 100 | + RenewPeriodTimes?: number; |
| 101 | + |
| 102 | + /** |
| 103 | + * @type {number} |
| 104 | + * @memberof AllocateEipAddressRequest |
| 105 | + */ |
| 106 | + RenewType?: number; |
| 107 | + |
| 108 | + /** |
| 109 | + * @type {number} |
| 110 | + * @memberof AllocateEipAddressRequest |
| 111 | + */ |
| 112 | + SecurityProtectionInstanceId?: number; |
| 113 | + |
| 114 | + /** |
| 115 | + * @type {Array<string>} |
| 116 | + * @memberof AllocateEipAddressRequest |
| 117 | + */ |
| 118 | + SecurityProtectionTypes?: Array<string>; |
| 119 | + |
| 120 | + /** |
| 121 | + * @type {Array<TagForAllocateEipAddressInput>} |
| 122 | + * @memberof AllocateEipAddressRequest |
| 123 | + */ |
| 124 | + Tags?: Array<TagForAllocateEipAddressInput>; |
| 125 | +} |
| 126 | + |
| 127 | +/** |
| 128 | + * @export |
| 129 | + * @enum {string} |
| 130 | + */ |
| 131 | +export enum AllocateEipAddressRequestISPEnum { |
| 132 | + BGP = 'BGP', |
| 133 | + SingleLineBGP = 'SingleLine_BGP', |
| 134 | + StaticBGP = 'Static_BGP', |
| 135 | + FusionBGP = 'Fusion_BGP', |
| 136 | + ChinaMobile = 'ChinaMobile', |
| 137 | + ChinaUnicom = 'ChinaUnicom', |
| 138 | + ChinaTelecom = 'ChinaTelecom', |
| 139 | + ChinaMobileValue = 'ChinaMobile_Value', |
| 140 | + ChinaUnicomValue = 'ChinaUnicom_Value', |
| 141 | + ChinaTelecomValue = 'ChinaTelecom_Value' |
| 142 | +} |
| 143 | + |
0 commit comments