@pulumiverse/gandi 0.0.9 → 0.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/domains/dnssecKey.js +22 -22
- package/domains/dnssecKey.js.map +1 -1
- package/domains/domain.d.ts +12 -0
- package/domains/domain.js +24 -22
- package/domains/domain.js.map +1 -1
- package/domains/getDomain.d.ts +0 -12
- package/domains/getDomain.js.map +1 -1
- package/domains/getGlueRecord.d.ts +0 -21
- package/domains/getGlueRecord.js.map +1 -1
- package/domains/glueRecord.js +22 -22
- package/domains/glueRecord.js.map +1 -1
- package/domains/nameservers.d.ts +3 -3
- package/domains/nameservers.js +19 -19
- package/domains/nameservers.js.map +1 -1
- package/email/forwarding.js +22 -22
- package/email/forwarding.js.map +1 -1
- package/email/getMailbox.d.ts +0 -18
- package/email/getMailbox.js.map +1 -1
- package/email/mailbox.js +22 -22
- package/email/mailbox.js.map +1 -1
- package/livedns/domain.js +18 -18
- package/livedns/domain.js.map +1 -1
- package/livedns/getDomain.d.ts +0 -9
- package/livedns/getDomain.js.map +1 -1
- package/livedns/getDomainNameserver.d.ts +0 -12
- package/livedns/getDomainNameserver.js.map +1 -1
- package/livedns/record.js +22 -22
- package/livedns/record.js.map +1 -1
- package/package.json +2 -2
- package/provider.js +10 -10
- package/provider.js.map +1 -1
- package/simplehosting/instance.js +22 -22
- package/simplehosting/instance.js.map +1 -1
- package/simplehosting/vhost.js +22 -22
- package/simplehosting/vhost.js.map +1 -1
- package/types/input.d.ts +0 -168
- package/types/output.d.ts +0 -168
package/types/output.d.ts
CHANGED
|
@@ -1,242 +1,74 @@
|
|
|
1
1
|
export declare namespace domains {
|
|
2
2
|
interface DomainAdmin {
|
|
3
|
-
/**
|
|
4
|
-
* City for the contact
|
|
5
|
-
*/
|
|
6
3
|
city: string;
|
|
7
|
-
/**
|
|
8
|
-
* The two letter country code for the contact
|
|
9
|
-
*/
|
|
10
4
|
country: string;
|
|
11
|
-
/**
|
|
12
|
-
* Whether or not to obfuscate contact data in WHOIS
|
|
13
|
-
*/
|
|
14
5
|
dataObfuscated?: boolean;
|
|
15
|
-
/**
|
|
16
|
-
* Contact email address
|
|
17
|
-
*/
|
|
18
6
|
email: string;
|
|
19
|
-
/**
|
|
20
|
-
* Extra parameters, needed for some jurisdictions
|
|
21
|
-
*/
|
|
22
7
|
extraParameters?: {
|
|
23
8
|
[key: string]: string;
|
|
24
9
|
};
|
|
25
|
-
/**
|
|
26
|
-
* Family name of the contact
|
|
27
|
-
*/
|
|
28
10
|
familyName: string;
|
|
29
|
-
/**
|
|
30
|
-
* Given name of the contact
|
|
31
|
-
*/
|
|
32
11
|
givenName: string;
|
|
33
|
-
/**
|
|
34
|
-
* Whether or not to obfuscate contact email in WHOIS
|
|
35
|
-
*/
|
|
36
12
|
mailObfuscated?: boolean;
|
|
37
|
-
/**
|
|
38
|
-
* The legal name of the organisation. Required for types other than person
|
|
39
|
-
*/
|
|
40
13
|
organisation?: string;
|
|
41
|
-
/**
|
|
42
|
-
* Phone number for the contact
|
|
43
|
-
*/
|
|
44
14
|
phone: string;
|
|
45
|
-
/**
|
|
46
|
-
* The state code for the contact
|
|
47
|
-
*/
|
|
48
15
|
state?: string;
|
|
49
|
-
/**
|
|
50
|
-
* Street Address of the contact
|
|
51
|
-
*/
|
|
52
16
|
streetAddr: string;
|
|
53
|
-
/**
|
|
54
|
-
* One of 'person', 'company', 'association', 'public body', or 'reseller'
|
|
55
|
-
*/
|
|
56
17
|
type: string;
|
|
57
|
-
/**
|
|
58
|
-
* Postal Code/Zipcode of the contact
|
|
59
|
-
*/
|
|
60
18
|
zip: string;
|
|
61
19
|
}
|
|
62
20
|
interface DomainBilling {
|
|
63
|
-
/**
|
|
64
|
-
* City for the contact
|
|
65
|
-
*/
|
|
66
21
|
city: string;
|
|
67
|
-
/**
|
|
68
|
-
* The two letter country code for the contact
|
|
69
|
-
*/
|
|
70
22
|
country: string;
|
|
71
|
-
/**
|
|
72
|
-
* Whether or not to obfuscate contact data in WHOIS
|
|
73
|
-
*/
|
|
74
23
|
dataObfuscated?: boolean;
|
|
75
|
-
/**
|
|
76
|
-
* Contact email address
|
|
77
|
-
*/
|
|
78
24
|
email: string;
|
|
79
|
-
/**
|
|
80
|
-
* Extra parameters, needed for some jurisdictions
|
|
81
|
-
*/
|
|
82
25
|
extraParameters?: {
|
|
83
26
|
[key: string]: string;
|
|
84
27
|
};
|
|
85
|
-
/**
|
|
86
|
-
* Family name of the contact
|
|
87
|
-
*/
|
|
88
28
|
familyName: string;
|
|
89
|
-
/**
|
|
90
|
-
* Given name of the contact
|
|
91
|
-
*/
|
|
92
29
|
givenName: string;
|
|
93
|
-
/**
|
|
94
|
-
* Whether or not to obfuscate contact email in WHOIS
|
|
95
|
-
*/
|
|
96
30
|
mailObfuscated?: boolean;
|
|
97
|
-
/**
|
|
98
|
-
* The legal name of the organisation. Required for types other than person
|
|
99
|
-
*/
|
|
100
31
|
organisation?: string;
|
|
101
|
-
/**
|
|
102
|
-
* Phone number for the contact
|
|
103
|
-
*/
|
|
104
32
|
phone: string;
|
|
105
|
-
/**
|
|
106
|
-
* The state code for the contact
|
|
107
|
-
*/
|
|
108
33
|
state?: string;
|
|
109
|
-
/**
|
|
110
|
-
* Street Address of the contact
|
|
111
|
-
*/
|
|
112
34
|
streetAddr: string;
|
|
113
|
-
/**
|
|
114
|
-
* One of 'person', 'company', 'association', 'public body', or 'reseller'
|
|
115
|
-
*/
|
|
116
35
|
type: string;
|
|
117
|
-
/**
|
|
118
|
-
* Postal Code/Zipcode of the contact
|
|
119
|
-
*/
|
|
120
36
|
zip: string;
|
|
121
37
|
}
|
|
122
38
|
interface DomainOwner {
|
|
123
|
-
/**
|
|
124
|
-
* City for the contact
|
|
125
|
-
*/
|
|
126
39
|
city: string;
|
|
127
|
-
/**
|
|
128
|
-
* The two letter country code for the contact
|
|
129
|
-
*/
|
|
130
40
|
country: string;
|
|
131
|
-
/**
|
|
132
|
-
* Whether or not to obfuscate contact data in WHOIS
|
|
133
|
-
*/
|
|
134
41
|
dataObfuscated?: boolean;
|
|
135
|
-
/**
|
|
136
|
-
* Contact email address
|
|
137
|
-
*/
|
|
138
42
|
email: string;
|
|
139
|
-
/**
|
|
140
|
-
* Extra parameters, needed for some jurisdictions
|
|
141
|
-
*/
|
|
142
43
|
extraParameters?: {
|
|
143
44
|
[key: string]: string;
|
|
144
45
|
};
|
|
145
|
-
/**
|
|
146
|
-
* Family name of the contact
|
|
147
|
-
*/
|
|
148
46
|
familyName: string;
|
|
149
|
-
/**
|
|
150
|
-
* Given name of the contact
|
|
151
|
-
*/
|
|
152
47
|
givenName: string;
|
|
153
|
-
/**
|
|
154
|
-
* Whether or not to obfuscate contact email in WHOIS
|
|
155
|
-
*/
|
|
156
48
|
mailObfuscated?: boolean;
|
|
157
|
-
/**
|
|
158
|
-
* The legal name of the organisation. Required for types other than person
|
|
159
|
-
*/
|
|
160
49
|
organisation?: string;
|
|
161
|
-
/**
|
|
162
|
-
* Phone number for the contact
|
|
163
|
-
*/
|
|
164
50
|
phone: string;
|
|
165
|
-
/**
|
|
166
|
-
* The state code for the contact
|
|
167
|
-
*/
|
|
168
51
|
state?: string;
|
|
169
|
-
/**
|
|
170
|
-
* Street Address of the contact
|
|
171
|
-
*/
|
|
172
52
|
streetAddr: string;
|
|
173
|
-
/**
|
|
174
|
-
* One of 'person', 'company', 'association', 'public body', or 'reseller'
|
|
175
|
-
*/
|
|
176
53
|
type: string;
|
|
177
|
-
/**
|
|
178
|
-
* Postal Code/Zipcode of the contact
|
|
179
|
-
*/
|
|
180
54
|
zip: string;
|
|
181
55
|
}
|
|
182
56
|
interface DomainTech {
|
|
183
|
-
/**
|
|
184
|
-
* City for the contact
|
|
185
|
-
*/
|
|
186
57
|
city: string;
|
|
187
|
-
/**
|
|
188
|
-
* The two letter country code for the contact
|
|
189
|
-
*/
|
|
190
58
|
country: string;
|
|
191
|
-
/**
|
|
192
|
-
* Whether or not to obfuscate contact data in WHOIS
|
|
193
|
-
*/
|
|
194
59
|
dataObfuscated?: boolean;
|
|
195
|
-
/**
|
|
196
|
-
* Contact email address
|
|
197
|
-
*/
|
|
198
60
|
email: string;
|
|
199
|
-
/**
|
|
200
|
-
* Extra parameters, needed for some jurisdictions
|
|
201
|
-
*/
|
|
202
61
|
extraParameters?: {
|
|
203
62
|
[key: string]: string;
|
|
204
63
|
};
|
|
205
|
-
/**
|
|
206
|
-
* Family name of the contact
|
|
207
|
-
*/
|
|
208
64
|
familyName: string;
|
|
209
|
-
/**
|
|
210
|
-
* Given name of the contact
|
|
211
|
-
*/
|
|
212
65
|
givenName: string;
|
|
213
|
-
/**
|
|
214
|
-
* Whether or not to obfuscate contact email in WHOIS
|
|
215
|
-
*/
|
|
216
66
|
mailObfuscated?: boolean;
|
|
217
|
-
/**
|
|
218
|
-
* The legal name of the organisation. Required for types other than person
|
|
219
|
-
*/
|
|
220
67
|
organisation?: string;
|
|
221
|
-
/**
|
|
222
|
-
* Phone number for the contact
|
|
223
|
-
*/
|
|
224
68
|
phone: string;
|
|
225
|
-
/**
|
|
226
|
-
* The state code for the contact
|
|
227
|
-
*/
|
|
228
69
|
state?: string;
|
|
229
|
-
/**
|
|
230
|
-
* Street Address of the contact
|
|
231
|
-
*/
|
|
232
70
|
streetAddr: string;
|
|
233
|
-
/**
|
|
234
|
-
* One of 'person', 'company', 'association', 'public body', or 'reseller'
|
|
235
|
-
*/
|
|
236
71
|
type: string;
|
|
237
|
-
/**
|
|
238
|
-
* Postal Code/Zipcode of the contact
|
|
239
|
-
*/
|
|
240
72
|
zip: string;
|
|
241
73
|
}
|
|
242
74
|
}
|