blob: f20b142d2659ee6846d143752227de5a6703e93f [file] [log] [blame]
Bu Sun Kim715bd7f2019-06-14 16:50:42 -07001<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5 margin: 0;
6 padding: 0;
7 border: 0;
8 font-weight: inherit;
9 font-style: inherit;
10 font-size: 100%;
11 font-family: inherit;
12 vertical-align: baseline;
13}
14
15body {
16 font-size: 13px;
17 padding: 1em;
18}
19
20h1 {
21 font-size: 26px;
22 margin-bottom: 1em;
23}
24
25h2 {
26 font-size: 24px;
27 margin-bottom: 1em;
28}
29
30h3 {
31 font-size: 20px;
32 margin-bottom: 1em;
33 margin-top: 1em;
34}
35
36pre, code {
37 line-height: 1.5;
38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42 margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46 font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50 border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54 margin-top: 0.5em;
55}
56
57.firstline {
58 margin-left: 2 em;
59}
60
61.method {
62 margin-top: 1em;
63 border: solid 1px #CCC;
64 padding: 1em;
65 background: #EEE;
66}
67
68.details {
69 font-weight: bold;
70 font-size: 14px;
71}
72
73</style>
74
75<h1><a href="firebasehosting_v1beta1.html">Firebase Hosting API</a> . <a href="firebasehosting_v1beta1.sites.html">sites</a> . <a href="firebasehosting_v1beta1.sites.domains.html">domains</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070078 <code><a href="#create">create(parent, body=None, x__xgafv=None)</a></code></p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070079<p class="firstline">Creates a domain mapping on the specified site.</p>
80<p class="toc_element">
81 <code><a href="#delete">delete(name, x__xgafv=None)</a></code></p>
82<p class="firstline">Deletes the existing domain mapping on the specified site.</p>
83<p class="toc_element">
84 <code><a href="#get">get(name, x__xgafv=None)</a></code></p>
85<p class="firstline">Gets a domain mapping on the specified site.</p>
86<p class="toc_element">
Bu Sun Kimd059ad82020-07-22 17:02:09 -070087 <code><a href="#list">list(parent, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070088<p class="firstline">Lists the domains for the specified site.</p>
89<p class="toc_element">
90 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
91<p class="firstline">Retrieves the next page of results.</p>
92<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070093 <code><a href="#update">update(name, body=None, x__xgafv=None)</a></code></p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070094<p class="firstline">Updates the specified domain mapping, creating the mapping as if it does</p>
95<h3>Method Details</h3>
96<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -070097 <code class="details" id="create">create(parent, body=None, x__xgafv=None)</code>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070098 <pre>Creates a domain mapping on the specified site.
99
100Args:
101 parent: string, Required. The parent to create the domain association for, in the format:
Dan O'Mearadd494642020-05-01 07:42:23 -0700102&lt;code&gt;sites/&lt;var&gt;site-name&lt;/var&gt;&lt;/code&gt; (required)
103 body: object, The request body.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700104 The object takes the form of:
105
106{ # The intended behavior and status information of a domain.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700107 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time at which the domain was last updated.
108 &quot;domainRedirect&quot;: { # Defines the behavior of a domain-level redirect. Domain redirects preserve # If set, the domain should redirect with the provided parameters.
109 # the path of the redirect but replace the requested domain with the one
110 # specified in the redirect configuration.
111 &quot;type&quot;: &quot;A String&quot;, # Required. The redirect status code.
112 &quot;domainName&quot;: &quot;A String&quot;, # Required. The domain name to redirect to.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700113 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700114 &quot;status&quot;: &quot;A String&quot;, # Output only. Additional status of the domain association.
115 &quot;provisioning&quot;: { # The current certificate provisioning status information for a domain. # Output only. Information about the provisioning of certificates and the
116 # health of the DNS resolution for the domain.
117 &quot;certChallengeHttp&quot;: { # Represents an HTTP certificate challenge. # The HTTP challenge for generating a certificate.
118 &quot;token&quot;: &quot;A String&quot;, # The token to serve at the specified URL path to satisfy the certificate
119 # challenge.
120 &quot;path&quot;: &quot;A String&quot;, # The URL path on which to serve the specified token to satisfy the
121 # certificate challenge.
122 },
123 &quot;dnsStatus&quot;: &quot;A String&quot;, # The DNS record match status as of the last DNS fetch.
124 &quot;discoveredIps&quot;: [ # The IPs found at the last DNS fetch.
125 &quot;A String&quot;,
126 ],
127 &quot;certStatus&quot;: &quot;A String&quot;, # The certificate provisioning status; updated when Firebase Hosting
128 # provisions an SSL certificate for the domain.
129 &quot;certChallengeDns&quot;: { # Represents a DNS certificate challenge. # The DNS challenge for generating a certificate.
130 &quot;token&quot;: &quot;A String&quot;, # The value that must be present as a TXT record on the domain name to
131 # satisfy the challenge.
132 &quot;domainName&quot;: &quot;A String&quot;, # The domain name upon which the DNS challenge must be satisfied.
133 },
134 &quot;expectedIps&quot;: [ # The list of IPs to which the domain is expected to resolve.
135 &quot;A String&quot;,
136 ],
137 &quot;certChallengeDiscoveredTxt&quot;: [ # The TXT records (for the certificate challenge) that were found at the last
138 # DNS fetch.
139 &quot;A String&quot;,
140 ],
141 &quot;dnsFetchTime&quot;: &quot;A String&quot;, # The time at which the last DNS fetch occurred.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700142 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700143 &quot;site&quot;: &quot;A String&quot;, # Required. The site name of the association.
144 &quot;domainName&quot;: &quot;A String&quot;, # Required. The domain name of the association.
145 }
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700146
147 x__xgafv: string, V1 error format.
148 Allowed values
149 1 - v1 error format
150 2 - v2 error format
151
152Returns:
153 An object of the form:
154
155 { # The intended behavior and status information of a domain.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700156 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time at which the domain was last updated.
157 &quot;domainRedirect&quot;: { # Defines the behavior of a domain-level redirect. Domain redirects preserve # If set, the domain should redirect with the provided parameters.
158 # the path of the redirect but replace the requested domain with the one
159 # specified in the redirect configuration.
160 &quot;type&quot;: &quot;A String&quot;, # Required. The redirect status code.
161 &quot;domainName&quot;: &quot;A String&quot;, # Required. The domain name to redirect to.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700162 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700163 &quot;status&quot;: &quot;A String&quot;, # Output only. Additional status of the domain association.
164 &quot;provisioning&quot;: { # The current certificate provisioning status information for a domain. # Output only. Information about the provisioning of certificates and the
165 # health of the DNS resolution for the domain.
166 &quot;certChallengeHttp&quot;: { # Represents an HTTP certificate challenge. # The HTTP challenge for generating a certificate.
167 &quot;token&quot;: &quot;A String&quot;, # The token to serve at the specified URL path to satisfy the certificate
168 # challenge.
169 &quot;path&quot;: &quot;A String&quot;, # The URL path on which to serve the specified token to satisfy the
170 # certificate challenge.
171 },
172 &quot;dnsStatus&quot;: &quot;A String&quot;, # The DNS record match status as of the last DNS fetch.
173 &quot;discoveredIps&quot;: [ # The IPs found at the last DNS fetch.
174 &quot;A String&quot;,
175 ],
176 &quot;certStatus&quot;: &quot;A String&quot;, # The certificate provisioning status; updated when Firebase Hosting
177 # provisions an SSL certificate for the domain.
178 &quot;certChallengeDns&quot;: { # Represents a DNS certificate challenge. # The DNS challenge for generating a certificate.
179 &quot;token&quot;: &quot;A String&quot;, # The value that must be present as a TXT record on the domain name to
180 # satisfy the challenge.
181 &quot;domainName&quot;: &quot;A String&quot;, # The domain name upon which the DNS challenge must be satisfied.
182 },
183 &quot;expectedIps&quot;: [ # The list of IPs to which the domain is expected to resolve.
184 &quot;A String&quot;,
185 ],
186 &quot;certChallengeDiscoveredTxt&quot;: [ # The TXT records (for the certificate challenge) that were found at the last
187 # DNS fetch.
188 &quot;A String&quot;,
189 ],
190 &quot;dnsFetchTime&quot;: &quot;A String&quot;, # The time at which the last DNS fetch occurred.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700191 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700192 &quot;site&quot;: &quot;A String&quot;, # Required. The site name of the association.
193 &quot;domainName&quot;: &quot;A String&quot;, # Required. The domain name of the association.
194 }</pre>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700195</div>
196
197<div class="method">
198 <code class="details" id="delete">delete(name, x__xgafv=None)</code>
199 <pre>Deletes the existing domain mapping on the specified site.
200
201Args:
202 name: string, Required. The name of the domain association to delete. (required)
203 x__xgafv: string, V1 error format.
204 Allowed values
205 1 - v1 error format
206 2 - v2 error format
207
208Returns:
209 An object of the form:
210
211 { # A generic empty message that you can re-use to avoid defining duplicated
212 # empty messages in your APIs. A typical example is to use it as the request
213 # or the response type of an API method. For instance:
214 #
215 # service Foo {
216 # rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);
217 # }
218 #
219 # The JSON representation for `Empty` is empty JSON object `{}`.
220 }</pre>
221</div>
222
223<div class="method">
224 <code class="details" id="get">get(name, x__xgafv=None)</code>
225 <pre>Gets a domain mapping on the specified site.
226
227Args:
228 name: string, Required. The name of the domain configuration to get. (required)
229 x__xgafv: string, V1 error format.
230 Allowed values
231 1 - v1 error format
232 2 - v2 error format
233
234Returns:
235 An object of the form:
236
237 { # The intended behavior and status information of a domain.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700238 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time at which the domain was last updated.
239 &quot;domainRedirect&quot;: { # Defines the behavior of a domain-level redirect. Domain redirects preserve # If set, the domain should redirect with the provided parameters.
240 # the path of the redirect but replace the requested domain with the one
241 # specified in the redirect configuration.
242 &quot;type&quot;: &quot;A String&quot;, # Required. The redirect status code.
243 &quot;domainName&quot;: &quot;A String&quot;, # Required. The domain name to redirect to.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700244 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700245 &quot;status&quot;: &quot;A String&quot;, # Output only. Additional status of the domain association.
246 &quot;provisioning&quot;: { # The current certificate provisioning status information for a domain. # Output only. Information about the provisioning of certificates and the
247 # health of the DNS resolution for the domain.
248 &quot;certChallengeHttp&quot;: { # Represents an HTTP certificate challenge. # The HTTP challenge for generating a certificate.
249 &quot;token&quot;: &quot;A String&quot;, # The token to serve at the specified URL path to satisfy the certificate
250 # challenge.
251 &quot;path&quot;: &quot;A String&quot;, # The URL path on which to serve the specified token to satisfy the
252 # certificate challenge.
253 },
254 &quot;dnsStatus&quot;: &quot;A String&quot;, # The DNS record match status as of the last DNS fetch.
255 &quot;discoveredIps&quot;: [ # The IPs found at the last DNS fetch.
256 &quot;A String&quot;,
257 ],
258 &quot;certStatus&quot;: &quot;A String&quot;, # The certificate provisioning status; updated when Firebase Hosting
259 # provisions an SSL certificate for the domain.
260 &quot;certChallengeDns&quot;: { # Represents a DNS certificate challenge. # The DNS challenge for generating a certificate.
261 &quot;token&quot;: &quot;A String&quot;, # The value that must be present as a TXT record on the domain name to
262 # satisfy the challenge.
263 &quot;domainName&quot;: &quot;A String&quot;, # The domain name upon which the DNS challenge must be satisfied.
264 },
265 &quot;expectedIps&quot;: [ # The list of IPs to which the domain is expected to resolve.
266 &quot;A String&quot;,
267 ],
268 &quot;certChallengeDiscoveredTxt&quot;: [ # The TXT records (for the certificate challenge) that were found at the last
269 # DNS fetch.
270 &quot;A String&quot;,
271 ],
272 &quot;dnsFetchTime&quot;: &quot;A String&quot;, # The time at which the last DNS fetch occurred.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700273 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700274 &quot;site&quot;: &quot;A String&quot;, # Required. The site name of the association.
275 &quot;domainName&quot;: &quot;A String&quot;, # Required. The domain name of the association.
276 }</pre>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700277</div>
278
279<div class="method">
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700280 <code class="details" id="list">list(parent, pageSize=None, pageToken=None, x__xgafv=None)</code>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700281 <pre>Lists the domains for the specified site.
282
283Args:
284 parent: string, Required. The parent for which to list domains, in the format:
Dan O'Mearadd494642020-05-01 07:42:23 -0700285&lt;code&gt;sites/&lt;var&gt;site-name&lt;/var&gt;&lt;/code&gt; (required)
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700286 pageSize: integer, The page size to return. Defaults to 50.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700287 pageToken: string, The next_page_token from a previous request, if provided.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700288 x__xgafv: string, V1 error format.
289 Allowed values
290 1 - v1 error format
291 2 - v2 error format
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700292
293Returns:
294 An object of the form:
295
Dan O'Mearadd494642020-05-01 07:42:23 -0700296 { # The response to listing Domains.
Bu Sun Kim65020912020-05-20 12:08:20 -0700297 &quot;domains&quot;: [ # The list of domains, if any exist.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700298 { # The intended behavior and status information of a domain.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700299 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time at which the domain was last updated.
300 &quot;domainRedirect&quot;: { # Defines the behavior of a domain-level redirect. Domain redirects preserve # If set, the domain should redirect with the provided parameters.
301 # the path of the redirect but replace the requested domain with the one
302 # specified in the redirect configuration.
303 &quot;type&quot;: &quot;A String&quot;, # Required. The redirect status code.
304 &quot;domainName&quot;: &quot;A String&quot;, # Required. The domain name to redirect to.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700305 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700306 &quot;status&quot;: &quot;A String&quot;, # Output only. Additional status of the domain association.
307 &quot;provisioning&quot;: { # The current certificate provisioning status information for a domain. # Output only. Information about the provisioning of certificates and the
308 # health of the DNS resolution for the domain.
309 &quot;certChallengeHttp&quot;: { # Represents an HTTP certificate challenge. # The HTTP challenge for generating a certificate.
310 &quot;token&quot;: &quot;A String&quot;, # The token to serve at the specified URL path to satisfy the certificate
311 # challenge.
312 &quot;path&quot;: &quot;A String&quot;, # The URL path on which to serve the specified token to satisfy the
313 # certificate challenge.
314 },
315 &quot;dnsStatus&quot;: &quot;A String&quot;, # The DNS record match status as of the last DNS fetch.
316 &quot;discoveredIps&quot;: [ # The IPs found at the last DNS fetch.
317 &quot;A String&quot;,
318 ],
319 &quot;certStatus&quot;: &quot;A String&quot;, # The certificate provisioning status; updated when Firebase Hosting
320 # provisions an SSL certificate for the domain.
321 &quot;certChallengeDns&quot;: { # Represents a DNS certificate challenge. # The DNS challenge for generating a certificate.
322 &quot;token&quot;: &quot;A String&quot;, # The value that must be present as a TXT record on the domain name to
323 # satisfy the challenge.
324 &quot;domainName&quot;: &quot;A String&quot;, # The domain name upon which the DNS challenge must be satisfied.
325 },
326 &quot;expectedIps&quot;: [ # The list of IPs to which the domain is expected to resolve.
327 &quot;A String&quot;,
328 ],
329 &quot;certChallengeDiscoveredTxt&quot;: [ # The TXT records (for the certificate challenge) that were found at the last
330 # DNS fetch.
331 &quot;A String&quot;,
332 ],
333 &quot;dnsFetchTime&quot;: &quot;A String&quot;, # The time at which the last DNS fetch occurred.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700334 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700335 &quot;site&quot;: &quot;A String&quot;, # Required. The site name of the association.
336 &quot;domainName&quot;: &quot;A String&quot;, # Required. The domain name of the association.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700337 },
338 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700339 &quot;nextPageToken&quot;: &quot;A String&quot;, # The pagination token, if more results exist.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700340 }</pre>
341</div>
342
343<div class="method">
344 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
345 <pre>Retrieves the next page of results.
346
347Args:
348 previous_request: The request for the previous page. (required)
349 previous_response: The response from the request for the previous page. (required)
350
351Returns:
Bu Sun Kim65020912020-05-20 12:08:20 -0700352 A request object that you can call &#x27;execute()&#x27; on to request the next
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700353 page. Returns None if there are no more items in the collection.
354 </pre>
355</div>
356
357<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700358 <code class="details" id="update">update(name, body=None, x__xgafv=None)</code>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700359 <pre>Updates the specified domain mapping, creating the mapping as if it does
360not exist.
361
362Args:
363 name: string, Required. The name of the domain association to update or create, if an
Bu Sun Kim65020912020-05-20 12:08:20 -0700364association doesn&#x27;t already exist. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700365 body: object, The request body.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700366 The object takes the form of:
367
368{ # The intended behavior and status information of a domain.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700369 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time at which the domain was last updated.
370 &quot;domainRedirect&quot;: { # Defines the behavior of a domain-level redirect. Domain redirects preserve # If set, the domain should redirect with the provided parameters.
371 # the path of the redirect but replace the requested domain with the one
372 # specified in the redirect configuration.
373 &quot;type&quot;: &quot;A String&quot;, # Required. The redirect status code.
374 &quot;domainName&quot;: &quot;A String&quot;, # Required. The domain name to redirect to.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700375 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700376 &quot;status&quot;: &quot;A String&quot;, # Output only. Additional status of the domain association.
377 &quot;provisioning&quot;: { # The current certificate provisioning status information for a domain. # Output only. Information about the provisioning of certificates and the
378 # health of the DNS resolution for the domain.
379 &quot;certChallengeHttp&quot;: { # Represents an HTTP certificate challenge. # The HTTP challenge for generating a certificate.
380 &quot;token&quot;: &quot;A String&quot;, # The token to serve at the specified URL path to satisfy the certificate
381 # challenge.
382 &quot;path&quot;: &quot;A String&quot;, # The URL path on which to serve the specified token to satisfy the
383 # certificate challenge.
384 },
385 &quot;dnsStatus&quot;: &quot;A String&quot;, # The DNS record match status as of the last DNS fetch.
386 &quot;discoveredIps&quot;: [ # The IPs found at the last DNS fetch.
387 &quot;A String&quot;,
388 ],
389 &quot;certStatus&quot;: &quot;A String&quot;, # The certificate provisioning status; updated when Firebase Hosting
390 # provisions an SSL certificate for the domain.
391 &quot;certChallengeDns&quot;: { # Represents a DNS certificate challenge. # The DNS challenge for generating a certificate.
392 &quot;token&quot;: &quot;A String&quot;, # The value that must be present as a TXT record on the domain name to
393 # satisfy the challenge.
394 &quot;domainName&quot;: &quot;A String&quot;, # The domain name upon which the DNS challenge must be satisfied.
395 },
396 &quot;expectedIps&quot;: [ # The list of IPs to which the domain is expected to resolve.
397 &quot;A String&quot;,
398 ],
399 &quot;certChallengeDiscoveredTxt&quot;: [ # The TXT records (for the certificate challenge) that were found at the last
400 # DNS fetch.
401 &quot;A String&quot;,
402 ],
403 &quot;dnsFetchTime&quot;: &quot;A String&quot;, # The time at which the last DNS fetch occurred.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700404 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700405 &quot;site&quot;: &quot;A String&quot;, # Required. The site name of the association.
406 &quot;domainName&quot;: &quot;A String&quot;, # Required. The domain name of the association.
407 }
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700408
409 x__xgafv: string, V1 error format.
410 Allowed values
411 1 - v1 error format
412 2 - v2 error format
413
414Returns:
415 An object of the form:
416
417 { # The intended behavior and status information of a domain.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700418 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time at which the domain was last updated.
419 &quot;domainRedirect&quot;: { # Defines the behavior of a domain-level redirect. Domain redirects preserve # If set, the domain should redirect with the provided parameters.
420 # the path of the redirect but replace the requested domain with the one
421 # specified in the redirect configuration.
422 &quot;type&quot;: &quot;A String&quot;, # Required. The redirect status code.
423 &quot;domainName&quot;: &quot;A String&quot;, # Required. The domain name to redirect to.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700424 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700425 &quot;status&quot;: &quot;A String&quot;, # Output only. Additional status of the domain association.
426 &quot;provisioning&quot;: { # The current certificate provisioning status information for a domain. # Output only. Information about the provisioning of certificates and the
427 # health of the DNS resolution for the domain.
428 &quot;certChallengeHttp&quot;: { # Represents an HTTP certificate challenge. # The HTTP challenge for generating a certificate.
429 &quot;token&quot;: &quot;A String&quot;, # The token to serve at the specified URL path to satisfy the certificate
430 # challenge.
431 &quot;path&quot;: &quot;A String&quot;, # The URL path on which to serve the specified token to satisfy the
432 # certificate challenge.
433 },
434 &quot;dnsStatus&quot;: &quot;A String&quot;, # The DNS record match status as of the last DNS fetch.
435 &quot;discoveredIps&quot;: [ # The IPs found at the last DNS fetch.
436 &quot;A String&quot;,
437 ],
438 &quot;certStatus&quot;: &quot;A String&quot;, # The certificate provisioning status; updated when Firebase Hosting
439 # provisions an SSL certificate for the domain.
440 &quot;certChallengeDns&quot;: { # Represents a DNS certificate challenge. # The DNS challenge for generating a certificate.
441 &quot;token&quot;: &quot;A String&quot;, # The value that must be present as a TXT record on the domain name to
442 # satisfy the challenge.
443 &quot;domainName&quot;: &quot;A String&quot;, # The domain name upon which the DNS challenge must be satisfied.
444 },
445 &quot;expectedIps&quot;: [ # The list of IPs to which the domain is expected to resolve.
446 &quot;A String&quot;,
447 ],
448 &quot;certChallengeDiscoveredTxt&quot;: [ # The TXT records (for the certificate challenge) that were found at the last
449 # DNS fetch.
450 &quot;A String&quot;,
451 ],
452 &quot;dnsFetchTime&quot;: &quot;A String&quot;, # The time at which the last DNS fetch occurred.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700453 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700454 &quot;site&quot;: &quot;A String&quot;, # Required. The site name of the association.
455 &quot;domainName&quot;: &quot;A String&quot;, # Required. The domain name of the association.
456 }</pre>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700457</div>
458
459</body></html>