blob: bd6068950c32de6a5a66425d39e23110e2e07e7a [file] [log] [blame]
Bu Sun Kim65020912020-05-20 12:08:20 -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.projects.html">projects</a> . <a href="firebasehosting_v1beta1.projects.sites.html">sites</a> . <a href="firebasehosting_v1beta1.projects.sites.domains.html">domains</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070078 <code><a href="#close">close()</a></code></p>
79<p class="firstline">Close httplib2 connections.</p>
80<p class="toc_element">
Bu Sun Kim65020912020-05-20 12:08:20 -070081 <code><a href="#create">create(parent, body=None, x__xgafv=None)</a></code></p>
82<p class="firstline">Creates a domain mapping on the specified site.</p>
83<p class="toc_element">
84 <code><a href="#delete">delete(name, x__xgafv=None)</a></code></p>
85<p class="firstline">Deletes the existing domain mapping on the specified site.</p>
86<p class="toc_element">
87 <code><a href="#get">get(name, x__xgafv=None)</a></code></p>
88<p class="firstline">Gets a domain mapping on the specified site.</p>
89<p class="toc_element">
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -080090 <code><a href="#list">list(parent, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
Bu Sun Kim65020912020-05-20 12:08:20 -070091<p class="firstline">Lists the domains for the specified site.</p>
92<p class="toc_element">
93 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
94<p class="firstline">Retrieves the next page of results.</p>
95<p class="toc_element">
96 <code><a href="#update">update(name, body=None, x__xgafv=None)</a></code></p>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070097<p class="firstline">Updates the specified domain mapping, creating the mapping as if it does not exist.</p>
Bu Sun Kim65020912020-05-20 12:08:20 -070098<h3>Method Details</h3>
99<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700100 <code class="details" id="close">close()</code>
101 <pre>Close httplib2 connections.</pre>
102</div>
103
104<div class="method">
Bu Sun Kim65020912020-05-20 12:08:20 -0700105 <code class="details" id="create">create(parent, body=None, x__xgafv=None)</code>
106 <pre>Creates a domain mapping on the specified site.
107
108Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700109 parent: string, Required. The parent to create the domain association for, in the format: sites/site-name (required)
Bu Sun Kim65020912020-05-20 12:08:20 -0700110 body: object, The request body.
111 The object takes the form of:
112
113{ # The intended behavior and status information of a domain.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800114 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time at which the domain was last updated.
115 &quot;domainName&quot;: &quot;A String&quot;, # Required. The domain name of the association.
116 &quot;site&quot;: &quot;A String&quot;, # Required. The site name of the association.
117 &quot;provisioning&quot;: { # The current certificate provisioning status information for a domain. # Output only. Information about the provisioning of certificates and the health of the DNS resolution for the domain.
118 &quot;certChallengeDns&quot;: { # Represents a DNS certificate challenge. # The DNS challenge for generating a certificate.
119 &quot;domainName&quot;: &quot;A String&quot;, # The domain name upon which the DNS challenge must be satisfied.
120 &quot;token&quot;: &quot;A String&quot;, # The value that must be present as a TXT record on the domain name to satisfy the challenge.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700121 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800122 &quot;certChallengeHttp&quot;: { # Represents an HTTP certificate challenge. # The HTTP challenge for generating a certificate.
123 &quot;path&quot;: &quot;A String&quot;, # The URL path on which to serve the specified token to satisfy the certificate challenge.
124 &quot;token&quot;: &quot;A String&quot;, # The token to serve at the specified URL path to satisfy the certificate challenge.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800125 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800126 &quot;expectedIps&quot;: [ # The list of IPs to which the domain is expected to resolve.
127 &quot;A String&quot;,
128 ],
129 &quot;dnsStatus&quot;: &quot;A String&quot;, # The DNS record match status as of the last DNS fetch.
130 &quot;dnsFetchTime&quot;: &quot;A String&quot;, # The time at which the last DNS fetch occurred.
131 &quot;discoveredIps&quot;: [ # The IPs found at the last DNS fetch.
132 &quot;A String&quot;,
133 ],
134 &quot;certStatus&quot;: &quot;A String&quot;, # The certificate provisioning status; updated when Firebase Hosting provisions an SSL certificate for the domain.
135 &quot;certChallengeDiscoveredTxt&quot;: [ # The TXT records (for the certificate challenge) that were found at the last DNS fetch.
136 &quot;A String&quot;,
137 ],
138 },
139 &quot;status&quot;: &quot;A String&quot;, # Output only. Additional status of the domain association.
140 &quot;domainRedirect&quot;: { # Defines the behavior of a domain-level redirect. Domain redirects preserve the path of the redirect but replace the requested domain with the one specified in the redirect configuration. # If set, the domain should redirect with the provided parameters.
141 &quot;domainName&quot;: &quot;A String&quot;, # Required. The domain name to redirect to.
142 &quot;type&quot;: &quot;A String&quot;, # Required. The redirect status code.
143 },
144}
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800145
146 x__xgafv: string, V1 error format.
147 Allowed values
148 1 - v1 error format
149 2 - v2 error format
150
151Returns:
152 An object of the form:
153
154 { # The intended behavior and status information of a domain.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800155 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time at which the domain was last updated.
156 &quot;domainName&quot;: &quot;A String&quot;, # Required. The domain name of the association.
157 &quot;site&quot;: &quot;A String&quot;, # Required. The site name of the association.
158 &quot;provisioning&quot;: { # The current certificate provisioning status information for a domain. # Output only. Information about the provisioning of certificates and the health of the DNS resolution for the domain.
159 &quot;certChallengeDns&quot;: { # Represents a DNS certificate challenge. # The DNS challenge for generating a certificate.
160 &quot;domainName&quot;: &quot;A String&quot;, # The domain name upon which the DNS challenge must be satisfied.
161 &quot;token&quot;: &quot;A String&quot;, # The value that must be present as a TXT record on the domain name to satisfy the challenge.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800162 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800163 &quot;certChallengeHttp&quot;: { # Represents an HTTP certificate challenge. # The HTTP challenge for generating a certificate.
164 &quot;path&quot;: &quot;A String&quot;, # The URL path on which to serve the specified token to satisfy the certificate challenge.
165 &quot;token&quot;: &quot;A String&quot;, # The token to serve at the specified URL path to satisfy the certificate challenge.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800166 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800167 &quot;expectedIps&quot;: [ # The list of IPs to which the domain is expected to resolve.
168 &quot;A String&quot;,
169 ],
170 &quot;dnsStatus&quot;: &quot;A String&quot;, # The DNS record match status as of the last DNS fetch.
171 &quot;dnsFetchTime&quot;: &quot;A String&quot;, # The time at which the last DNS fetch occurred.
172 &quot;discoveredIps&quot;: [ # The IPs found at the last DNS fetch.
173 &quot;A String&quot;,
174 ],
175 &quot;certStatus&quot;: &quot;A String&quot;, # The certificate provisioning status; updated when Firebase Hosting provisions an SSL certificate for the domain.
176 &quot;certChallengeDiscoveredTxt&quot;: [ # The TXT records (for the certificate challenge) that were found at the last DNS fetch.
177 &quot;A String&quot;,
178 ],
179 },
180 &quot;status&quot;: &quot;A String&quot;, # Output only. Additional status of the domain association.
181 &quot;domainRedirect&quot;: { # Defines the behavior of a domain-level redirect. Domain redirects preserve the path of the redirect but replace the requested domain with the one specified in the redirect configuration. # If set, the domain should redirect with the provided parameters.
182 &quot;domainName&quot;: &quot;A String&quot;, # Required. The domain name to redirect to.
183 &quot;type&quot;: &quot;A String&quot;, # Required. The redirect status code.
184 },
185 }</pre>
Bu Sun Kim65020912020-05-20 12:08:20 -0700186</div>
187
188<div class="method">
189 <code class="details" id="delete">delete(name, x__xgafv=None)</code>
190 <pre>Deletes the existing domain mapping on the specified site.
191
192Args:
193 name: string, Required. The name of the domain association to delete. (required)
194 x__xgafv: string, V1 error format.
195 Allowed values
196 1 - v1 error format
197 2 - v2 error format
198
199Returns:
200 An object of the form:
201
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700202 { # A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); } The JSON representation for `Empty` is empty JSON object `{}`.
Bu Sun Kim65020912020-05-20 12:08:20 -0700203 }</pre>
204</div>
205
206<div class="method">
207 <code class="details" id="get">get(name, x__xgafv=None)</code>
208 <pre>Gets a domain mapping on the specified site.
209
210Args:
211 name: string, Required. The name of the domain configuration to get. (required)
212 x__xgafv: string, V1 error format.
213 Allowed values
214 1 - v1 error format
215 2 - v2 error format
216
217Returns:
218 An object of the form:
219
220 { # The intended behavior and status information of a domain.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800221 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time at which the domain was last updated.
222 &quot;domainName&quot;: &quot;A String&quot;, # Required. The domain name of the association.
223 &quot;site&quot;: &quot;A String&quot;, # Required. The site name of the association.
224 &quot;provisioning&quot;: { # The current certificate provisioning status information for a domain. # Output only. Information about the provisioning of certificates and the health of the DNS resolution for the domain.
225 &quot;certChallengeDns&quot;: { # Represents a DNS certificate challenge. # The DNS challenge for generating a certificate.
226 &quot;domainName&quot;: &quot;A String&quot;, # The domain name upon which the DNS challenge must be satisfied.
227 &quot;token&quot;: &quot;A String&quot;, # The value that must be present as a TXT record on the domain name to satisfy the challenge.
Bu Sun Kim65020912020-05-20 12:08:20 -0700228 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800229 &quot;certChallengeHttp&quot;: { # Represents an HTTP certificate challenge. # The HTTP challenge for generating a certificate.
230 &quot;path&quot;: &quot;A String&quot;, # The URL path on which to serve the specified token to satisfy the certificate challenge.
231 &quot;token&quot;: &quot;A String&quot;, # The token to serve at the specified URL path to satisfy the certificate challenge.
Bu Sun Kim65020912020-05-20 12:08:20 -0700232 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800233 &quot;expectedIps&quot;: [ # The list of IPs to which the domain is expected to resolve.
234 &quot;A String&quot;,
235 ],
236 &quot;dnsStatus&quot;: &quot;A String&quot;, # The DNS record match status as of the last DNS fetch.
237 &quot;dnsFetchTime&quot;: &quot;A String&quot;, # The time at which the last DNS fetch occurred.
238 &quot;discoveredIps&quot;: [ # The IPs found at the last DNS fetch.
239 &quot;A String&quot;,
240 ],
241 &quot;certStatus&quot;: &quot;A String&quot;, # The certificate provisioning status; updated when Firebase Hosting provisions an SSL certificate for the domain.
242 &quot;certChallengeDiscoveredTxt&quot;: [ # The TXT records (for the certificate challenge) that were found at the last DNS fetch.
243 &quot;A String&quot;,
244 ],
245 },
246 &quot;status&quot;: &quot;A String&quot;, # Output only. Additional status of the domain association.
247 &quot;domainRedirect&quot;: { # Defines the behavior of a domain-level redirect. Domain redirects preserve the path of the redirect but replace the requested domain with the one specified in the redirect configuration. # If set, the domain should redirect with the provided parameters.
248 &quot;domainName&quot;: &quot;A String&quot;, # Required. The domain name to redirect to.
249 &quot;type&quot;: &quot;A String&quot;, # Required. The redirect status code.
250 },
251 }</pre>
Bu Sun Kim65020912020-05-20 12:08:20 -0700252</div>
253
254<div class="method">
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800255 <code class="details" id="list">list(parent, pageSize=None, pageToken=None, x__xgafv=None)</code>
Bu Sun Kim65020912020-05-20 12:08:20 -0700256 <pre>Lists the domains for the specified site.
257
258Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700259 parent: string, Required. The parent for which to list domains, in the format: sites/ site-name (required)
Bu Sun Kim65020912020-05-20 12:08:20 -0700260 pageSize: integer, The page size to return. Defaults to 50.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800261 pageToken: string, The next_page_token from a previous request, if provided.
Bu Sun Kim65020912020-05-20 12:08:20 -0700262 x__xgafv: string, V1 error format.
263 Allowed values
264 1 - v1 error format
265 2 - v2 error format
266
267Returns:
268 An object of the form:
269
270 { # The response to listing Domains.
Bu Sun Kim65020912020-05-20 12:08:20 -0700271 &quot;domains&quot;: [ # The list of domains, if any exist.
272 { # The intended behavior and status information of a domain.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800273 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time at which the domain was last updated.
274 &quot;domainName&quot;: &quot;A String&quot;, # Required. The domain name of the association.
275 &quot;site&quot;: &quot;A String&quot;, # Required. The site name of the association.
276 &quot;provisioning&quot;: { # The current certificate provisioning status information for a domain. # Output only. Information about the provisioning of certificates and the health of the DNS resolution for the domain.
277 &quot;certChallengeDns&quot;: { # Represents a DNS certificate challenge. # The DNS challenge for generating a certificate.
278 &quot;domainName&quot;: &quot;A String&quot;, # The domain name upon which the DNS challenge must be satisfied.
279 &quot;token&quot;: &quot;A String&quot;, # The value that must be present as a TXT record on the domain name to satisfy the challenge.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700280 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800281 &quot;certChallengeHttp&quot;: { # Represents an HTTP certificate challenge. # The HTTP challenge for generating a certificate.
282 &quot;path&quot;: &quot;A String&quot;, # The URL path on which to serve the specified token to satisfy the certificate challenge.
283 &quot;token&quot;: &quot;A String&quot;, # The token to serve at the specified URL path to satisfy the certificate challenge.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700284 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800285 &quot;expectedIps&quot;: [ # The list of IPs to which the domain is expected to resolve.
286 &quot;A String&quot;,
287 ],
288 &quot;dnsStatus&quot;: &quot;A String&quot;, # The DNS record match status as of the last DNS fetch.
289 &quot;dnsFetchTime&quot;: &quot;A String&quot;, # The time at which the last DNS fetch occurred.
290 &quot;discoveredIps&quot;: [ # The IPs found at the last DNS fetch.
291 &quot;A String&quot;,
292 ],
293 &quot;certStatus&quot;: &quot;A String&quot;, # The certificate provisioning status; updated when Firebase Hosting provisions an SSL certificate for the domain.
294 &quot;certChallengeDiscoveredTxt&quot;: [ # The TXT records (for the certificate challenge) that were found at the last DNS fetch.
295 &quot;A String&quot;,
296 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700297 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800298 &quot;status&quot;: &quot;A String&quot;, # Output only. Additional status of the domain association.
299 &quot;domainRedirect&quot;: { # Defines the behavior of a domain-level redirect. Domain redirects preserve the path of the redirect but replace the requested domain with the one specified in the redirect configuration. # If set, the domain should redirect with the provided parameters.
300 &quot;domainName&quot;: &quot;A String&quot;, # Required. The domain name to redirect to.
301 &quot;type&quot;: &quot;A String&quot;, # Required. The redirect status code.
302 },
303 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700304 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800305 &quot;nextPageToken&quot;: &quot;A String&quot;, # The pagination token, if more results exist.
Bu Sun Kim65020912020-05-20 12:08:20 -0700306 }</pre>
307</div>
308
309<div class="method">
310 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
311 <pre>Retrieves the next page of results.
312
313Args:
314 previous_request: The request for the previous page. (required)
315 previous_response: The response from the request for the previous page. (required)
316
317Returns:
318 A request object that you can call &#x27;execute()&#x27; on to request the next
319 page. Returns None if there are no more items in the collection.
320 </pre>
321</div>
322
323<div class="method">
324 <code class="details" id="update">update(name, body=None, x__xgafv=None)</code>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700325 <pre>Updates the specified domain mapping, creating the mapping as if it does not exist.
Bu Sun Kim65020912020-05-20 12:08:20 -0700326
327Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700328 name: string, Required. The name of the domain association to update or create, if an association doesn&#x27;t already exist. (required)
Bu Sun Kim65020912020-05-20 12:08:20 -0700329 body: object, The request body.
330 The object takes the form of:
331
332{ # The intended behavior and status information of a domain.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800333 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time at which the domain was last updated.
334 &quot;domainName&quot;: &quot;A String&quot;, # Required. The domain name of the association.
335 &quot;site&quot;: &quot;A String&quot;, # Required. The site name of the association.
336 &quot;provisioning&quot;: { # The current certificate provisioning status information for a domain. # Output only. Information about the provisioning of certificates and the health of the DNS resolution for the domain.
337 &quot;certChallengeDns&quot;: { # Represents a DNS certificate challenge. # The DNS challenge for generating a certificate.
338 &quot;domainName&quot;: &quot;A String&quot;, # The domain name upon which the DNS challenge must be satisfied.
339 &quot;token&quot;: &quot;A String&quot;, # The value that must be present as a TXT record on the domain name to satisfy the challenge.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700340 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800341 &quot;certChallengeHttp&quot;: { # Represents an HTTP certificate challenge. # The HTTP challenge for generating a certificate.
342 &quot;path&quot;: &quot;A String&quot;, # The URL path on which to serve the specified token to satisfy the certificate challenge.
343 &quot;token&quot;: &quot;A String&quot;, # The token to serve at the specified URL path to satisfy the certificate challenge.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800344 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800345 &quot;expectedIps&quot;: [ # The list of IPs to which the domain is expected to resolve.
346 &quot;A String&quot;,
347 ],
348 &quot;dnsStatus&quot;: &quot;A String&quot;, # The DNS record match status as of the last DNS fetch.
349 &quot;dnsFetchTime&quot;: &quot;A String&quot;, # The time at which the last DNS fetch occurred.
350 &quot;discoveredIps&quot;: [ # The IPs found at the last DNS fetch.
351 &quot;A String&quot;,
352 ],
353 &quot;certStatus&quot;: &quot;A String&quot;, # The certificate provisioning status; updated when Firebase Hosting provisions an SSL certificate for the domain.
354 &quot;certChallengeDiscoveredTxt&quot;: [ # The TXT records (for the certificate challenge) that were found at the last DNS fetch.
355 &quot;A String&quot;,
356 ],
357 },
358 &quot;status&quot;: &quot;A String&quot;, # Output only. Additional status of the domain association.
359 &quot;domainRedirect&quot;: { # Defines the behavior of a domain-level redirect. Domain redirects preserve the path of the redirect but replace the requested domain with the one specified in the redirect configuration. # If set, the domain should redirect with the provided parameters.
360 &quot;domainName&quot;: &quot;A String&quot;, # Required. The domain name to redirect to.
361 &quot;type&quot;: &quot;A String&quot;, # Required. The redirect status code.
362 },
363}
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800364
365 x__xgafv: string, V1 error format.
366 Allowed values
367 1 - v1 error format
368 2 - v2 error format
369
370Returns:
371 An object of the form:
372
373 { # The intended behavior and status information of a domain.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800374 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time at which the domain was last updated.
375 &quot;domainName&quot;: &quot;A String&quot;, # Required. The domain name of the association.
376 &quot;site&quot;: &quot;A String&quot;, # Required. The site name of the association.
377 &quot;provisioning&quot;: { # The current certificate provisioning status information for a domain. # Output only. Information about the provisioning of certificates and the health of the DNS resolution for the domain.
378 &quot;certChallengeDns&quot;: { # Represents a DNS certificate challenge. # The DNS challenge for generating a certificate.
379 &quot;domainName&quot;: &quot;A String&quot;, # The domain name upon which the DNS challenge must be satisfied.
380 &quot;token&quot;: &quot;A String&quot;, # The value that must be present as a TXT record on the domain name to satisfy the challenge.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800381 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800382 &quot;certChallengeHttp&quot;: { # Represents an HTTP certificate challenge. # The HTTP challenge for generating a certificate.
383 &quot;path&quot;: &quot;A String&quot;, # The URL path on which to serve the specified token to satisfy the certificate challenge.
384 &quot;token&quot;: &quot;A String&quot;, # The token to serve at the specified URL path to satisfy the certificate challenge.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800385 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800386 &quot;expectedIps&quot;: [ # The list of IPs to which the domain is expected to resolve.
387 &quot;A String&quot;,
388 ],
389 &quot;dnsStatus&quot;: &quot;A String&quot;, # The DNS record match status as of the last DNS fetch.
390 &quot;dnsFetchTime&quot;: &quot;A String&quot;, # The time at which the last DNS fetch occurred.
391 &quot;discoveredIps&quot;: [ # The IPs found at the last DNS fetch.
392 &quot;A String&quot;,
393 ],
394 &quot;certStatus&quot;: &quot;A String&quot;, # The certificate provisioning status; updated when Firebase Hosting provisions an SSL certificate for the domain.
395 &quot;certChallengeDiscoveredTxt&quot;: [ # The TXT records (for the certificate challenge) that were found at the last DNS fetch.
396 &quot;A String&quot;,
397 ],
398 },
399 &quot;status&quot;: &quot;A String&quot;, # Output only. Additional status of the domain association.
400 &quot;domainRedirect&quot;: { # Defines the behavior of a domain-level redirect. Domain redirects preserve the path of the redirect but replace the requested domain with the one specified in the redirect configuration. # If set, the domain should redirect with the provided parameters.
401 &quot;domainName&quot;: &quot;A String&quot;, # Required. The domain name to redirect to.
402 &quot;type&quot;: &quot;A String&quot;, # Required. The redirect status code.
403 },
404 }</pre>
Bu Sun Kim65020912020-05-20 12:08:20 -0700405</div>
406
407</body></html>