-
Notifications
You must be signed in to change notification settings - Fork 10
/
StaticIp.ts
52 lines (45 loc) · 1.18 KB
/
StaticIp.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import {map, mapArray} from '../common/Mapper';
import BitmovinResponse from './BitmovinResponse';
import CloudRegion from './CloudRegion';
import StaticIpStatus from './StaticIpStatus';
/**
* @export
* @class StaticIp
*/
export class StaticIp extends BitmovinResponse {
/**
* The IPv4 address of the static ip
* @type {string}
* @memberof StaticIp
*/
public ipAddress?: string;
/**
* Required if the static IP should be created for an AWS infrastructure account. If this is left blank the static Ip will be created for the managed cloud.
* @type {string}
* @memberof StaticIp
*/
public infrastructureId?: string;
/**
* Status of the Static Ip
* @type {StaticIpStatus}
* @memberof StaticIp
*/
public status?: StaticIpStatus;
/**
* The region of the static Ip (required)
* @type {CloudRegion}
* @memberof StaticIp
*/
public region?: CloudRegion;
constructor(obj?: Partial<StaticIp>) {
super(obj);
if(!obj) {
return;
}
this.ipAddress = map(obj.ipAddress);
this.infrastructureId = map(obj.infrastructureId);
this.status = map(obj.status);
this.region = map(obj.region);
}
}
export default StaticIp;