@cdktf/provider-acme 5.0.0 → 6.0.0
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/.gitattributes +1 -0
- package/.jsii +48 -48
- package/README.md +8 -1
- package/docs/API.csharp.md +6 -0
- package/docs/API.go.md +6 -0
- package/docs/API.java.md +6 -0
- package/docs/API.python.md +6 -0
- package/docs/API.typescript.md +6 -0
- package/docs/certificate.csharp.md +3358 -0
- package/docs/certificate.go.md +3358 -0
- package/docs/certificate.java.md +3627 -0
- package/docs/certificate.python.md +3806 -0
- package/docs/certificate.typescript.md +3319 -0
- package/docs/provider.csharp.md +417 -0
- package/docs/provider.go.md +417 -0
- package/docs/provider.java.md +433 -0
- package/docs/provider.python.md +446 -0
- package/docs/provider.typescript.md +414 -0
- package/docs/registration.csharp.md +1143 -0
- package/docs/registration.go.md +1143 -0
- package/docs/registration.java.md +1246 -0
- package/docs/registration.python.md +1309 -0
- package/docs/registration.typescript.md +1128 -0
- package/lib/certificate/index.d.ts +28 -28
- package/lib/certificate/index.js +11 -11
- package/lib/provider/index.d.ts +4 -4
- package/lib/provider/index.js +5 -5
- package/lib/registration/index.d.ts +8 -8
- package/lib/registration/index.js +6 -6
- package/package.json +19 -18
@@ -0,0 +1,3627 @@
|
|
1
|
+
# `acme_certificate`
|
2
|
+
|
3
|
+
Refer to the Terraform Registory for docs: [`acme_certificate`](https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate).
|
4
|
+
|
5
|
+
# `certificate` Submodule <a name="`certificate` Submodule" id="@cdktf/provider-acme.certificate"></a>
|
6
|
+
|
7
|
+
## Constructs <a name="Constructs" id="Constructs"></a>
|
8
|
+
|
9
|
+
### Certificate <a name="Certificate" id="@cdktf/provider-acme.certificate.Certificate"></a>
|
10
|
+
|
11
|
+
Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate acme_certificate}.
|
12
|
+
|
13
|
+
#### Initializers <a name="Initializers" id="@cdktf/provider-acme.certificate.Certificate.Initializer"></a>
|
14
|
+
|
15
|
+
```java
|
16
|
+
import com.hashicorp.cdktf.providers.acme.certificate.Certificate;
|
17
|
+
|
18
|
+
Certificate.Builder.create(Construct scope, java.lang.String id)
|
19
|
+
// .connection(SSHProvisionerConnection)
|
20
|
+
// .connection(WinrmProvisionerConnection)
|
21
|
+
// .count(java.lang.Number)
|
22
|
+
// .count(TerraformCount)
|
23
|
+
// .dependsOn(java.util.List<ITerraformDependable>)
|
24
|
+
// .forEach(ITerraformIterator)
|
25
|
+
// .lifecycle(TerraformResourceLifecycle)
|
26
|
+
// .provider(TerraformProvider)
|
27
|
+
// .provisioners(java.util.List<FileProvisioner)
|
28
|
+
// .provisioners(LocalExecProvisioner)
|
29
|
+
// .provisioners(RemoteExecProvisioner>)
|
30
|
+
.accountKeyPem(java.lang.String)
|
31
|
+
// .certificateP12Password(java.lang.String)
|
32
|
+
// .certificateRequestPem(java.lang.String)
|
33
|
+
// .commonName(java.lang.String)
|
34
|
+
// .disableCompletePropagation(java.lang.Boolean)
|
35
|
+
// .disableCompletePropagation(IResolvable)
|
36
|
+
// .dnsChallenge(IResolvable)
|
37
|
+
// .dnsChallenge(java.util.List<CertificateDnsChallenge>)
|
38
|
+
// .httpChallenge(CertificateHttpChallenge)
|
39
|
+
// .httpMemcachedChallenge(CertificateHttpMemcachedChallenge)
|
40
|
+
// .httpWebrootChallenge(CertificateHttpWebrootChallenge)
|
41
|
+
// .id(java.lang.String)
|
42
|
+
// .keyType(java.lang.String)
|
43
|
+
// .minDaysRemaining(java.lang.Number)
|
44
|
+
// .mustStaple(java.lang.Boolean)
|
45
|
+
// .mustStaple(IResolvable)
|
46
|
+
// .preCheckDelay(java.lang.Number)
|
47
|
+
// .preferredChain(java.lang.String)
|
48
|
+
// .recursiveNameservers(java.util.List<java.lang.String>)
|
49
|
+
// .revokeCertificateOnDestroy(java.lang.Boolean)
|
50
|
+
// .revokeCertificateOnDestroy(IResolvable)
|
51
|
+
// .subjectAlternativeNames(java.util.List<java.lang.String>)
|
52
|
+
// .tlsChallenge(CertificateTlsChallenge)
|
53
|
+
.build();
|
54
|
+
```
|
55
|
+
|
56
|
+
| **Name** | **Type** | **Description** |
|
57
|
+
| --- | --- | --- |
|
58
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.scope">scope</a></code> | <code>software.constructs.Construct</code> | The scope in which to define this construct. |
|
59
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.id">id</a></code> | <code>java.lang.String</code> | The scoped construct ID. |
|
60
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.connection">connection</a></code> | <code>com.hashicorp.cdktf.SSHProvisionerConnection OR com.hashicorp.cdktf.WinrmProvisionerConnection</code> | *No description.* |
|
61
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.count">count</a></code> | <code>java.lang.Number OR com.hashicorp.cdktf.TerraformCount</code> | *No description.* |
|
62
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.dependsOn">dependsOn</a></code> | <code>java.util.List<com.hashicorp.cdktf.ITerraformDependable></code> | *No description.* |
|
63
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.forEach">forEach</a></code> | <code>com.hashicorp.cdktf.ITerraformIterator</code> | *No description.* |
|
64
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.lifecycle">lifecycle</a></code> | <code>com.hashicorp.cdktf.TerraformResourceLifecycle</code> | *No description.* |
|
65
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.provider">provider</a></code> | <code>com.hashicorp.cdktf.TerraformProvider</code> | *No description.* |
|
66
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.provisioners">provisioners</a></code> | <code>java.util.List<com.hashicorp.cdktf.FileProvisioner OR com.hashicorp.cdktf.LocalExecProvisioner OR com.hashicorp.cdktf.RemoteExecProvisioner></code> | *No description.* |
|
67
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.accountKeyPem">accountKeyPem</a></code> | <code>java.lang.String</code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#account_key_pem Certificate#account_key_pem}. |
|
68
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.certificateP12Password">certificateP12Password</a></code> | <code>java.lang.String</code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#certificate_p12_password Certificate#certificate_p12_password}. |
|
69
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.certificateRequestPem">certificateRequestPem</a></code> | <code>java.lang.String</code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#certificate_request_pem Certificate#certificate_request_pem}. |
|
70
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.commonName">commonName</a></code> | <code>java.lang.String</code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#common_name Certificate#common_name}. |
|
71
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.disableCompletePropagation">disableCompletePropagation</a></code> | <code>java.lang.Boolean OR com.hashicorp.cdktf.IResolvable</code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#disable_complete_propagation Certificate#disable_complete_propagation}. |
|
72
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.dnsChallenge">dnsChallenge</a></code> | <code>com.hashicorp.cdktf.IResolvable OR java.util.List<<a href="#@cdktf/provider-acme.certificate.CertificateDnsChallenge">CertificateDnsChallenge</a>></code> | dns_challenge block. |
|
73
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.httpChallenge">httpChallenge</a></code> | <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpChallenge">CertificateHttpChallenge</a></code> | http_challenge block. |
|
74
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.httpMemcachedChallenge">httpMemcachedChallenge</a></code> | <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallenge">CertificateHttpMemcachedChallenge</a></code> | http_memcached_challenge block. |
|
75
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.httpWebrootChallenge">httpWebrootChallenge</a></code> | <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpWebrootChallenge">CertificateHttpWebrootChallenge</a></code> | http_webroot_challenge block. |
|
76
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.id">id</a></code> | <code>java.lang.String</code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#id Certificate#id}. |
|
77
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.keyType">keyType</a></code> | <code>java.lang.String</code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#key_type Certificate#key_type}. |
|
78
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.minDaysRemaining">minDaysRemaining</a></code> | <code>java.lang.Number</code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#min_days_remaining Certificate#min_days_remaining}. |
|
79
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.mustStaple">mustStaple</a></code> | <code>java.lang.Boolean OR com.hashicorp.cdktf.IResolvable</code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#must_staple Certificate#must_staple}. |
|
80
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.preCheckDelay">preCheckDelay</a></code> | <code>java.lang.Number</code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#pre_check_delay Certificate#pre_check_delay}. |
|
81
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.preferredChain">preferredChain</a></code> | <code>java.lang.String</code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#preferred_chain Certificate#preferred_chain}. |
|
82
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.recursiveNameservers">recursiveNameservers</a></code> | <code>java.util.List<java.lang.String></code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#recursive_nameservers Certificate#recursive_nameservers}. |
|
83
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.revokeCertificateOnDestroy">revokeCertificateOnDestroy</a></code> | <code>java.lang.Boolean OR com.hashicorp.cdktf.IResolvable</code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#revoke_certificate_on_destroy Certificate#revoke_certificate_on_destroy}. |
|
84
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.subjectAlternativeNames">subjectAlternativeNames</a></code> | <code>java.util.List<java.lang.String></code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#subject_alternative_names Certificate#subject_alternative_names}. |
|
85
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.tlsChallenge">tlsChallenge</a></code> | <code><a href="#@cdktf/provider-acme.certificate.CertificateTlsChallenge">CertificateTlsChallenge</a></code> | tls_challenge block. |
|
86
|
+
|
87
|
+
---
|
88
|
+
|
89
|
+
##### `scope`<sup>Required</sup> <a name="scope" id="@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.scope"></a>
|
90
|
+
|
91
|
+
- *Type:* software.constructs.Construct
|
92
|
+
|
93
|
+
The scope in which to define this construct.
|
94
|
+
|
95
|
+
---
|
96
|
+
|
97
|
+
##### `id`<sup>Required</sup> <a name="id" id="@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.id"></a>
|
98
|
+
|
99
|
+
- *Type:* java.lang.String
|
100
|
+
|
101
|
+
The scoped construct ID.
|
102
|
+
|
103
|
+
Must be unique amongst siblings in the same scope
|
104
|
+
|
105
|
+
---
|
106
|
+
|
107
|
+
##### `connection`<sup>Optional</sup> <a name="connection" id="@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.connection"></a>
|
108
|
+
|
109
|
+
- *Type:* com.hashicorp.cdktf.SSHProvisionerConnection OR com.hashicorp.cdktf.WinrmProvisionerConnection
|
110
|
+
|
111
|
+
---
|
112
|
+
|
113
|
+
##### `count`<sup>Optional</sup> <a name="count" id="@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.count"></a>
|
114
|
+
|
115
|
+
- *Type:* java.lang.Number OR com.hashicorp.cdktf.TerraformCount
|
116
|
+
|
117
|
+
---
|
118
|
+
|
119
|
+
##### `dependsOn`<sup>Optional</sup> <a name="dependsOn" id="@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.dependsOn"></a>
|
120
|
+
|
121
|
+
- *Type:* java.util.List<com.hashicorp.cdktf.ITerraformDependable>
|
122
|
+
|
123
|
+
---
|
124
|
+
|
125
|
+
##### `forEach`<sup>Optional</sup> <a name="forEach" id="@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.forEach"></a>
|
126
|
+
|
127
|
+
- *Type:* com.hashicorp.cdktf.ITerraformIterator
|
128
|
+
|
129
|
+
---
|
130
|
+
|
131
|
+
##### `lifecycle`<sup>Optional</sup> <a name="lifecycle" id="@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.lifecycle"></a>
|
132
|
+
|
133
|
+
- *Type:* com.hashicorp.cdktf.TerraformResourceLifecycle
|
134
|
+
|
135
|
+
---
|
136
|
+
|
137
|
+
##### `provider`<sup>Optional</sup> <a name="provider" id="@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.provider"></a>
|
138
|
+
|
139
|
+
- *Type:* com.hashicorp.cdktf.TerraformProvider
|
140
|
+
|
141
|
+
---
|
142
|
+
|
143
|
+
##### `provisioners`<sup>Optional</sup> <a name="provisioners" id="@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.provisioners"></a>
|
144
|
+
|
145
|
+
- *Type:* java.util.List<com.hashicorp.cdktf.FileProvisioner OR com.hashicorp.cdktf.LocalExecProvisioner OR com.hashicorp.cdktf.RemoteExecProvisioner>
|
146
|
+
|
147
|
+
---
|
148
|
+
|
149
|
+
##### `accountKeyPem`<sup>Required</sup> <a name="accountKeyPem" id="@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.accountKeyPem"></a>
|
150
|
+
|
151
|
+
- *Type:* java.lang.String
|
152
|
+
|
153
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#account_key_pem Certificate#account_key_pem}.
|
154
|
+
|
155
|
+
---
|
156
|
+
|
157
|
+
##### `certificateP12Password`<sup>Optional</sup> <a name="certificateP12Password" id="@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.certificateP12Password"></a>
|
158
|
+
|
159
|
+
- *Type:* java.lang.String
|
160
|
+
|
161
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#certificate_p12_password Certificate#certificate_p12_password}.
|
162
|
+
|
163
|
+
---
|
164
|
+
|
165
|
+
##### `certificateRequestPem`<sup>Optional</sup> <a name="certificateRequestPem" id="@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.certificateRequestPem"></a>
|
166
|
+
|
167
|
+
- *Type:* java.lang.String
|
168
|
+
|
169
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#certificate_request_pem Certificate#certificate_request_pem}.
|
170
|
+
|
171
|
+
---
|
172
|
+
|
173
|
+
##### `commonName`<sup>Optional</sup> <a name="commonName" id="@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.commonName"></a>
|
174
|
+
|
175
|
+
- *Type:* java.lang.String
|
176
|
+
|
177
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#common_name Certificate#common_name}.
|
178
|
+
|
179
|
+
---
|
180
|
+
|
181
|
+
##### `disableCompletePropagation`<sup>Optional</sup> <a name="disableCompletePropagation" id="@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.disableCompletePropagation"></a>
|
182
|
+
|
183
|
+
- *Type:* java.lang.Boolean OR com.hashicorp.cdktf.IResolvable
|
184
|
+
|
185
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#disable_complete_propagation Certificate#disable_complete_propagation}.
|
186
|
+
|
187
|
+
---
|
188
|
+
|
189
|
+
##### `dnsChallenge`<sup>Optional</sup> <a name="dnsChallenge" id="@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.dnsChallenge"></a>
|
190
|
+
|
191
|
+
- *Type:* com.hashicorp.cdktf.IResolvable OR java.util.List<<a href="#@cdktf/provider-acme.certificate.CertificateDnsChallenge">CertificateDnsChallenge</a>>
|
192
|
+
|
193
|
+
dns_challenge block.
|
194
|
+
|
195
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#dns_challenge Certificate#dns_challenge}
|
196
|
+
|
197
|
+
---
|
198
|
+
|
199
|
+
##### `httpChallenge`<sup>Optional</sup> <a name="httpChallenge" id="@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.httpChallenge"></a>
|
200
|
+
|
201
|
+
- *Type:* <a href="#@cdktf/provider-acme.certificate.CertificateHttpChallenge">CertificateHttpChallenge</a>
|
202
|
+
|
203
|
+
http_challenge block.
|
204
|
+
|
205
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#http_challenge Certificate#http_challenge}
|
206
|
+
|
207
|
+
---
|
208
|
+
|
209
|
+
##### `httpMemcachedChallenge`<sup>Optional</sup> <a name="httpMemcachedChallenge" id="@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.httpMemcachedChallenge"></a>
|
210
|
+
|
211
|
+
- *Type:* <a href="#@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallenge">CertificateHttpMemcachedChallenge</a>
|
212
|
+
|
213
|
+
http_memcached_challenge block.
|
214
|
+
|
215
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#http_memcached_challenge Certificate#http_memcached_challenge}
|
216
|
+
|
217
|
+
---
|
218
|
+
|
219
|
+
##### `httpWebrootChallenge`<sup>Optional</sup> <a name="httpWebrootChallenge" id="@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.httpWebrootChallenge"></a>
|
220
|
+
|
221
|
+
- *Type:* <a href="#@cdktf/provider-acme.certificate.CertificateHttpWebrootChallenge">CertificateHttpWebrootChallenge</a>
|
222
|
+
|
223
|
+
http_webroot_challenge block.
|
224
|
+
|
225
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#http_webroot_challenge Certificate#http_webroot_challenge}
|
226
|
+
|
227
|
+
---
|
228
|
+
|
229
|
+
##### `id`<sup>Optional</sup> <a name="id" id="@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.id"></a>
|
230
|
+
|
231
|
+
- *Type:* java.lang.String
|
232
|
+
|
233
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#id Certificate#id}.
|
234
|
+
|
235
|
+
Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
|
236
|
+
If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
|
237
|
+
|
238
|
+
---
|
239
|
+
|
240
|
+
##### `keyType`<sup>Optional</sup> <a name="keyType" id="@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.keyType"></a>
|
241
|
+
|
242
|
+
- *Type:* java.lang.String
|
243
|
+
|
244
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#key_type Certificate#key_type}.
|
245
|
+
|
246
|
+
---
|
247
|
+
|
248
|
+
##### `minDaysRemaining`<sup>Optional</sup> <a name="minDaysRemaining" id="@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.minDaysRemaining"></a>
|
249
|
+
|
250
|
+
- *Type:* java.lang.Number
|
251
|
+
|
252
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#min_days_remaining Certificate#min_days_remaining}.
|
253
|
+
|
254
|
+
---
|
255
|
+
|
256
|
+
##### `mustStaple`<sup>Optional</sup> <a name="mustStaple" id="@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.mustStaple"></a>
|
257
|
+
|
258
|
+
- *Type:* java.lang.Boolean OR com.hashicorp.cdktf.IResolvable
|
259
|
+
|
260
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#must_staple Certificate#must_staple}.
|
261
|
+
|
262
|
+
---
|
263
|
+
|
264
|
+
##### `preCheckDelay`<sup>Optional</sup> <a name="preCheckDelay" id="@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.preCheckDelay"></a>
|
265
|
+
|
266
|
+
- *Type:* java.lang.Number
|
267
|
+
|
268
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#pre_check_delay Certificate#pre_check_delay}.
|
269
|
+
|
270
|
+
---
|
271
|
+
|
272
|
+
##### `preferredChain`<sup>Optional</sup> <a name="preferredChain" id="@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.preferredChain"></a>
|
273
|
+
|
274
|
+
- *Type:* java.lang.String
|
275
|
+
|
276
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#preferred_chain Certificate#preferred_chain}.
|
277
|
+
|
278
|
+
---
|
279
|
+
|
280
|
+
##### `recursiveNameservers`<sup>Optional</sup> <a name="recursiveNameservers" id="@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.recursiveNameservers"></a>
|
281
|
+
|
282
|
+
- *Type:* java.util.List<java.lang.String>
|
283
|
+
|
284
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#recursive_nameservers Certificate#recursive_nameservers}.
|
285
|
+
|
286
|
+
---
|
287
|
+
|
288
|
+
##### `revokeCertificateOnDestroy`<sup>Optional</sup> <a name="revokeCertificateOnDestroy" id="@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.revokeCertificateOnDestroy"></a>
|
289
|
+
|
290
|
+
- *Type:* java.lang.Boolean OR com.hashicorp.cdktf.IResolvable
|
291
|
+
|
292
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#revoke_certificate_on_destroy Certificate#revoke_certificate_on_destroy}.
|
293
|
+
|
294
|
+
---
|
295
|
+
|
296
|
+
##### `subjectAlternativeNames`<sup>Optional</sup> <a name="subjectAlternativeNames" id="@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.subjectAlternativeNames"></a>
|
297
|
+
|
298
|
+
- *Type:* java.util.List<java.lang.String>
|
299
|
+
|
300
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#subject_alternative_names Certificate#subject_alternative_names}.
|
301
|
+
|
302
|
+
---
|
303
|
+
|
304
|
+
##### `tlsChallenge`<sup>Optional</sup> <a name="tlsChallenge" id="@cdktf/provider-acme.certificate.Certificate.Initializer.parameter.tlsChallenge"></a>
|
305
|
+
|
306
|
+
- *Type:* <a href="#@cdktf/provider-acme.certificate.CertificateTlsChallenge">CertificateTlsChallenge</a>
|
307
|
+
|
308
|
+
tls_challenge block.
|
309
|
+
|
310
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#tls_challenge Certificate#tls_challenge}
|
311
|
+
|
312
|
+
---
|
313
|
+
|
314
|
+
#### Methods <a name="Methods" id="Methods"></a>
|
315
|
+
|
316
|
+
| **Name** | **Description** |
|
317
|
+
| --- | --- |
|
318
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.toString">toString</a></code> | Returns a string representation of this construct. |
|
319
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.addOverride">addOverride</a></code> | *No description.* |
|
320
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.overrideLogicalId">overrideLogicalId</a></code> | Overrides the auto-generated logical ID with a specific ID. |
|
321
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.resetOverrideLogicalId">resetOverrideLogicalId</a></code> | Resets a previously passed logical Id to use the auto-generated logical id again. |
|
322
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.toMetadata">toMetadata</a></code> | *No description.* |
|
323
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.toTerraform">toTerraform</a></code> | Adds this resource to the terraform JSON output. |
|
324
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.getAnyMapAttribute">getAnyMapAttribute</a></code> | *No description.* |
|
325
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.getBooleanAttribute">getBooleanAttribute</a></code> | *No description.* |
|
326
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.getBooleanMapAttribute">getBooleanMapAttribute</a></code> | *No description.* |
|
327
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.getListAttribute">getListAttribute</a></code> | *No description.* |
|
328
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.getNumberAttribute">getNumberAttribute</a></code> | *No description.* |
|
329
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.getNumberListAttribute">getNumberListAttribute</a></code> | *No description.* |
|
330
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.getNumberMapAttribute">getNumberMapAttribute</a></code> | *No description.* |
|
331
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.getStringAttribute">getStringAttribute</a></code> | *No description.* |
|
332
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.getStringMapAttribute">getStringMapAttribute</a></code> | *No description.* |
|
333
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.interpolationForAttribute">interpolationForAttribute</a></code> | *No description.* |
|
334
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.putDnsChallenge">putDnsChallenge</a></code> | *No description.* |
|
335
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.putHttpChallenge">putHttpChallenge</a></code> | *No description.* |
|
336
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.putHttpMemcachedChallenge">putHttpMemcachedChallenge</a></code> | *No description.* |
|
337
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.putHttpWebrootChallenge">putHttpWebrootChallenge</a></code> | *No description.* |
|
338
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.putTlsChallenge">putTlsChallenge</a></code> | *No description.* |
|
339
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.resetCertificateP12Password">resetCertificateP12Password</a></code> | *No description.* |
|
340
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.resetCertificateRequestPem">resetCertificateRequestPem</a></code> | *No description.* |
|
341
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.resetCommonName">resetCommonName</a></code> | *No description.* |
|
342
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.resetDisableCompletePropagation">resetDisableCompletePropagation</a></code> | *No description.* |
|
343
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.resetDnsChallenge">resetDnsChallenge</a></code> | *No description.* |
|
344
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.resetHttpChallenge">resetHttpChallenge</a></code> | *No description.* |
|
345
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.resetHttpMemcachedChallenge">resetHttpMemcachedChallenge</a></code> | *No description.* |
|
346
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.resetHttpWebrootChallenge">resetHttpWebrootChallenge</a></code> | *No description.* |
|
347
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.resetId">resetId</a></code> | *No description.* |
|
348
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.resetKeyType">resetKeyType</a></code> | *No description.* |
|
349
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.resetMinDaysRemaining">resetMinDaysRemaining</a></code> | *No description.* |
|
350
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.resetMustStaple">resetMustStaple</a></code> | *No description.* |
|
351
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.resetPreCheckDelay">resetPreCheckDelay</a></code> | *No description.* |
|
352
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.resetPreferredChain">resetPreferredChain</a></code> | *No description.* |
|
353
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.resetRecursiveNameservers">resetRecursiveNameservers</a></code> | *No description.* |
|
354
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.resetRevokeCertificateOnDestroy">resetRevokeCertificateOnDestroy</a></code> | *No description.* |
|
355
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.resetSubjectAlternativeNames">resetSubjectAlternativeNames</a></code> | *No description.* |
|
356
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.resetTlsChallenge">resetTlsChallenge</a></code> | *No description.* |
|
357
|
+
|
358
|
+
---
|
359
|
+
|
360
|
+
##### `toString` <a name="toString" id="@cdktf/provider-acme.certificate.Certificate.toString"></a>
|
361
|
+
|
362
|
+
```java
|
363
|
+
public java.lang.String toString()
|
364
|
+
```
|
365
|
+
|
366
|
+
Returns a string representation of this construct.
|
367
|
+
|
368
|
+
##### `addOverride` <a name="addOverride" id="@cdktf/provider-acme.certificate.Certificate.addOverride"></a>
|
369
|
+
|
370
|
+
```java
|
371
|
+
public void addOverride(java.lang.String path, java.lang.Object value)
|
372
|
+
```
|
373
|
+
|
374
|
+
###### `path`<sup>Required</sup> <a name="path" id="@cdktf/provider-acme.certificate.Certificate.addOverride.parameter.path"></a>
|
375
|
+
|
376
|
+
- *Type:* java.lang.String
|
377
|
+
|
378
|
+
---
|
379
|
+
|
380
|
+
###### `value`<sup>Required</sup> <a name="value" id="@cdktf/provider-acme.certificate.Certificate.addOverride.parameter.value"></a>
|
381
|
+
|
382
|
+
- *Type:* java.lang.Object
|
383
|
+
|
384
|
+
---
|
385
|
+
|
386
|
+
##### `overrideLogicalId` <a name="overrideLogicalId" id="@cdktf/provider-acme.certificate.Certificate.overrideLogicalId"></a>
|
387
|
+
|
388
|
+
```java
|
389
|
+
public void overrideLogicalId(java.lang.String newLogicalId)
|
390
|
+
```
|
391
|
+
|
392
|
+
Overrides the auto-generated logical ID with a specific ID.
|
393
|
+
|
394
|
+
###### `newLogicalId`<sup>Required</sup> <a name="newLogicalId" id="@cdktf/provider-acme.certificate.Certificate.overrideLogicalId.parameter.newLogicalId"></a>
|
395
|
+
|
396
|
+
- *Type:* java.lang.String
|
397
|
+
|
398
|
+
The new logical ID to use for this stack element.
|
399
|
+
|
400
|
+
---
|
401
|
+
|
402
|
+
##### `resetOverrideLogicalId` <a name="resetOverrideLogicalId" id="@cdktf/provider-acme.certificate.Certificate.resetOverrideLogicalId"></a>
|
403
|
+
|
404
|
+
```java
|
405
|
+
public void resetOverrideLogicalId()
|
406
|
+
```
|
407
|
+
|
408
|
+
Resets a previously passed logical Id to use the auto-generated logical id again.
|
409
|
+
|
410
|
+
##### `toMetadata` <a name="toMetadata" id="@cdktf/provider-acme.certificate.Certificate.toMetadata"></a>
|
411
|
+
|
412
|
+
```java
|
413
|
+
public java.lang.Object toMetadata()
|
414
|
+
```
|
415
|
+
|
416
|
+
##### `toTerraform` <a name="toTerraform" id="@cdktf/provider-acme.certificate.Certificate.toTerraform"></a>
|
417
|
+
|
418
|
+
```java
|
419
|
+
public java.lang.Object toTerraform()
|
420
|
+
```
|
421
|
+
|
422
|
+
Adds this resource to the terraform JSON output.
|
423
|
+
|
424
|
+
##### `getAnyMapAttribute` <a name="getAnyMapAttribute" id="@cdktf/provider-acme.certificate.Certificate.getAnyMapAttribute"></a>
|
425
|
+
|
426
|
+
```java
|
427
|
+
public java.util.Map<java.lang.String, java.lang.Object> getAnyMapAttribute(java.lang.String terraformAttribute)
|
428
|
+
```
|
429
|
+
|
430
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.Certificate.getAnyMapAttribute.parameter.terraformAttribute"></a>
|
431
|
+
|
432
|
+
- *Type:* java.lang.String
|
433
|
+
|
434
|
+
---
|
435
|
+
|
436
|
+
##### `getBooleanAttribute` <a name="getBooleanAttribute" id="@cdktf/provider-acme.certificate.Certificate.getBooleanAttribute"></a>
|
437
|
+
|
438
|
+
```java
|
439
|
+
public IResolvable getBooleanAttribute(java.lang.String terraformAttribute)
|
440
|
+
```
|
441
|
+
|
442
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.Certificate.getBooleanAttribute.parameter.terraformAttribute"></a>
|
443
|
+
|
444
|
+
- *Type:* java.lang.String
|
445
|
+
|
446
|
+
---
|
447
|
+
|
448
|
+
##### `getBooleanMapAttribute` <a name="getBooleanMapAttribute" id="@cdktf/provider-acme.certificate.Certificate.getBooleanMapAttribute"></a>
|
449
|
+
|
450
|
+
```java
|
451
|
+
public java.util.Map<java.lang.String, java.lang.Boolean> getBooleanMapAttribute(java.lang.String terraformAttribute)
|
452
|
+
```
|
453
|
+
|
454
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.Certificate.getBooleanMapAttribute.parameter.terraformAttribute"></a>
|
455
|
+
|
456
|
+
- *Type:* java.lang.String
|
457
|
+
|
458
|
+
---
|
459
|
+
|
460
|
+
##### `getListAttribute` <a name="getListAttribute" id="@cdktf/provider-acme.certificate.Certificate.getListAttribute"></a>
|
461
|
+
|
462
|
+
```java
|
463
|
+
public java.util.List<java.lang.String> getListAttribute(java.lang.String terraformAttribute)
|
464
|
+
```
|
465
|
+
|
466
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.Certificate.getListAttribute.parameter.terraformAttribute"></a>
|
467
|
+
|
468
|
+
- *Type:* java.lang.String
|
469
|
+
|
470
|
+
---
|
471
|
+
|
472
|
+
##### `getNumberAttribute` <a name="getNumberAttribute" id="@cdktf/provider-acme.certificate.Certificate.getNumberAttribute"></a>
|
473
|
+
|
474
|
+
```java
|
475
|
+
public java.lang.Number getNumberAttribute(java.lang.String terraformAttribute)
|
476
|
+
```
|
477
|
+
|
478
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.Certificate.getNumberAttribute.parameter.terraformAttribute"></a>
|
479
|
+
|
480
|
+
- *Type:* java.lang.String
|
481
|
+
|
482
|
+
---
|
483
|
+
|
484
|
+
##### `getNumberListAttribute` <a name="getNumberListAttribute" id="@cdktf/provider-acme.certificate.Certificate.getNumberListAttribute"></a>
|
485
|
+
|
486
|
+
```java
|
487
|
+
public java.util.List<java.lang.Number> getNumberListAttribute(java.lang.String terraformAttribute)
|
488
|
+
```
|
489
|
+
|
490
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.Certificate.getNumberListAttribute.parameter.terraformAttribute"></a>
|
491
|
+
|
492
|
+
- *Type:* java.lang.String
|
493
|
+
|
494
|
+
---
|
495
|
+
|
496
|
+
##### `getNumberMapAttribute` <a name="getNumberMapAttribute" id="@cdktf/provider-acme.certificate.Certificate.getNumberMapAttribute"></a>
|
497
|
+
|
498
|
+
```java
|
499
|
+
public java.util.Map<java.lang.String, java.lang.Number> getNumberMapAttribute(java.lang.String terraformAttribute)
|
500
|
+
```
|
501
|
+
|
502
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.Certificate.getNumberMapAttribute.parameter.terraformAttribute"></a>
|
503
|
+
|
504
|
+
- *Type:* java.lang.String
|
505
|
+
|
506
|
+
---
|
507
|
+
|
508
|
+
##### `getStringAttribute` <a name="getStringAttribute" id="@cdktf/provider-acme.certificate.Certificate.getStringAttribute"></a>
|
509
|
+
|
510
|
+
```java
|
511
|
+
public java.lang.String getStringAttribute(java.lang.String terraformAttribute)
|
512
|
+
```
|
513
|
+
|
514
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.Certificate.getStringAttribute.parameter.terraformAttribute"></a>
|
515
|
+
|
516
|
+
- *Type:* java.lang.String
|
517
|
+
|
518
|
+
---
|
519
|
+
|
520
|
+
##### `getStringMapAttribute` <a name="getStringMapAttribute" id="@cdktf/provider-acme.certificate.Certificate.getStringMapAttribute"></a>
|
521
|
+
|
522
|
+
```java
|
523
|
+
public java.util.Map<java.lang.String, java.lang.String> getStringMapAttribute(java.lang.String terraformAttribute)
|
524
|
+
```
|
525
|
+
|
526
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.Certificate.getStringMapAttribute.parameter.terraformAttribute"></a>
|
527
|
+
|
528
|
+
- *Type:* java.lang.String
|
529
|
+
|
530
|
+
---
|
531
|
+
|
532
|
+
##### `interpolationForAttribute` <a name="interpolationForAttribute" id="@cdktf/provider-acme.certificate.Certificate.interpolationForAttribute"></a>
|
533
|
+
|
534
|
+
```java
|
535
|
+
public IResolvable interpolationForAttribute(java.lang.String terraformAttribute)
|
536
|
+
```
|
537
|
+
|
538
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.Certificate.interpolationForAttribute.parameter.terraformAttribute"></a>
|
539
|
+
|
540
|
+
- *Type:* java.lang.String
|
541
|
+
|
542
|
+
---
|
543
|
+
|
544
|
+
##### `putDnsChallenge` <a name="putDnsChallenge" id="@cdktf/provider-acme.certificate.Certificate.putDnsChallenge"></a>
|
545
|
+
|
546
|
+
```java
|
547
|
+
public void putDnsChallenge(IResolvable OR java.util.List<CertificateDnsChallenge> value)
|
548
|
+
```
|
549
|
+
|
550
|
+
###### `value`<sup>Required</sup> <a name="value" id="@cdktf/provider-acme.certificate.Certificate.putDnsChallenge.parameter.value"></a>
|
551
|
+
|
552
|
+
- *Type:* com.hashicorp.cdktf.IResolvable OR java.util.List<<a href="#@cdktf/provider-acme.certificate.CertificateDnsChallenge">CertificateDnsChallenge</a>>
|
553
|
+
|
554
|
+
---
|
555
|
+
|
556
|
+
##### `putHttpChallenge` <a name="putHttpChallenge" id="@cdktf/provider-acme.certificate.Certificate.putHttpChallenge"></a>
|
557
|
+
|
558
|
+
```java
|
559
|
+
public void putHttpChallenge(CertificateHttpChallenge value)
|
560
|
+
```
|
561
|
+
|
562
|
+
###### `value`<sup>Required</sup> <a name="value" id="@cdktf/provider-acme.certificate.Certificate.putHttpChallenge.parameter.value"></a>
|
563
|
+
|
564
|
+
- *Type:* <a href="#@cdktf/provider-acme.certificate.CertificateHttpChallenge">CertificateHttpChallenge</a>
|
565
|
+
|
566
|
+
---
|
567
|
+
|
568
|
+
##### `putHttpMemcachedChallenge` <a name="putHttpMemcachedChallenge" id="@cdktf/provider-acme.certificate.Certificate.putHttpMemcachedChallenge"></a>
|
569
|
+
|
570
|
+
```java
|
571
|
+
public void putHttpMemcachedChallenge(CertificateHttpMemcachedChallenge value)
|
572
|
+
```
|
573
|
+
|
574
|
+
###### `value`<sup>Required</sup> <a name="value" id="@cdktf/provider-acme.certificate.Certificate.putHttpMemcachedChallenge.parameter.value"></a>
|
575
|
+
|
576
|
+
- *Type:* <a href="#@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallenge">CertificateHttpMemcachedChallenge</a>
|
577
|
+
|
578
|
+
---
|
579
|
+
|
580
|
+
##### `putHttpWebrootChallenge` <a name="putHttpWebrootChallenge" id="@cdktf/provider-acme.certificate.Certificate.putHttpWebrootChallenge"></a>
|
581
|
+
|
582
|
+
```java
|
583
|
+
public void putHttpWebrootChallenge(CertificateHttpWebrootChallenge value)
|
584
|
+
```
|
585
|
+
|
586
|
+
###### `value`<sup>Required</sup> <a name="value" id="@cdktf/provider-acme.certificate.Certificate.putHttpWebrootChallenge.parameter.value"></a>
|
587
|
+
|
588
|
+
- *Type:* <a href="#@cdktf/provider-acme.certificate.CertificateHttpWebrootChallenge">CertificateHttpWebrootChallenge</a>
|
589
|
+
|
590
|
+
---
|
591
|
+
|
592
|
+
##### `putTlsChallenge` <a name="putTlsChallenge" id="@cdktf/provider-acme.certificate.Certificate.putTlsChallenge"></a>
|
593
|
+
|
594
|
+
```java
|
595
|
+
public void putTlsChallenge(CertificateTlsChallenge value)
|
596
|
+
```
|
597
|
+
|
598
|
+
###### `value`<sup>Required</sup> <a name="value" id="@cdktf/provider-acme.certificate.Certificate.putTlsChallenge.parameter.value"></a>
|
599
|
+
|
600
|
+
- *Type:* <a href="#@cdktf/provider-acme.certificate.CertificateTlsChallenge">CertificateTlsChallenge</a>
|
601
|
+
|
602
|
+
---
|
603
|
+
|
604
|
+
##### `resetCertificateP12Password` <a name="resetCertificateP12Password" id="@cdktf/provider-acme.certificate.Certificate.resetCertificateP12Password"></a>
|
605
|
+
|
606
|
+
```java
|
607
|
+
public void resetCertificateP12Password()
|
608
|
+
```
|
609
|
+
|
610
|
+
##### `resetCertificateRequestPem` <a name="resetCertificateRequestPem" id="@cdktf/provider-acme.certificate.Certificate.resetCertificateRequestPem"></a>
|
611
|
+
|
612
|
+
```java
|
613
|
+
public void resetCertificateRequestPem()
|
614
|
+
```
|
615
|
+
|
616
|
+
##### `resetCommonName` <a name="resetCommonName" id="@cdktf/provider-acme.certificate.Certificate.resetCommonName"></a>
|
617
|
+
|
618
|
+
```java
|
619
|
+
public void resetCommonName()
|
620
|
+
```
|
621
|
+
|
622
|
+
##### `resetDisableCompletePropagation` <a name="resetDisableCompletePropagation" id="@cdktf/provider-acme.certificate.Certificate.resetDisableCompletePropagation"></a>
|
623
|
+
|
624
|
+
```java
|
625
|
+
public void resetDisableCompletePropagation()
|
626
|
+
```
|
627
|
+
|
628
|
+
##### `resetDnsChallenge` <a name="resetDnsChallenge" id="@cdktf/provider-acme.certificate.Certificate.resetDnsChallenge"></a>
|
629
|
+
|
630
|
+
```java
|
631
|
+
public void resetDnsChallenge()
|
632
|
+
```
|
633
|
+
|
634
|
+
##### `resetHttpChallenge` <a name="resetHttpChallenge" id="@cdktf/provider-acme.certificate.Certificate.resetHttpChallenge"></a>
|
635
|
+
|
636
|
+
```java
|
637
|
+
public void resetHttpChallenge()
|
638
|
+
```
|
639
|
+
|
640
|
+
##### `resetHttpMemcachedChallenge` <a name="resetHttpMemcachedChallenge" id="@cdktf/provider-acme.certificate.Certificate.resetHttpMemcachedChallenge"></a>
|
641
|
+
|
642
|
+
```java
|
643
|
+
public void resetHttpMemcachedChallenge()
|
644
|
+
```
|
645
|
+
|
646
|
+
##### `resetHttpWebrootChallenge` <a name="resetHttpWebrootChallenge" id="@cdktf/provider-acme.certificate.Certificate.resetHttpWebrootChallenge"></a>
|
647
|
+
|
648
|
+
```java
|
649
|
+
public void resetHttpWebrootChallenge()
|
650
|
+
```
|
651
|
+
|
652
|
+
##### `resetId` <a name="resetId" id="@cdktf/provider-acme.certificate.Certificate.resetId"></a>
|
653
|
+
|
654
|
+
```java
|
655
|
+
public void resetId()
|
656
|
+
```
|
657
|
+
|
658
|
+
##### `resetKeyType` <a name="resetKeyType" id="@cdktf/provider-acme.certificate.Certificate.resetKeyType"></a>
|
659
|
+
|
660
|
+
```java
|
661
|
+
public void resetKeyType()
|
662
|
+
```
|
663
|
+
|
664
|
+
##### `resetMinDaysRemaining` <a name="resetMinDaysRemaining" id="@cdktf/provider-acme.certificate.Certificate.resetMinDaysRemaining"></a>
|
665
|
+
|
666
|
+
```java
|
667
|
+
public void resetMinDaysRemaining()
|
668
|
+
```
|
669
|
+
|
670
|
+
##### `resetMustStaple` <a name="resetMustStaple" id="@cdktf/provider-acme.certificate.Certificate.resetMustStaple"></a>
|
671
|
+
|
672
|
+
```java
|
673
|
+
public void resetMustStaple()
|
674
|
+
```
|
675
|
+
|
676
|
+
##### `resetPreCheckDelay` <a name="resetPreCheckDelay" id="@cdktf/provider-acme.certificate.Certificate.resetPreCheckDelay"></a>
|
677
|
+
|
678
|
+
```java
|
679
|
+
public void resetPreCheckDelay()
|
680
|
+
```
|
681
|
+
|
682
|
+
##### `resetPreferredChain` <a name="resetPreferredChain" id="@cdktf/provider-acme.certificate.Certificate.resetPreferredChain"></a>
|
683
|
+
|
684
|
+
```java
|
685
|
+
public void resetPreferredChain()
|
686
|
+
```
|
687
|
+
|
688
|
+
##### `resetRecursiveNameservers` <a name="resetRecursiveNameservers" id="@cdktf/provider-acme.certificate.Certificate.resetRecursiveNameservers"></a>
|
689
|
+
|
690
|
+
```java
|
691
|
+
public void resetRecursiveNameservers()
|
692
|
+
```
|
693
|
+
|
694
|
+
##### `resetRevokeCertificateOnDestroy` <a name="resetRevokeCertificateOnDestroy" id="@cdktf/provider-acme.certificate.Certificate.resetRevokeCertificateOnDestroy"></a>
|
695
|
+
|
696
|
+
```java
|
697
|
+
public void resetRevokeCertificateOnDestroy()
|
698
|
+
```
|
699
|
+
|
700
|
+
##### `resetSubjectAlternativeNames` <a name="resetSubjectAlternativeNames" id="@cdktf/provider-acme.certificate.Certificate.resetSubjectAlternativeNames"></a>
|
701
|
+
|
702
|
+
```java
|
703
|
+
public void resetSubjectAlternativeNames()
|
704
|
+
```
|
705
|
+
|
706
|
+
##### `resetTlsChallenge` <a name="resetTlsChallenge" id="@cdktf/provider-acme.certificate.Certificate.resetTlsChallenge"></a>
|
707
|
+
|
708
|
+
```java
|
709
|
+
public void resetTlsChallenge()
|
710
|
+
```
|
711
|
+
|
712
|
+
#### Static Functions <a name="Static Functions" id="Static Functions"></a>
|
713
|
+
|
714
|
+
| **Name** | **Description** |
|
715
|
+
| --- | --- |
|
716
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.isConstruct">isConstruct</a></code> | Checks if `x` is a construct. |
|
717
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.isTerraformElement">isTerraformElement</a></code> | *No description.* |
|
718
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.isTerraformResource">isTerraformResource</a></code> | *No description.* |
|
719
|
+
|
720
|
+
---
|
721
|
+
|
722
|
+
##### `isConstruct` <a name="isConstruct" id="@cdktf/provider-acme.certificate.Certificate.isConstruct"></a>
|
723
|
+
|
724
|
+
```java
|
725
|
+
import com.hashicorp.cdktf.providers.acme.certificate.Certificate;
|
726
|
+
|
727
|
+
Certificate.isConstruct(java.lang.Object x)
|
728
|
+
```
|
729
|
+
|
730
|
+
Checks if `x` is a construct.
|
731
|
+
|
732
|
+
Use this method instead of `instanceof` to properly detect `Construct`
|
733
|
+
instances, even when the construct library is symlinked.
|
734
|
+
|
735
|
+
Explanation: in JavaScript, multiple copies of the `constructs` library on
|
736
|
+
disk are seen as independent, completely different libraries. As a
|
737
|
+
consequence, the class `Construct` in each copy of the `constructs` library
|
738
|
+
is seen as a different class, and an instance of one class will not test as
|
739
|
+
`instanceof` the other class. `npm install` will not create installations
|
740
|
+
like this, but users may manually symlink construct libraries together or
|
741
|
+
use a monorepo tool: in those cases, multiple copies of the `constructs`
|
742
|
+
library can be accidentally installed, and `instanceof` will behave
|
743
|
+
unpredictably. It is safest to avoid using `instanceof`, and using
|
744
|
+
this type-testing method instead.
|
745
|
+
|
746
|
+
###### `x`<sup>Required</sup> <a name="x" id="@cdktf/provider-acme.certificate.Certificate.isConstruct.parameter.x"></a>
|
747
|
+
|
748
|
+
- *Type:* java.lang.Object
|
749
|
+
|
750
|
+
Any object.
|
751
|
+
|
752
|
+
---
|
753
|
+
|
754
|
+
##### `isTerraformElement` <a name="isTerraformElement" id="@cdktf/provider-acme.certificate.Certificate.isTerraformElement"></a>
|
755
|
+
|
756
|
+
```java
|
757
|
+
import com.hashicorp.cdktf.providers.acme.certificate.Certificate;
|
758
|
+
|
759
|
+
Certificate.isTerraformElement(java.lang.Object x)
|
760
|
+
```
|
761
|
+
|
762
|
+
###### `x`<sup>Required</sup> <a name="x" id="@cdktf/provider-acme.certificate.Certificate.isTerraformElement.parameter.x"></a>
|
763
|
+
|
764
|
+
- *Type:* java.lang.Object
|
765
|
+
|
766
|
+
---
|
767
|
+
|
768
|
+
##### `isTerraformResource` <a name="isTerraformResource" id="@cdktf/provider-acme.certificate.Certificate.isTerraformResource"></a>
|
769
|
+
|
770
|
+
```java
|
771
|
+
import com.hashicorp.cdktf.providers.acme.certificate.Certificate;
|
772
|
+
|
773
|
+
Certificate.isTerraformResource(java.lang.Object x)
|
774
|
+
```
|
775
|
+
|
776
|
+
###### `x`<sup>Required</sup> <a name="x" id="@cdktf/provider-acme.certificate.Certificate.isTerraformResource.parameter.x"></a>
|
777
|
+
|
778
|
+
- *Type:* java.lang.Object
|
779
|
+
|
780
|
+
---
|
781
|
+
|
782
|
+
#### Properties <a name="Properties" id="Properties"></a>
|
783
|
+
|
784
|
+
| **Name** | **Type** | **Description** |
|
785
|
+
| --- | --- | --- |
|
786
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.node">node</a></code> | <code>software.constructs.Node</code> | The tree node. |
|
787
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.cdktfStack">cdktfStack</a></code> | <code>com.hashicorp.cdktf.TerraformStack</code> | *No description.* |
|
788
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.fqn">fqn</a></code> | <code>java.lang.String</code> | *No description.* |
|
789
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.friendlyUniqueId">friendlyUniqueId</a></code> | <code>java.lang.String</code> | *No description.* |
|
790
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.terraformMetaArguments">terraformMetaArguments</a></code> | <code>java.util.Map<java.lang.String, java.lang.Object></code> | *No description.* |
|
791
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.terraformResourceType">terraformResourceType</a></code> | <code>java.lang.String</code> | *No description.* |
|
792
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.terraformGeneratorMetadata">terraformGeneratorMetadata</a></code> | <code>com.hashicorp.cdktf.TerraformProviderGeneratorMetadata</code> | *No description.* |
|
793
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.connection">connection</a></code> | <code>com.hashicorp.cdktf.SSHProvisionerConnection OR com.hashicorp.cdktf.WinrmProvisionerConnection</code> | *No description.* |
|
794
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.count">count</a></code> | <code>java.lang.Number OR com.hashicorp.cdktf.TerraformCount</code> | *No description.* |
|
795
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.dependsOn">dependsOn</a></code> | <code>java.util.List<java.lang.String></code> | *No description.* |
|
796
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.forEach">forEach</a></code> | <code>com.hashicorp.cdktf.ITerraformIterator</code> | *No description.* |
|
797
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.lifecycle">lifecycle</a></code> | <code>com.hashicorp.cdktf.TerraformResourceLifecycle</code> | *No description.* |
|
798
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.provider">provider</a></code> | <code>com.hashicorp.cdktf.TerraformProvider</code> | *No description.* |
|
799
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.provisioners">provisioners</a></code> | <code>java.util.List<com.hashicorp.cdktf.FileProvisioner OR com.hashicorp.cdktf.LocalExecProvisioner OR com.hashicorp.cdktf.RemoteExecProvisioner></code> | *No description.* |
|
800
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.certificateDomain">certificateDomain</a></code> | <code>java.lang.String</code> | *No description.* |
|
801
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.certificateNotAfter">certificateNotAfter</a></code> | <code>java.lang.String</code> | *No description.* |
|
802
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.certificateP12">certificateP12</a></code> | <code>java.lang.String</code> | *No description.* |
|
803
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.certificatePem">certificatePem</a></code> | <code>java.lang.String</code> | *No description.* |
|
804
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.certificateUrl">certificateUrl</a></code> | <code>java.lang.String</code> | *No description.* |
|
805
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.dnsChallenge">dnsChallenge</a></code> | <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeList">CertificateDnsChallengeList</a></code> | *No description.* |
|
806
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.httpChallenge">httpChallenge</a></code> | <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference">CertificateHttpChallengeOutputReference</a></code> | *No description.* |
|
807
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.httpMemcachedChallenge">httpMemcachedChallenge</a></code> | <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference">CertificateHttpMemcachedChallengeOutputReference</a></code> | *No description.* |
|
808
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.httpWebrootChallenge">httpWebrootChallenge</a></code> | <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference">CertificateHttpWebrootChallengeOutputReference</a></code> | *No description.* |
|
809
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.issuerPem">issuerPem</a></code> | <code>java.lang.String</code> | *No description.* |
|
810
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.privateKeyPem">privateKeyPem</a></code> | <code>java.lang.String</code> | *No description.* |
|
811
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.tlsChallenge">tlsChallenge</a></code> | <code><a href="#@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference">CertificateTlsChallengeOutputReference</a></code> | *No description.* |
|
812
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.accountKeyPemInput">accountKeyPemInput</a></code> | <code>java.lang.String</code> | *No description.* |
|
813
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.certificateP12PasswordInput">certificateP12PasswordInput</a></code> | <code>java.lang.String</code> | *No description.* |
|
814
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.certificateRequestPemInput">certificateRequestPemInput</a></code> | <code>java.lang.String</code> | *No description.* |
|
815
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.commonNameInput">commonNameInput</a></code> | <code>java.lang.String</code> | *No description.* |
|
816
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.disableCompletePropagationInput">disableCompletePropagationInput</a></code> | <code>java.lang.Boolean OR com.hashicorp.cdktf.IResolvable</code> | *No description.* |
|
817
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.dnsChallengeInput">dnsChallengeInput</a></code> | <code>com.hashicorp.cdktf.IResolvable OR java.util.List<<a href="#@cdktf/provider-acme.certificate.CertificateDnsChallenge">CertificateDnsChallenge</a>></code> | *No description.* |
|
818
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.httpChallengeInput">httpChallengeInput</a></code> | <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpChallenge">CertificateHttpChallenge</a></code> | *No description.* |
|
819
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.httpMemcachedChallengeInput">httpMemcachedChallengeInput</a></code> | <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallenge">CertificateHttpMemcachedChallenge</a></code> | *No description.* |
|
820
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.httpWebrootChallengeInput">httpWebrootChallengeInput</a></code> | <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpWebrootChallenge">CertificateHttpWebrootChallenge</a></code> | *No description.* |
|
821
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.idInput">idInput</a></code> | <code>java.lang.String</code> | *No description.* |
|
822
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.keyTypeInput">keyTypeInput</a></code> | <code>java.lang.String</code> | *No description.* |
|
823
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.minDaysRemainingInput">minDaysRemainingInput</a></code> | <code>java.lang.Number</code> | *No description.* |
|
824
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.mustStapleInput">mustStapleInput</a></code> | <code>java.lang.Boolean OR com.hashicorp.cdktf.IResolvable</code> | *No description.* |
|
825
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.preCheckDelayInput">preCheckDelayInput</a></code> | <code>java.lang.Number</code> | *No description.* |
|
826
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.preferredChainInput">preferredChainInput</a></code> | <code>java.lang.String</code> | *No description.* |
|
827
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.recursiveNameserversInput">recursiveNameserversInput</a></code> | <code>java.util.List<java.lang.String></code> | *No description.* |
|
828
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.revokeCertificateOnDestroyInput">revokeCertificateOnDestroyInput</a></code> | <code>java.lang.Boolean OR com.hashicorp.cdktf.IResolvable</code> | *No description.* |
|
829
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.subjectAlternativeNamesInput">subjectAlternativeNamesInput</a></code> | <code>java.util.List<java.lang.String></code> | *No description.* |
|
830
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.tlsChallengeInput">tlsChallengeInput</a></code> | <code><a href="#@cdktf/provider-acme.certificate.CertificateTlsChallenge">CertificateTlsChallenge</a></code> | *No description.* |
|
831
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.accountKeyPem">accountKeyPem</a></code> | <code>java.lang.String</code> | *No description.* |
|
832
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.certificateP12Password">certificateP12Password</a></code> | <code>java.lang.String</code> | *No description.* |
|
833
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.certificateRequestPem">certificateRequestPem</a></code> | <code>java.lang.String</code> | *No description.* |
|
834
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.commonName">commonName</a></code> | <code>java.lang.String</code> | *No description.* |
|
835
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.disableCompletePropagation">disableCompletePropagation</a></code> | <code>java.lang.Boolean OR com.hashicorp.cdktf.IResolvable</code> | *No description.* |
|
836
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.id">id</a></code> | <code>java.lang.String</code> | *No description.* |
|
837
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.keyType">keyType</a></code> | <code>java.lang.String</code> | *No description.* |
|
838
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.minDaysRemaining">minDaysRemaining</a></code> | <code>java.lang.Number</code> | *No description.* |
|
839
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.mustStaple">mustStaple</a></code> | <code>java.lang.Boolean OR com.hashicorp.cdktf.IResolvable</code> | *No description.* |
|
840
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.preCheckDelay">preCheckDelay</a></code> | <code>java.lang.Number</code> | *No description.* |
|
841
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.preferredChain">preferredChain</a></code> | <code>java.lang.String</code> | *No description.* |
|
842
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.recursiveNameservers">recursiveNameservers</a></code> | <code>java.util.List<java.lang.String></code> | *No description.* |
|
843
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.revokeCertificateOnDestroy">revokeCertificateOnDestroy</a></code> | <code>java.lang.Boolean OR com.hashicorp.cdktf.IResolvable</code> | *No description.* |
|
844
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.subjectAlternativeNames">subjectAlternativeNames</a></code> | <code>java.util.List<java.lang.String></code> | *No description.* |
|
845
|
+
|
846
|
+
---
|
847
|
+
|
848
|
+
##### `node`<sup>Required</sup> <a name="node" id="@cdktf/provider-acme.certificate.Certificate.property.node"></a>
|
849
|
+
|
850
|
+
```java
|
851
|
+
public Node getNode();
|
852
|
+
```
|
853
|
+
|
854
|
+
- *Type:* software.constructs.Node
|
855
|
+
|
856
|
+
The tree node.
|
857
|
+
|
858
|
+
---
|
859
|
+
|
860
|
+
##### `cdktfStack`<sup>Required</sup> <a name="cdktfStack" id="@cdktf/provider-acme.certificate.Certificate.property.cdktfStack"></a>
|
861
|
+
|
862
|
+
```java
|
863
|
+
public TerraformStack getCdktfStack();
|
864
|
+
```
|
865
|
+
|
866
|
+
- *Type:* com.hashicorp.cdktf.TerraformStack
|
867
|
+
|
868
|
+
---
|
869
|
+
|
870
|
+
##### `fqn`<sup>Required</sup> <a name="fqn" id="@cdktf/provider-acme.certificate.Certificate.property.fqn"></a>
|
871
|
+
|
872
|
+
```java
|
873
|
+
public java.lang.String getFqn();
|
874
|
+
```
|
875
|
+
|
876
|
+
- *Type:* java.lang.String
|
877
|
+
|
878
|
+
---
|
879
|
+
|
880
|
+
##### `friendlyUniqueId`<sup>Required</sup> <a name="friendlyUniqueId" id="@cdktf/provider-acme.certificate.Certificate.property.friendlyUniqueId"></a>
|
881
|
+
|
882
|
+
```java
|
883
|
+
public java.lang.String getFriendlyUniqueId();
|
884
|
+
```
|
885
|
+
|
886
|
+
- *Type:* java.lang.String
|
887
|
+
|
888
|
+
---
|
889
|
+
|
890
|
+
##### `terraformMetaArguments`<sup>Required</sup> <a name="terraformMetaArguments" id="@cdktf/provider-acme.certificate.Certificate.property.terraformMetaArguments"></a>
|
891
|
+
|
892
|
+
```java
|
893
|
+
public java.util.Map<java.lang.String, java.lang.Object> getTerraformMetaArguments();
|
894
|
+
```
|
895
|
+
|
896
|
+
- *Type:* java.util.Map<java.lang.String, java.lang.Object>
|
897
|
+
|
898
|
+
---
|
899
|
+
|
900
|
+
##### `terraformResourceType`<sup>Required</sup> <a name="terraformResourceType" id="@cdktf/provider-acme.certificate.Certificate.property.terraformResourceType"></a>
|
901
|
+
|
902
|
+
```java
|
903
|
+
public java.lang.String getTerraformResourceType();
|
904
|
+
```
|
905
|
+
|
906
|
+
- *Type:* java.lang.String
|
907
|
+
|
908
|
+
---
|
909
|
+
|
910
|
+
##### `terraformGeneratorMetadata`<sup>Optional</sup> <a name="terraformGeneratorMetadata" id="@cdktf/provider-acme.certificate.Certificate.property.terraformGeneratorMetadata"></a>
|
911
|
+
|
912
|
+
```java
|
913
|
+
public TerraformProviderGeneratorMetadata getTerraformGeneratorMetadata();
|
914
|
+
```
|
915
|
+
|
916
|
+
- *Type:* com.hashicorp.cdktf.TerraformProviderGeneratorMetadata
|
917
|
+
|
918
|
+
---
|
919
|
+
|
920
|
+
##### `connection`<sup>Optional</sup> <a name="connection" id="@cdktf/provider-acme.certificate.Certificate.property.connection"></a>
|
921
|
+
|
922
|
+
```java
|
923
|
+
public java.lang.Object getConnection();
|
924
|
+
```
|
925
|
+
|
926
|
+
- *Type:* com.hashicorp.cdktf.SSHProvisionerConnection OR com.hashicorp.cdktf.WinrmProvisionerConnection
|
927
|
+
|
928
|
+
---
|
929
|
+
|
930
|
+
##### `count`<sup>Optional</sup> <a name="count" id="@cdktf/provider-acme.certificate.Certificate.property.count"></a>
|
931
|
+
|
932
|
+
```java
|
933
|
+
public java.lang.Object getCount();
|
934
|
+
```
|
935
|
+
|
936
|
+
- *Type:* java.lang.Number OR com.hashicorp.cdktf.TerraformCount
|
937
|
+
|
938
|
+
---
|
939
|
+
|
940
|
+
##### `dependsOn`<sup>Optional</sup> <a name="dependsOn" id="@cdktf/provider-acme.certificate.Certificate.property.dependsOn"></a>
|
941
|
+
|
942
|
+
```java
|
943
|
+
public java.util.List<java.lang.String> getDependsOn();
|
944
|
+
```
|
945
|
+
|
946
|
+
- *Type:* java.util.List<java.lang.String>
|
947
|
+
|
948
|
+
---
|
949
|
+
|
950
|
+
##### `forEach`<sup>Optional</sup> <a name="forEach" id="@cdktf/provider-acme.certificate.Certificate.property.forEach"></a>
|
951
|
+
|
952
|
+
```java
|
953
|
+
public ITerraformIterator getForEach();
|
954
|
+
```
|
955
|
+
|
956
|
+
- *Type:* com.hashicorp.cdktf.ITerraformIterator
|
957
|
+
|
958
|
+
---
|
959
|
+
|
960
|
+
##### `lifecycle`<sup>Optional</sup> <a name="lifecycle" id="@cdktf/provider-acme.certificate.Certificate.property.lifecycle"></a>
|
961
|
+
|
962
|
+
```java
|
963
|
+
public TerraformResourceLifecycle getLifecycle();
|
964
|
+
```
|
965
|
+
|
966
|
+
- *Type:* com.hashicorp.cdktf.TerraformResourceLifecycle
|
967
|
+
|
968
|
+
---
|
969
|
+
|
970
|
+
##### `provider`<sup>Optional</sup> <a name="provider" id="@cdktf/provider-acme.certificate.Certificate.property.provider"></a>
|
971
|
+
|
972
|
+
```java
|
973
|
+
public TerraformProvider getProvider();
|
974
|
+
```
|
975
|
+
|
976
|
+
- *Type:* com.hashicorp.cdktf.TerraformProvider
|
977
|
+
|
978
|
+
---
|
979
|
+
|
980
|
+
##### `provisioners`<sup>Optional</sup> <a name="provisioners" id="@cdktf/provider-acme.certificate.Certificate.property.provisioners"></a>
|
981
|
+
|
982
|
+
```java
|
983
|
+
public java.lang.Object getProvisioners();
|
984
|
+
```
|
985
|
+
|
986
|
+
- *Type:* java.util.List<com.hashicorp.cdktf.FileProvisioner OR com.hashicorp.cdktf.LocalExecProvisioner OR com.hashicorp.cdktf.RemoteExecProvisioner>
|
987
|
+
|
988
|
+
---
|
989
|
+
|
990
|
+
##### `certificateDomain`<sup>Required</sup> <a name="certificateDomain" id="@cdktf/provider-acme.certificate.Certificate.property.certificateDomain"></a>
|
991
|
+
|
992
|
+
```java
|
993
|
+
public java.lang.String getCertificateDomain();
|
994
|
+
```
|
995
|
+
|
996
|
+
- *Type:* java.lang.String
|
997
|
+
|
998
|
+
---
|
999
|
+
|
1000
|
+
##### `certificateNotAfter`<sup>Required</sup> <a name="certificateNotAfter" id="@cdktf/provider-acme.certificate.Certificate.property.certificateNotAfter"></a>
|
1001
|
+
|
1002
|
+
```java
|
1003
|
+
public java.lang.String getCertificateNotAfter();
|
1004
|
+
```
|
1005
|
+
|
1006
|
+
- *Type:* java.lang.String
|
1007
|
+
|
1008
|
+
---
|
1009
|
+
|
1010
|
+
##### `certificateP12`<sup>Required</sup> <a name="certificateP12" id="@cdktf/provider-acme.certificate.Certificate.property.certificateP12"></a>
|
1011
|
+
|
1012
|
+
```java
|
1013
|
+
public java.lang.String getCertificateP12();
|
1014
|
+
```
|
1015
|
+
|
1016
|
+
- *Type:* java.lang.String
|
1017
|
+
|
1018
|
+
---
|
1019
|
+
|
1020
|
+
##### `certificatePem`<sup>Required</sup> <a name="certificatePem" id="@cdktf/provider-acme.certificate.Certificate.property.certificatePem"></a>
|
1021
|
+
|
1022
|
+
```java
|
1023
|
+
public java.lang.String getCertificatePem();
|
1024
|
+
```
|
1025
|
+
|
1026
|
+
- *Type:* java.lang.String
|
1027
|
+
|
1028
|
+
---
|
1029
|
+
|
1030
|
+
##### `certificateUrl`<sup>Required</sup> <a name="certificateUrl" id="@cdktf/provider-acme.certificate.Certificate.property.certificateUrl"></a>
|
1031
|
+
|
1032
|
+
```java
|
1033
|
+
public java.lang.String getCertificateUrl();
|
1034
|
+
```
|
1035
|
+
|
1036
|
+
- *Type:* java.lang.String
|
1037
|
+
|
1038
|
+
---
|
1039
|
+
|
1040
|
+
##### `dnsChallenge`<sup>Required</sup> <a name="dnsChallenge" id="@cdktf/provider-acme.certificate.Certificate.property.dnsChallenge"></a>
|
1041
|
+
|
1042
|
+
```java
|
1043
|
+
public CertificateDnsChallengeList getDnsChallenge();
|
1044
|
+
```
|
1045
|
+
|
1046
|
+
- *Type:* <a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeList">CertificateDnsChallengeList</a>
|
1047
|
+
|
1048
|
+
---
|
1049
|
+
|
1050
|
+
##### `httpChallenge`<sup>Required</sup> <a name="httpChallenge" id="@cdktf/provider-acme.certificate.Certificate.property.httpChallenge"></a>
|
1051
|
+
|
1052
|
+
```java
|
1053
|
+
public CertificateHttpChallengeOutputReference getHttpChallenge();
|
1054
|
+
```
|
1055
|
+
|
1056
|
+
- *Type:* <a href="#@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference">CertificateHttpChallengeOutputReference</a>
|
1057
|
+
|
1058
|
+
---
|
1059
|
+
|
1060
|
+
##### `httpMemcachedChallenge`<sup>Required</sup> <a name="httpMemcachedChallenge" id="@cdktf/provider-acme.certificate.Certificate.property.httpMemcachedChallenge"></a>
|
1061
|
+
|
1062
|
+
```java
|
1063
|
+
public CertificateHttpMemcachedChallengeOutputReference getHttpMemcachedChallenge();
|
1064
|
+
```
|
1065
|
+
|
1066
|
+
- *Type:* <a href="#@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference">CertificateHttpMemcachedChallengeOutputReference</a>
|
1067
|
+
|
1068
|
+
---
|
1069
|
+
|
1070
|
+
##### `httpWebrootChallenge`<sup>Required</sup> <a name="httpWebrootChallenge" id="@cdktf/provider-acme.certificate.Certificate.property.httpWebrootChallenge"></a>
|
1071
|
+
|
1072
|
+
```java
|
1073
|
+
public CertificateHttpWebrootChallengeOutputReference getHttpWebrootChallenge();
|
1074
|
+
```
|
1075
|
+
|
1076
|
+
- *Type:* <a href="#@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference">CertificateHttpWebrootChallengeOutputReference</a>
|
1077
|
+
|
1078
|
+
---
|
1079
|
+
|
1080
|
+
##### `issuerPem`<sup>Required</sup> <a name="issuerPem" id="@cdktf/provider-acme.certificate.Certificate.property.issuerPem"></a>
|
1081
|
+
|
1082
|
+
```java
|
1083
|
+
public java.lang.String getIssuerPem();
|
1084
|
+
```
|
1085
|
+
|
1086
|
+
- *Type:* java.lang.String
|
1087
|
+
|
1088
|
+
---
|
1089
|
+
|
1090
|
+
##### `privateKeyPem`<sup>Required</sup> <a name="privateKeyPem" id="@cdktf/provider-acme.certificate.Certificate.property.privateKeyPem"></a>
|
1091
|
+
|
1092
|
+
```java
|
1093
|
+
public java.lang.String getPrivateKeyPem();
|
1094
|
+
```
|
1095
|
+
|
1096
|
+
- *Type:* java.lang.String
|
1097
|
+
|
1098
|
+
---
|
1099
|
+
|
1100
|
+
##### `tlsChallenge`<sup>Required</sup> <a name="tlsChallenge" id="@cdktf/provider-acme.certificate.Certificate.property.tlsChallenge"></a>
|
1101
|
+
|
1102
|
+
```java
|
1103
|
+
public CertificateTlsChallengeOutputReference getTlsChallenge();
|
1104
|
+
```
|
1105
|
+
|
1106
|
+
- *Type:* <a href="#@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference">CertificateTlsChallengeOutputReference</a>
|
1107
|
+
|
1108
|
+
---
|
1109
|
+
|
1110
|
+
##### `accountKeyPemInput`<sup>Optional</sup> <a name="accountKeyPemInput" id="@cdktf/provider-acme.certificate.Certificate.property.accountKeyPemInput"></a>
|
1111
|
+
|
1112
|
+
```java
|
1113
|
+
public java.lang.String getAccountKeyPemInput();
|
1114
|
+
```
|
1115
|
+
|
1116
|
+
- *Type:* java.lang.String
|
1117
|
+
|
1118
|
+
---
|
1119
|
+
|
1120
|
+
##### `certificateP12PasswordInput`<sup>Optional</sup> <a name="certificateP12PasswordInput" id="@cdktf/provider-acme.certificate.Certificate.property.certificateP12PasswordInput"></a>
|
1121
|
+
|
1122
|
+
```java
|
1123
|
+
public java.lang.String getCertificateP12PasswordInput();
|
1124
|
+
```
|
1125
|
+
|
1126
|
+
- *Type:* java.lang.String
|
1127
|
+
|
1128
|
+
---
|
1129
|
+
|
1130
|
+
##### `certificateRequestPemInput`<sup>Optional</sup> <a name="certificateRequestPemInput" id="@cdktf/provider-acme.certificate.Certificate.property.certificateRequestPemInput"></a>
|
1131
|
+
|
1132
|
+
```java
|
1133
|
+
public java.lang.String getCertificateRequestPemInput();
|
1134
|
+
```
|
1135
|
+
|
1136
|
+
- *Type:* java.lang.String
|
1137
|
+
|
1138
|
+
---
|
1139
|
+
|
1140
|
+
##### `commonNameInput`<sup>Optional</sup> <a name="commonNameInput" id="@cdktf/provider-acme.certificate.Certificate.property.commonNameInput"></a>
|
1141
|
+
|
1142
|
+
```java
|
1143
|
+
public java.lang.String getCommonNameInput();
|
1144
|
+
```
|
1145
|
+
|
1146
|
+
- *Type:* java.lang.String
|
1147
|
+
|
1148
|
+
---
|
1149
|
+
|
1150
|
+
##### `disableCompletePropagationInput`<sup>Optional</sup> <a name="disableCompletePropagationInput" id="@cdktf/provider-acme.certificate.Certificate.property.disableCompletePropagationInput"></a>
|
1151
|
+
|
1152
|
+
```java
|
1153
|
+
public java.lang.Object getDisableCompletePropagationInput();
|
1154
|
+
```
|
1155
|
+
|
1156
|
+
- *Type:* java.lang.Boolean OR com.hashicorp.cdktf.IResolvable
|
1157
|
+
|
1158
|
+
---
|
1159
|
+
|
1160
|
+
##### `dnsChallengeInput`<sup>Optional</sup> <a name="dnsChallengeInput" id="@cdktf/provider-acme.certificate.Certificate.property.dnsChallengeInput"></a>
|
1161
|
+
|
1162
|
+
```java
|
1163
|
+
public java.lang.Object getDnsChallengeInput();
|
1164
|
+
```
|
1165
|
+
|
1166
|
+
- *Type:* com.hashicorp.cdktf.IResolvable OR java.util.List<<a href="#@cdktf/provider-acme.certificate.CertificateDnsChallenge">CertificateDnsChallenge</a>>
|
1167
|
+
|
1168
|
+
---
|
1169
|
+
|
1170
|
+
##### `httpChallengeInput`<sup>Optional</sup> <a name="httpChallengeInput" id="@cdktf/provider-acme.certificate.Certificate.property.httpChallengeInput"></a>
|
1171
|
+
|
1172
|
+
```java
|
1173
|
+
public CertificateHttpChallenge getHttpChallengeInput();
|
1174
|
+
```
|
1175
|
+
|
1176
|
+
- *Type:* <a href="#@cdktf/provider-acme.certificate.CertificateHttpChallenge">CertificateHttpChallenge</a>
|
1177
|
+
|
1178
|
+
---
|
1179
|
+
|
1180
|
+
##### `httpMemcachedChallengeInput`<sup>Optional</sup> <a name="httpMemcachedChallengeInput" id="@cdktf/provider-acme.certificate.Certificate.property.httpMemcachedChallengeInput"></a>
|
1181
|
+
|
1182
|
+
```java
|
1183
|
+
public CertificateHttpMemcachedChallenge getHttpMemcachedChallengeInput();
|
1184
|
+
```
|
1185
|
+
|
1186
|
+
- *Type:* <a href="#@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallenge">CertificateHttpMemcachedChallenge</a>
|
1187
|
+
|
1188
|
+
---
|
1189
|
+
|
1190
|
+
##### `httpWebrootChallengeInput`<sup>Optional</sup> <a name="httpWebrootChallengeInput" id="@cdktf/provider-acme.certificate.Certificate.property.httpWebrootChallengeInput"></a>
|
1191
|
+
|
1192
|
+
```java
|
1193
|
+
public CertificateHttpWebrootChallenge getHttpWebrootChallengeInput();
|
1194
|
+
```
|
1195
|
+
|
1196
|
+
- *Type:* <a href="#@cdktf/provider-acme.certificate.CertificateHttpWebrootChallenge">CertificateHttpWebrootChallenge</a>
|
1197
|
+
|
1198
|
+
---
|
1199
|
+
|
1200
|
+
##### `idInput`<sup>Optional</sup> <a name="idInput" id="@cdktf/provider-acme.certificate.Certificate.property.idInput"></a>
|
1201
|
+
|
1202
|
+
```java
|
1203
|
+
public java.lang.String getIdInput();
|
1204
|
+
```
|
1205
|
+
|
1206
|
+
- *Type:* java.lang.String
|
1207
|
+
|
1208
|
+
---
|
1209
|
+
|
1210
|
+
##### `keyTypeInput`<sup>Optional</sup> <a name="keyTypeInput" id="@cdktf/provider-acme.certificate.Certificate.property.keyTypeInput"></a>
|
1211
|
+
|
1212
|
+
```java
|
1213
|
+
public java.lang.String getKeyTypeInput();
|
1214
|
+
```
|
1215
|
+
|
1216
|
+
- *Type:* java.lang.String
|
1217
|
+
|
1218
|
+
---
|
1219
|
+
|
1220
|
+
##### `minDaysRemainingInput`<sup>Optional</sup> <a name="minDaysRemainingInput" id="@cdktf/provider-acme.certificate.Certificate.property.minDaysRemainingInput"></a>
|
1221
|
+
|
1222
|
+
```java
|
1223
|
+
public java.lang.Number getMinDaysRemainingInput();
|
1224
|
+
```
|
1225
|
+
|
1226
|
+
- *Type:* java.lang.Number
|
1227
|
+
|
1228
|
+
---
|
1229
|
+
|
1230
|
+
##### `mustStapleInput`<sup>Optional</sup> <a name="mustStapleInput" id="@cdktf/provider-acme.certificate.Certificate.property.mustStapleInput"></a>
|
1231
|
+
|
1232
|
+
```java
|
1233
|
+
public java.lang.Object getMustStapleInput();
|
1234
|
+
```
|
1235
|
+
|
1236
|
+
- *Type:* java.lang.Boolean OR com.hashicorp.cdktf.IResolvable
|
1237
|
+
|
1238
|
+
---
|
1239
|
+
|
1240
|
+
##### `preCheckDelayInput`<sup>Optional</sup> <a name="preCheckDelayInput" id="@cdktf/provider-acme.certificate.Certificate.property.preCheckDelayInput"></a>
|
1241
|
+
|
1242
|
+
```java
|
1243
|
+
public java.lang.Number getPreCheckDelayInput();
|
1244
|
+
```
|
1245
|
+
|
1246
|
+
- *Type:* java.lang.Number
|
1247
|
+
|
1248
|
+
---
|
1249
|
+
|
1250
|
+
##### `preferredChainInput`<sup>Optional</sup> <a name="preferredChainInput" id="@cdktf/provider-acme.certificate.Certificate.property.preferredChainInput"></a>
|
1251
|
+
|
1252
|
+
```java
|
1253
|
+
public java.lang.String getPreferredChainInput();
|
1254
|
+
```
|
1255
|
+
|
1256
|
+
- *Type:* java.lang.String
|
1257
|
+
|
1258
|
+
---
|
1259
|
+
|
1260
|
+
##### `recursiveNameserversInput`<sup>Optional</sup> <a name="recursiveNameserversInput" id="@cdktf/provider-acme.certificate.Certificate.property.recursiveNameserversInput"></a>
|
1261
|
+
|
1262
|
+
```java
|
1263
|
+
public java.util.List<java.lang.String> getRecursiveNameserversInput();
|
1264
|
+
```
|
1265
|
+
|
1266
|
+
- *Type:* java.util.List<java.lang.String>
|
1267
|
+
|
1268
|
+
---
|
1269
|
+
|
1270
|
+
##### `revokeCertificateOnDestroyInput`<sup>Optional</sup> <a name="revokeCertificateOnDestroyInput" id="@cdktf/provider-acme.certificate.Certificate.property.revokeCertificateOnDestroyInput"></a>
|
1271
|
+
|
1272
|
+
```java
|
1273
|
+
public java.lang.Object getRevokeCertificateOnDestroyInput();
|
1274
|
+
```
|
1275
|
+
|
1276
|
+
- *Type:* java.lang.Boolean OR com.hashicorp.cdktf.IResolvable
|
1277
|
+
|
1278
|
+
---
|
1279
|
+
|
1280
|
+
##### `subjectAlternativeNamesInput`<sup>Optional</sup> <a name="subjectAlternativeNamesInput" id="@cdktf/provider-acme.certificate.Certificate.property.subjectAlternativeNamesInput"></a>
|
1281
|
+
|
1282
|
+
```java
|
1283
|
+
public java.util.List<java.lang.String> getSubjectAlternativeNamesInput();
|
1284
|
+
```
|
1285
|
+
|
1286
|
+
- *Type:* java.util.List<java.lang.String>
|
1287
|
+
|
1288
|
+
---
|
1289
|
+
|
1290
|
+
##### `tlsChallengeInput`<sup>Optional</sup> <a name="tlsChallengeInput" id="@cdktf/provider-acme.certificate.Certificate.property.tlsChallengeInput"></a>
|
1291
|
+
|
1292
|
+
```java
|
1293
|
+
public CertificateTlsChallenge getTlsChallengeInput();
|
1294
|
+
```
|
1295
|
+
|
1296
|
+
- *Type:* <a href="#@cdktf/provider-acme.certificate.CertificateTlsChallenge">CertificateTlsChallenge</a>
|
1297
|
+
|
1298
|
+
---
|
1299
|
+
|
1300
|
+
##### `accountKeyPem`<sup>Required</sup> <a name="accountKeyPem" id="@cdktf/provider-acme.certificate.Certificate.property.accountKeyPem"></a>
|
1301
|
+
|
1302
|
+
```java
|
1303
|
+
public java.lang.String getAccountKeyPem();
|
1304
|
+
```
|
1305
|
+
|
1306
|
+
- *Type:* java.lang.String
|
1307
|
+
|
1308
|
+
---
|
1309
|
+
|
1310
|
+
##### `certificateP12Password`<sup>Required</sup> <a name="certificateP12Password" id="@cdktf/provider-acme.certificate.Certificate.property.certificateP12Password"></a>
|
1311
|
+
|
1312
|
+
```java
|
1313
|
+
public java.lang.String getCertificateP12Password();
|
1314
|
+
```
|
1315
|
+
|
1316
|
+
- *Type:* java.lang.String
|
1317
|
+
|
1318
|
+
---
|
1319
|
+
|
1320
|
+
##### `certificateRequestPem`<sup>Required</sup> <a name="certificateRequestPem" id="@cdktf/provider-acme.certificate.Certificate.property.certificateRequestPem"></a>
|
1321
|
+
|
1322
|
+
```java
|
1323
|
+
public java.lang.String getCertificateRequestPem();
|
1324
|
+
```
|
1325
|
+
|
1326
|
+
- *Type:* java.lang.String
|
1327
|
+
|
1328
|
+
---
|
1329
|
+
|
1330
|
+
##### `commonName`<sup>Required</sup> <a name="commonName" id="@cdktf/provider-acme.certificate.Certificate.property.commonName"></a>
|
1331
|
+
|
1332
|
+
```java
|
1333
|
+
public java.lang.String getCommonName();
|
1334
|
+
```
|
1335
|
+
|
1336
|
+
- *Type:* java.lang.String
|
1337
|
+
|
1338
|
+
---
|
1339
|
+
|
1340
|
+
##### `disableCompletePropagation`<sup>Required</sup> <a name="disableCompletePropagation" id="@cdktf/provider-acme.certificate.Certificate.property.disableCompletePropagation"></a>
|
1341
|
+
|
1342
|
+
```java
|
1343
|
+
public java.lang.Object getDisableCompletePropagation();
|
1344
|
+
```
|
1345
|
+
|
1346
|
+
- *Type:* java.lang.Boolean OR com.hashicorp.cdktf.IResolvable
|
1347
|
+
|
1348
|
+
---
|
1349
|
+
|
1350
|
+
##### `id`<sup>Required</sup> <a name="id" id="@cdktf/provider-acme.certificate.Certificate.property.id"></a>
|
1351
|
+
|
1352
|
+
```java
|
1353
|
+
public java.lang.String getId();
|
1354
|
+
```
|
1355
|
+
|
1356
|
+
- *Type:* java.lang.String
|
1357
|
+
|
1358
|
+
---
|
1359
|
+
|
1360
|
+
##### `keyType`<sup>Required</sup> <a name="keyType" id="@cdktf/provider-acme.certificate.Certificate.property.keyType"></a>
|
1361
|
+
|
1362
|
+
```java
|
1363
|
+
public java.lang.String getKeyType();
|
1364
|
+
```
|
1365
|
+
|
1366
|
+
- *Type:* java.lang.String
|
1367
|
+
|
1368
|
+
---
|
1369
|
+
|
1370
|
+
##### `minDaysRemaining`<sup>Required</sup> <a name="minDaysRemaining" id="@cdktf/provider-acme.certificate.Certificate.property.minDaysRemaining"></a>
|
1371
|
+
|
1372
|
+
```java
|
1373
|
+
public java.lang.Number getMinDaysRemaining();
|
1374
|
+
```
|
1375
|
+
|
1376
|
+
- *Type:* java.lang.Number
|
1377
|
+
|
1378
|
+
---
|
1379
|
+
|
1380
|
+
##### `mustStaple`<sup>Required</sup> <a name="mustStaple" id="@cdktf/provider-acme.certificate.Certificate.property.mustStaple"></a>
|
1381
|
+
|
1382
|
+
```java
|
1383
|
+
public java.lang.Object getMustStaple();
|
1384
|
+
```
|
1385
|
+
|
1386
|
+
- *Type:* java.lang.Boolean OR com.hashicorp.cdktf.IResolvable
|
1387
|
+
|
1388
|
+
---
|
1389
|
+
|
1390
|
+
##### `preCheckDelay`<sup>Required</sup> <a name="preCheckDelay" id="@cdktf/provider-acme.certificate.Certificate.property.preCheckDelay"></a>
|
1391
|
+
|
1392
|
+
```java
|
1393
|
+
public java.lang.Number getPreCheckDelay();
|
1394
|
+
```
|
1395
|
+
|
1396
|
+
- *Type:* java.lang.Number
|
1397
|
+
|
1398
|
+
---
|
1399
|
+
|
1400
|
+
##### `preferredChain`<sup>Required</sup> <a name="preferredChain" id="@cdktf/provider-acme.certificate.Certificate.property.preferredChain"></a>
|
1401
|
+
|
1402
|
+
```java
|
1403
|
+
public java.lang.String getPreferredChain();
|
1404
|
+
```
|
1405
|
+
|
1406
|
+
- *Type:* java.lang.String
|
1407
|
+
|
1408
|
+
---
|
1409
|
+
|
1410
|
+
##### `recursiveNameservers`<sup>Required</sup> <a name="recursiveNameservers" id="@cdktf/provider-acme.certificate.Certificate.property.recursiveNameservers"></a>
|
1411
|
+
|
1412
|
+
```java
|
1413
|
+
public java.util.List<java.lang.String> getRecursiveNameservers();
|
1414
|
+
```
|
1415
|
+
|
1416
|
+
- *Type:* java.util.List<java.lang.String>
|
1417
|
+
|
1418
|
+
---
|
1419
|
+
|
1420
|
+
##### `revokeCertificateOnDestroy`<sup>Required</sup> <a name="revokeCertificateOnDestroy" id="@cdktf/provider-acme.certificate.Certificate.property.revokeCertificateOnDestroy"></a>
|
1421
|
+
|
1422
|
+
```java
|
1423
|
+
public java.lang.Object getRevokeCertificateOnDestroy();
|
1424
|
+
```
|
1425
|
+
|
1426
|
+
- *Type:* java.lang.Boolean OR com.hashicorp.cdktf.IResolvable
|
1427
|
+
|
1428
|
+
---
|
1429
|
+
|
1430
|
+
##### `subjectAlternativeNames`<sup>Required</sup> <a name="subjectAlternativeNames" id="@cdktf/provider-acme.certificate.Certificate.property.subjectAlternativeNames"></a>
|
1431
|
+
|
1432
|
+
```java
|
1433
|
+
public java.util.List<java.lang.String> getSubjectAlternativeNames();
|
1434
|
+
```
|
1435
|
+
|
1436
|
+
- *Type:* java.util.List<java.lang.String>
|
1437
|
+
|
1438
|
+
---
|
1439
|
+
|
1440
|
+
#### Constants <a name="Constants" id="Constants"></a>
|
1441
|
+
|
1442
|
+
| **Name** | **Type** | **Description** |
|
1443
|
+
| --- | --- | --- |
|
1444
|
+
| <code><a href="#@cdktf/provider-acme.certificate.Certificate.property.tfResourceType">tfResourceType</a></code> | <code>java.lang.String</code> | *No description.* |
|
1445
|
+
|
1446
|
+
---
|
1447
|
+
|
1448
|
+
##### `tfResourceType`<sup>Required</sup> <a name="tfResourceType" id="@cdktf/provider-acme.certificate.Certificate.property.tfResourceType"></a>
|
1449
|
+
|
1450
|
+
```java
|
1451
|
+
public java.lang.String getTfResourceType();
|
1452
|
+
```
|
1453
|
+
|
1454
|
+
- *Type:* java.lang.String
|
1455
|
+
|
1456
|
+
---
|
1457
|
+
|
1458
|
+
## Structs <a name="Structs" id="Structs"></a>
|
1459
|
+
|
1460
|
+
### CertificateConfig <a name="CertificateConfig" id="@cdktf/provider-acme.certificate.CertificateConfig"></a>
|
1461
|
+
|
1462
|
+
#### Initializer <a name="Initializer" id="@cdktf/provider-acme.certificate.CertificateConfig.Initializer"></a>
|
1463
|
+
|
1464
|
+
```java
|
1465
|
+
import com.hashicorp.cdktf.providers.acme.certificate.CertificateConfig;
|
1466
|
+
|
1467
|
+
CertificateConfig.builder()
|
1468
|
+
// .connection(SSHProvisionerConnection)
|
1469
|
+
// .connection(WinrmProvisionerConnection)
|
1470
|
+
// .count(java.lang.Number)
|
1471
|
+
// .count(TerraformCount)
|
1472
|
+
// .dependsOn(java.util.List<ITerraformDependable>)
|
1473
|
+
// .forEach(ITerraformIterator)
|
1474
|
+
// .lifecycle(TerraformResourceLifecycle)
|
1475
|
+
// .provider(TerraformProvider)
|
1476
|
+
// .provisioners(java.util.List<FileProvisioner)
|
1477
|
+
// .provisioners(LocalExecProvisioner)
|
1478
|
+
// .provisioners(RemoteExecProvisioner>)
|
1479
|
+
.accountKeyPem(java.lang.String)
|
1480
|
+
// .certificateP12Password(java.lang.String)
|
1481
|
+
// .certificateRequestPem(java.lang.String)
|
1482
|
+
// .commonName(java.lang.String)
|
1483
|
+
// .disableCompletePropagation(java.lang.Boolean)
|
1484
|
+
// .disableCompletePropagation(IResolvable)
|
1485
|
+
// .dnsChallenge(IResolvable)
|
1486
|
+
// .dnsChallenge(java.util.List<CertificateDnsChallenge>)
|
1487
|
+
// .httpChallenge(CertificateHttpChallenge)
|
1488
|
+
// .httpMemcachedChallenge(CertificateHttpMemcachedChallenge)
|
1489
|
+
// .httpWebrootChallenge(CertificateHttpWebrootChallenge)
|
1490
|
+
// .id(java.lang.String)
|
1491
|
+
// .keyType(java.lang.String)
|
1492
|
+
// .minDaysRemaining(java.lang.Number)
|
1493
|
+
// .mustStaple(java.lang.Boolean)
|
1494
|
+
// .mustStaple(IResolvable)
|
1495
|
+
// .preCheckDelay(java.lang.Number)
|
1496
|
+
// .preferredChain(java.lang.String)
|
1497
|
+
// .recursiveNameservers(java.util.List<java.lang.String>)
|
1498
|
+
// .revokeCertificateOnDestroy(java.lang.Boolean)
|
1499
|
+
// .revokeCertificateOnDestroy(IResolvable)
|
1500
|
+
// .subjectAlternativeNames(java.util.List<java.lang.String>)
|
1501
|
+
// .tlsChallenge(CertificateTlsChallenge)
|
1502
|
+
.build();
|
1503
|
+
```
|
1504
|
+
|
1505
|
+
#### Properties <a name="Properties" id="Properties"></a>
|
1506
|
+
|
1507
|
+
| **Name** | **Type** | **Description** |
|
1508
|
+
| --- | --- | --- |
|
1509
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateConfig.property.connection">connection</a></code> | <code>com.hashicorp.cdktf.SSHProvisionerConnection OR com.hashicorp.cdktf.WinrmProvisionerConnection</code> | *No description.* |
|
1510
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateConfig.property.count">count</a></code> | <code>java.lang.Number OR com.hashicorp.cdktf.TerraformCount</code> | *No description.* |
|
1511
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateConfig.property.dependsOn">dependsOn</a></code> | <code>java.util.List<com.hashicorp.cdktf.ITerraformDependable></code> | *No description.* |
|
1512
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateConfig.property.forEach">forEach</a></code> | <code>com.hashicorp.cdktf.ITerraformIterator</code> | *No description.* |
|
1513
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateConfig.property.lifecycle">lifecycle</a></code> | <code>com.hashicorp.cdktf.TerraformResourceLifecycle</code> | *No description.* |
|
1514
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateConfig.property.provider">provider</a></code> | <code>com.hashicorp.cdktf.TerraformProvider</code> | *No description.* |
|
1515
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateConfig.property.provisioners">provisioners</a></code> | <code>java.util.List<com.hashicorp.cdktf.FileProvisioner OR com.hashicorp.cdktf.LocalExecProvisioner OR com.hashicorp.cdktf.RemoteExecProvisioner></code> | *No description.* |
|
1516
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateConfig.property.accountKeyPem">accountKeyPem</a></code> | <code>java.lang.String</code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#account_key_pem Certificate#account_key_pem}. |
|
1517
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateConfig.property.certificateP12Password">certificateP12Password</a></code> | <code>java.lang.String</code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#certificate_p12_password Certificate#certificate_p12_password}. |
|
1518
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateConfig.property.certificateRequestPem">certificateRequestPem</a></code> | <code>java.lang.String</code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#certificate_request_pem Certificate#certificate_request_pem}. |
|
1519
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateConfig.property.commonName">commonName</a></code> | <code>java.lang.String</code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#common_name Certificate#common_name}. |
|
1520
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateConfig.property.disableCompletePropagation">disableCompletePropagation</a></code> | <code>java.lang.Boolean OR com.hashicorp.cdktf.IResolvable</code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#disable_complete_propagation Certificate#disable_complete_propagation}. |
|
1521
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateConfig.property.dnsChallenge">dnsChallenge</a></code> | <code>com.hashicorp.cdktf.IResolvable OR java.util.List<<a href="#@cdktf/provider-acme.certificate.CertificateDnsChallenge">CertificateDnsChallenge</a>></code> | dns_challenge block. |
|
1522
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateConfig.property.httpChallenge">httpChallenge</a></code> | <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpChallenge">CertificateHttpChallenge</a></code> | http_challenge block. |
|
1523
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateConfig.property.httpMemcachedChallenge">httpMemcachedChallenge</a></code> | <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallenge">CertificateHttpMemcachedChallenge</a></code> | http_memcached_challenge block. |
|
1524
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateConfig.property.httpWebrootChallenge">httpWebrootChallenge</a></code> | <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpWebrootChallenge">CertificateHttpWebrootChallenge</a></code> | http_webroot_challenge block. |
|
1525
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateConfig.property.id">id</a></code> | <code>java.lang.String</code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#id Certificate#id}. |
|
1526
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateConfig.property.keyType">keyType</a></code> | <code>java.lang.String</code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#key_type Certificate#key_type}. |
|
1527
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateConfig.property.minDaysRemaining">minDaysRemaining</a></code> | <code>java.lang.Number</code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#min_days_remaining Certificate#min_days_remaining}. |
|
1528
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateConfig.property.mustStaple">mustStaple</a></code> | <code>java.lang.Boolean OR com.hashicorp.cdktf.IResolvable</code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#must_staple Certificate#must_staple}. |
|
1529
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateConfig.property.preCheckDelay">preCheckDelay</a></code> | <code>java.lang.Number</code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#pre_check_delay Certificate#pre_check_delay}. |
|
1530
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateConfig.property.preferredChain">preferredChain</a></code> | <code>java.lang.String</code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#preferred_chain Certificate#preferred_chain}. |
|
1531
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateConfig.property.recursiveNameservers">recursiveNameservers</a></code> | <code>java.util.List<java.lang.String></code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#recursive_nameservers Certificate#recursive_nameservers}. |
|
1532
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateConfig.property.revokeCertificateOnDestroy">revokeCertificateOnDestroy</a></code> | <code>java.lang.Boolean OR com.hashicorp.cdktf.IResolvable</code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#revoke_certificate_on_destroy Certificate#revoke_certificate_on_destroy}. |
|
1533
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateConfig.property.subjectAlternativeNames">subjectAlternativeNames</a></code> | <code>java.util.List<java.lang.String></code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#subject_alternative_names Certificate#subject_alternative_names}. |
|
1534
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateConfig.property.tlsChallenge">tlsChallenge</a></code> | <code><a href="#@cdktf/provider-acme.certificate.CertificateTlsChallenge">CertificateTlsChallenge</a></code> | tls_challenge block. |
|
1535
|
+
|
1536
|
+
---
|
1537
|
+
|
1538
|
+
##### `connection`<sup>Optional</sup> <a name="connection" id="@cdktf/provider-acme.certificate.CertificateConfig.property.connection"></a>
|
1539
|
+
|
1540
|
+
```java
|
1541
|
+
public java.lang.Object getConnection();
|
1542
|
+
```
|
1543
|
+
|
1544
|
+
- *Type:* com.hashicorp.cdktf.SSHProvisionerConnection OR com.hashicorp.cdktf.WinrmProvisionerConnection
|
1545
|
+
|
1546
|
+
---
|
1547
|
+
|
1548
|
+
##### `count`<sup>Optional</sup> <a name="count" id="@cdktf/provider-acme.certificate.CertificateConfig.property.count"></a>
|
1549
|
+
|
1550
|
+
```java
|
1551
|
+
public java.lang.Object getCount();
|
1552
|
+
```
|
1553
|
+
|
1554
|
+
- *Type:* java.lang.Number OR com.hashicorp.cdktf.TerraformCount
|
1555
|
+
|
1556
|
+
---
|
1557
|
+
|
1558
|
+
##### `dependsOn`<sup>Optional</sup> <a name="dependsOn" id="@cdktf/provider-acme.certificate.CertificateConfig.property.dependsOn"></a>
|
1559
|
+
|
1560
|
+
```java
|
1561
|
+
public java.util.List<ITerraformDependable> getDependsOn();
|
1562
|
+
```
|
1563
|
+
|
1564
|
+
- *Type:* java.util.List<com.hashicorp.cdktf.ITerraformDependable>
|
1565
|
+
|
1566
|
+
---
|
1567
|
+
|
1568
|
+
##### `forEach`<sup>Optional</sup> <a name="forEach" id="@cdktf/provider-acme.certificate.CertificateConfig.property.forEach"></a>
|
1569
|
+
|
1570
|
+
```java
|
1571
|
+
public ITerraformIterator getForEach();
|
1572
|
+
```
|
1573
|
+
|
1574
|
+
- *Type:* com.hashicorp.cdktf.ITerraformIterator
|
1575
|
+
|
1576
|
+
---
|
1577
|
+
|
1578
|
+
##### `lifecycle`<sup>Optional</sup> <a name="lifecycle" id="@cdktf/provider-acme.certificate.CertificateConfig.property.lifecycle"></a>
|
1579
|
+
|
1580
|
+
```java
|
1581
|
+
public TerraformResourceLifecycle getLifecycle();
|
1582
|
+
```
|
1583
|
+
|
1584
|
+
- *Type:* com.hashicorp.cdktf.TerraformResourceLifecycle
|
1585
|
+
|
1586
|
+
---
|
1587
|
+
|
1588
|
+
##### `provider`<sup>Optional</sup> <a name="provider" id="@cdktf/provider-acme.certificate.CertificateConfig.property.provider"></a>
|
1589
|
+
|
1590
|
+
```java
|
1591
|
+
public TerraformProvider getProvider();
|
1592
|
+
```
|
1593
|
+
|
1594
|
+
- *Type:* com.hashicorp.cdktf.TerraformProvider
|
1595
|
+
|
1596
|
+
---
|
1597
|
+
|
1598
|
+
##### `provisioners`<sup>Optional</sup> <a name="provisioners" id="@cdktf/provider-acme.certificate.CertificateConfig.property.provisioners"></a>
|
1599
|
+
|
1600
|
+
```java
|
1601
|
+
public java.lang.Object getProvisioners();
|
1602
|
+
```
|
1603
|
+
|
1604
|
+
- *Type:* java.util.List<com.hashicorp.cdktf.FileProvisioner OR com.hashicorp.cdktf.LocalExecProvisioner OR com.hashicorp.cdktf.RemoteExecProvisioner>
|
1605
|
+
|
1606
|
+
---
|
1607
|
+
|
1608
|
+
##### `accountKeyPem`<sup>Required</sup> <a name="accountKeyPem" id="@cdktf/provider-acme.certificate.CertificateConfig.property.accountKeyPem"></a>
|
1609
|
+
|
1610
|
+
```java
|
1611
|
+
public java.lang.String getAccountKeyPem();
|
1612
|
+
```
|
1613
|
+
|
1614
|
+
- *Type:* java.lang.String
|
1615
|
+
|
1616
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#account_key_pem Certificate#account_key_pem}.
|
1617
|
+
|
1618
|
+
---
|
1619
|
+
|
1620
|
+
##### `certificateP12Password`<sup>Optional</sup> <a name="certificateP12Password" id="@cdktf/provider-acme.certificate.CertificateConfig.property.certificateP12Password"></a>
|
1621
|
+
|
1622
|
+
```java
|
1623
|
+
public java.lang.String getCertificateP12Password();
|
1624
|
+
```
|
1625
|
+
|
1626
|
+
- *Type:* java.lang.String
|
1627
|
+
|
1628
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#certificate_p12_password Certificate#certificate_p12_password}.
|
1629
|
+
|
1630
|
+
---
|
1631
|
+
|
1632
|
+
##### `certificateRequestPem`<sup>Optional</sup> <a name="certificateRequestPem" id="@cdktf/provider-acme.certificate.CertificateConfig.property.certificateRequestPem"></a>
|
1633
|
+
|
1634
|
+
```java
|
1635
|
+
public java.lang.String getCertificateRequestPem();
|
1636
|
+
```
|
1637
|
+
|
1638
|
+
- *Type:* java.lang.String
|
1639
|
+
|
1640
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#certificate_request_pem Certificate#certificate_request_pem}.
|
1641
|
+
|
1642
|
+
---
|
1643
|
+
|
1644
|
+
##### `commonName`<sup>Optional</sup> <a name="commonName" id="@cdktf/provider-acme.certificate.CertificateConfig.property.commonName"></a>
|
1645
|
+
|
1646
|
+
```java
|
1647
|
+
public java.lang.String getCommonName();
|
1648
|
+
```
|
1649
|
+
|
1650
|
+
- *Type:* java.lang.String
|
1651
|
+
|
1652
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#common_name Certificate#common_name}.
|
1653
|
+
|
1654
|
+
---
|
1655
|
+
|
1656
|
+
##### `disableCompletePropagation`<sup>Optional</sup> <a name="disableCompletePropagation" id="@cdktf/provider-acme.certificate.CertificateConfig.property.disableCompletePropagation"></a>
|
1657
|
+
|
1658
|
+
```java
|
1659
|
+
public java.lang.Object getDisableCompletePropagation();
|
1660
|
+
```
|
1661
|
+
|
1662
|
+
- *Type:* java.lang.Boolean OR com.hashicorp.cdktf.IResolvable
|
1663
|
+
|
1664
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#disable_complete_propagation Certificate#disable_complete_propagation}.
|
1665
|
+
|
1666
|
+
---
|
1667
|
+
|
1668
|
+
##### `dnsChallenge`<sup>Optional</sup> <a name="dnsChallenge" id="@cdktf/provider-acme.certificate.CertificateConfig.property.dnsChallenge"></a>
|
1669
|
+
|
1670
|
+
```java
|
1671
|
+
public java.lang.Object getDnsChallenge();
|
1672
|
+
```
|
1673
|
+
|
1674
|
+
- *Type:* com.hashicorp.cdktf.IResolvable OR java.util.List<<a href="#@cdktf/provider-acme.certificate.CertificateDnsChallenge">CertificateDnsChallenge</a>>
|
1675
|
+
|
1676
|
+
dns_challenge block.
|
1677
|
+
|
1678
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#dns_challenge Certificate#dns_challenge}
|
1679
|
+
|
1680
|
+
---
|
1681
|
+
|
1682
|
+
##### `httpChallenge`<sup>Optional</sup> <a name="httpChallenge" id="@cdktf/provider-acme.certificate.CertificateConfig.property.httpChallenge"></a>
|
1683
|
+
|
1684
|
+
```java
|
1685
|
+
public CertificateHttpChallenge getHttpChallenge();
|
1686
|
+
```
|
1687
|
+
|
1688
|
+
- *Type:* <a href="#@cdktf/provider-acme.certificate.CertificateHttpChallenge">CertificateHttpChallenge</a>
|
1689
|
+
|
1690
|
+
http_challenge block.
|
1691
|
+
|
1692
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#http_challenge Certificate#http_challenge}
|
1693
|
+
|
1694
|
+
---
|
1695
|
+
|
1696
|
+
##### `httpMemcachedChallenge`<sup>Optional</sup> <a name="httpMemcachedChallenge" id="@cdktf/provider-acme.certificate.CertificateConfig.property.httpMemcachedChallenge"></a>
|
1697
|
+
|
1698
|
+
```java
|
1699
|
+
public CertificateHttpMemcachedChallenge getHttpMemcachedChallenge();
|
1700
|
+
```
|
1701
|
+
|
1702
|
+
- *Type:* <a href="#@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallenge">CertificateHttpMemcachedChallenge</a>
|
1703
|
+
|
1704
|
+
http_memcached_challenge block.
|
1705
|
+
|
1706
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#http_memcached_challenge Certificate#http_memcached_challenge}
|
1707
|
+
|
1708
|
+
---
|
1709
|
+
|
1710
|
+
##### `httpWebrootChallenge`<sup>Optional</sup> <a name="httpWebrootChallenge" id="@cdktf/provider-acme.certificate.CertificateConfig.property.httpWebrootChallenge"></a>
|
1711
|
+
|
1712
|
+
```java
|
1713
|
+
public CertificateHttpWebrootChallenge getHttpWebrootChallenge();
|
1714
|
+
```
|
1715
|
+
|
1716
|
+
- *Type:* <a href="#@cdktf/provider-acme.certificate.CertificateHttpWebrootChallenge">CertificateHttpWebrootChallenge</a>
|
1717
|
+
|
1718
|
+
http_webroot_challenge block.
|
1719
|
+
|
1720
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#http_webroot_challenge Certificate#http_webroot_challenge}
|
1721
|
+
|
1722
|
+
---
|
1723
|
+
|
1724
|
+
##### `id`<sup>Optional</sup> <a name="id" id="@cdktf/provider-acme.certificate.CertificateConfig.property.id"></a>
|
1725
|
+
|
1726
|
+
```java
|
1727
|
+
public java.lang.String getId();
|
1728
|
+
```
|
1729
|
+
|
1730
|
+
- *Type:* java.lang.String
|
1731
|
+
|
1732
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#id Certificate#id}.
|
1733
|
+
|
1734
|
+
Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
|
1735
|
+
If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
|
1736
|
+
|
1737
|
+
---
|
1738
|
+
|
1739
|
+
##### `keyType`<sup>Optional</sup> <a name="keyType" id="@cdktf/provider-acme.certificate.CertificateConfig.property.keyType"></a>
|
1740
|
+
|
1741
|
+
```java
|
1742
|
+
public java.lang.String getKeyType();
|
1743
|
+
```
|
1744
|
+
|
1745
|
+
- *Type:* java.lang.String
|
1746
|
+
|
1747
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#key_type Certificate#key_type}.
|
1748
|
+
|
1749
|
+
---
|
1750
|
+
|
1751
|
+
##### `minDaysRemaining`<sup>Optional</sup> <a name="minDaysRemaining" id="@cdktf/provider-acme.certificate.CertificateConfig.property.minDaysRemaining"></a>
|
1752
|
+
|
1753
|
+
```java
|
1754
|
+
public java.lang.Number getMinDaysRemaining();
|
1755
|
+
```
|
1756
|
+
|
1757
|
+
- *Type:* java.lang.Number
|
1758
|
+
|
1759
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#min_days_remaining Certificate#min_days_remaining}.
|
1760
|
+
|
1761
|
+
---
|
1762
|
+
|
1763
|
+
##### `mustStaple`<sup>Optional</sup> <a name="mustStaple" id="@cdktf/provider-acme.certificate.CertificateConfig.property.mustStaple"></a>
|
1764
|
+
|
1765
|
+
```java
|
1766
|
+
public java.lang.Object getMustStaple();
|
1767
|
+
```
|
1768
|
+
|
1769
|
+
- *Type:* java.lang.Boolean OR com.hashicorp.cdktf.IResolvable
|
1770
|
+
|
1771
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#must_staple Certificate#must_staple}.
|
1772
|
+
|
1773
|
+
---
|
1774
|
+
|
1775
|
+
##### `preCheckDelay`<sup>Optional</sup> <a name="preCheckDelay" id="@cdktf/provider-acme.certificate.CertificateConfig.property.preCheckDelay"></a>
|
1776
|
+
|
1777
|
+
```java
|
1778
|
+
public java.lang.Number getPreCheckDelay();
|
1779
|
+
```
|
1780
|
+
|
1781
|
+
- *Type:* java.lang.Number
|
1782
|
+
|
1783
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#pre_check_delay Certificate#pre_check_delay}.
|
1784
|
+
|
1785
|
+
---
|
1786
|
+
|
1787
|
+
##### `preferredChain`<sup>Optional</sup> <a name="preferredChain" id="@cdktf/provider-acme.certificate.CertificateConfig.property.preferredChain"></a>
|
1788
|
+
|
1789
|
+
```java
|
1790
|
+
public java.lang.String getPreferredChain();
|
1791
|
+
```
|
1792
|
+
|
1793
|
+
- *Type:* java.lang.String
|
1794
|
+
|
1795
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#preferred_chain Certificate#preferred_chain}.
|
1796
|
+
|
1797
|
+
---
|
1798
|
+
|
1799
|
+
##### `recursiveNameservers`<sup>Optional</sup> <a name="recursiveNameservers" id="@cdktf/provider-acme.certificate.CertificateConfig.property.recursiveNameservers"></a>
|
1800
|
+
|
1801
|
+
```java
|
1802
|
+
public java.util.List<java.lang.String> getRecursiveNameservers();
|
1803
|
+
```
|
1804
|
+
|
1805
|
+
- *Type:* java.util.List<java.lang.String>
|
1806
|
+
|
1807
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#recursive_nameservers Certificate#recursive_nameservers}.
|
1808
|
+
|
1809
|
+
---
|
1810
|
+
|
1811
|
+
##### `revokeCertificateOnDestroy`<sup>Optional</sup> <a name="revokeCertificateOnDestroy" id="@cdktf/provider-acme.certificate.CertificateConfig.property.revokeCertificateOnDestroy"></a>
|
1812
|
+
|
1813
|
+
```java
|
1814
|
+
public java.lang.Object getRevokeCertificateOnDestroy();
|
1815
|
+
```
|
1816
|
+
|
1817
|
+
- *Type:* java.lang.Boolean OR com.hashicorp.cdktf.IResolvable
|
1818
|
+
|
1819
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#revoke_certificate_on_destroy Certificate#revoke_certificate_on_destroy}.
|
1820
|
+
|
1821
|
+
---
|
1822
|
+
|
1823
|
+
##### `subjectAlternativeNames`<sup>Optional</sup> <a name="subjectAlternativeNames" id="@cdktf/provider-acme.certificate.CertificateConfig.property.subjectAlternativeNames"></a>
|
1824
|
+
|
1825
|
+
```java
|
1826
|
+
public java.util.List<java.lang.String> getSubjectAlternativeNames();
|
1827
|
+
```
|
1828
|
+
|
1829
|
+
- *Type:* java.util.List<java.lang.String>
|
1830
|
+
|
1831
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#subject_alternative_names Certificate#subject_alternative_names}.
|
1832
|
+
|
1833
|
+
---
|
1834
|
+
|
1835
|
+
##### `tlsChallenge`<sup>Optional</sup> <a name="tlsChallenge" id="@cdktf/provider-acme.certificate.CertificateConfig.property.tlsChallenge"></a>
|
1836
|
+
|
1837
|
+
```java
|
1838
|
+
public CertificateTlsChallenge getTlsChallenge();
|
1839
|
+
```
|
1840
|
+
|
1841
|
+
- *Type:* <a href="#@cdktf/provider-acme.certificate.CertificateTlsChallenge">CertificateTlsChallenge</a>
|
1842
|
+
|
1843
|
+
tls_challenge block.
|
1844
|
+
|
1845
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#tls_challenge Certificate#tls_challenge}
|
1846
|
+
|
1847
|
+
---
|
1848
|
+
|
1849
|
+
### CertificateDnsChallenge <a name="CertificateDnsChallenge" id="@cdktf/provider-acme.certificate.CertificateDnsChallenge"></a>
|
1850
|
+
|
1851
|
+
#### Initializer <a name="Initializer" id="@cdktf/provider-acme.certificate.CertificateDnsChallenge.Initializer"></a>
|
1852
|
+
|
1853
|
+
```java
|
1854
|
+
import com.hashicorp.cdktf.providers.acme.certificate.CertificateDnsChallenge;
|
1855
|
+
|
1856
|
+
CertificateDnsChallenge.builder()
|
1857
|
+
.provider(java.lang.String)
|
1858
|
+
// .config(java.util.Map<java.lang.String, java.lang.String>)
|
1859
|
+
.build();
|
1860
|
+
```
|
1861
|
+
|
1862
|
+
#### Properties <a name="Properties" id="Properties"></a>
|
1863
|
+
|
1864
|
+
| **Name** | **Type** | **Description** |
|
1865
|
+
| --- | --- | --- |
|
1866
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallenge.property.provider">provider</a></code> | <code>java.lang.String</code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#provider Certificate#provider}. |
|
1867
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallenge.property.config">config</a></code> | <code>java.util.Map<java.lang.String, java.lang.String></code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#config Certificate#config}. |
|
1868
|
+
|
1869
|
+
---
|
1870
|
+
|
1871
|
+
##### `provider`<sup>Required</sup> <a name="provider" id="@cdktf/provider-acme.certificate.CertificateDnsChallenge.property.provider"></a>
|
1872
|
+
|
1873
|
+
```java
|
1874
|
+
public java.lang.String getProvider();
|
1875
|
+
```
|
1876
|
+
|
1877
|
+
- *Type:* java.lang.String
|
1878
|
+
|
1879
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#provider Certificate#provider}.
|
1880
|
+
|
1881
|
+
---
|
1882
|
+
|
1883
|
+
##### `config`<sup>Optional</sup> <a name="config" id="@cdktf/provider-acme.certificate.CertificateDnsChallenge.property.config"></a>
|
1884
|
+
|
1885
|
+
```java
|
1886
|
+
public java.util.Map<java.lang.String, java.lang.String> getConfig();
|
1887
|
+
```
|
1888
|
+
|
1889
|
+
- *Type:* java.util.Map<java.lang.String, java.lang.String>
|
1890
|
+
|
1891
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#config Certificate#config}.
|
1892
|
+
|
1893
|
+
---
|
1894
|
+
|
1895
|
+
### CertificateHttpChallenge <a name="CertificateHttpChallenge" id="@cdktf/provider-acme.certificate.CertificateHttpChallenge"></a>
|
1896
|
+
|
1897
|
+
#### Initializer <a name="Initializer" id="@cdktf/provider-acme.certificate.CertificateHttpChallenge.Initializer"></a>
|
1898
|
+
|
1899
|
+
```java
|
1900
|
+
import com.hashicorp.cdktf.providers.acme.certificate.CertificateHttpChallenge;
|
1901
|
+
|
1902
|
+
CertificateHttpChallenge.builder()
|
1903
|
+
// .port(java.lang.Number)
|
1904
|
+
// .proxyHeader(java.lang.String)
|
1905
|
+
.build();
|
1906
|
+
```
|
1907
|
+
|
1908
|
+
#### Properties <a name="Properties" id="Properties"></a>
|
1909
|
+
|
1910
|
+
| **Name** | **Type** | **Description** |
|
1911
|
+
| --- | --- | --- |
|
1912
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpChallenge.property.port">port</a></code> | <code>java.lang.Number</code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#port Certificate#port}. |
|
1913
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpChallenge.property.proxyHeader">proxyHeader</a></code> | <code>java.lang.String</code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#proxy_header Certificate#proxy_header}. |
|
1914
|
+
|
1915
|
+
---
|
1916
|
+
|
1917
|
+
##### `port`<sup>Optional</sup> <a name="port" id="@cdktf/provider-acme.certificate.CertificateHttpChallenge.property.port"></a>
|
1918
|
+
|
1919
|
+
```java
|
1920
|
+
public java.lang.Number getPort();
|
1921
|
+
```
|
1922
|
+
|
1923
|
+
- *Type:* java.lang.Number
|
1924
|
+
|
1925
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#port Certificate#port}.
|
1926
|
+
|
1927
|
+
---
|
1928
|
+
|
1929
|
+
##### `proxyHeader`<sup>Optional</sup> <a name="proxyHeader" id="@cdktf/provider-acme.certificate.CertificateHttpChallenge.property.proxyHeader"></a>
|
1930
|
+
|
1931
|
+
```java
|
1932
|
+
public java.lang.String getProxyHeader();
|
1933
|
+
```
|
1934
|
+
|
1935
|
+
- *Type:* java.lang.String
|
1936
|
+
|
1937
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#proxy_header Certificate#proxy_header}.
|
1938
|
+
|
1939
|
+
---
|
1940
|
+
|
1941
|
+
### CertificateHttpMemcachedChallenge <a name="CertificateHttpMemcachedChallenge" id="@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallenge"></a>
|
1942
|
+
|
1943
|
+
#### Initializer <a name="Initializer" id="@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallenge.Initializer"></a>
|
1944
|
+
|
1945
|
+
```java
|
1946
|
+
import com.hashicorp.cdktf.providers.acme.certificate.CertificateHttpMemcachedChallenge;
|
1947
|
+
|
1948
|
+
CertificateHttpMemcachedChallenge.builder()
|
1949
|
+
.hosts(java.util.List<java.lang.String>)
|
1950
|
+
.build();
|
1951
|
+
```
|
1952
|
+
|
1953
|
+
#### Properties <a name="Properties" id="Properties"></a>
|
1954
|
+
|
1955
|
+
| **Name** | **Type** | **Description** |
|
1956
|
+
| --- | --- | --- |
|
1957
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallenge.property.hosts">hosts</a></code> | <code>java.util.List<java.lang.String></code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#hosts Certificate#hosts}. |
|
1958
|
+
|
1959
|
+
---
|
1960
|
+
|
1961
|
+
##### `hosts`<sup>Required</sup> <a name="hosts" id="@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallenge.property.hosts"></a>
|
1962
|
+
|
1963
|
+
```java
|
1964
|
+
public java.util.List<java.lang.String> getHosts();
|
1965
|
+
```
|
1966
|
+
|
1967
|
+
- *Type:* java.util.List<java.lang.String>
|
1968
|
+
|
1969
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#hosts Certificate#hosts}.
|
1970
|
+
|
1971
|
+
---
|
1972
|
+
|
1973
|
+
### CertificateHttpWebrootChallenge <a name="CertificateHttpWebrootChallenge" id="@cdktf/provider-acme.certificate.CertificateHttpWebrootChallenge"></a>
|
1974
|
+
|
1975
|
+
#### Initializer <a name="Initializer" id="@cdktf/provider-acme.certificate.CertificateHttpWebrootChallenge.Initializer"></a>
|
1976
|
+
|
1977
|
+
```java
|
1978
|
+
import com.hashicorp.cdktf.providers.acme.certificate.CertificateHttpWebrootChallenge;
|
1979
|
+
|
1980
|
+
CertificateHttpWebrootChallenge.builder()
|
1981
|
+
.directory(java.lang.String)
|
1982
|
+
.build();
|
1983
|
+
```
|
1984
|
+
|
1985
|
+
#### Properties <a name="Properties" id="Properties"></a>
|
1986
|
+
|
1987
|
+
| **Name** | **Type** | **Description** |
|
1988
|
+
| --- | --- | --- |
|
1989
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpWebrootChallenge.property.directory">directory</a></code> | <code>java.lang.String</code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#directory Certificate#directory}. |
|
1990
|
+
|
1991
|
+
---
|
1992
|
+
|
1993
|
+
##### `directory`<sup>Required</sup> <a name="directory" id="@cdktf/provider-acme.certificate.CertificateHttpWebrootChallenge.property.directory"></a>
|
1994
|
+
|
1995
|
+
```java
|
1996
|
+
public java.lang.String getDirectory();
|
1997
|
+
```
|
1998
|
+
|
1999
|
+
- *Type:* java.lang.String
|
2000
|
+
|
2001
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#directory Certificate#directory}.
|
2002
|
+
|
2003
|
+
---
|
2004
|
+
|
2005
|
+
### CertificateTlsChallenge <a name="CertificateTlsChallenge" id="@cdktf/provider-acme.certificate.CertificateTlsChallenge"></a>
|
2006
|
+
|
2007
|
+
#### Initializer <a name="Initializer" id="@cdktf/provider-acme.certificate.CertificateTlsChallenge.Initializer"></a>
|
2008
|
+
|
2009
|
+
```java
|
2010
|
+
import com.hashicorp.cdktf.providers.acme.certificate.CertificateTlsChallenge;
|
2011
|
+
|
2012
|
+
CertificateTlsChallenge.builder()
|
2013
|
+
// .port(java.lang.Number)
|
2014
|
+
.build();
|
2015
|
+
```
|
2016
|
+
|
2017
|
+
#### Properties <a name="Properties" id="Properties"></a>
|
2018
|
+
|
2019
|
+
| **Name** | **Type** | **Description** |
|
2020
|
+
| --- | --- | --- |
|
2021
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateTlsChallenge.property.port">port</a></code> | <code>java.lang.Number</code> | Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#port Certificate#port}. |
|
2022
|
+
|
2023
|
+
---
|
2024
|
+
|
2025
|
+
##### `port`<sup>Optional</sup> <a name="port" id="@cdktf/provider-acme.certificate.CertificateTlsChallenge.property.port"></a>
|
2026
|
+
|
2027
|
+
```java
|
2028
|
+
public java.lang.Number getPort();
|
2029
|
+
```
|
2030
|
+
|
2031
|
+
- *Type:* java.lang.Number
|
2032
|
+
|
2033
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.13.1/docs/resources/certificate#port Certificate#port}.
|
2034
|
+
|
2035
|
+
---
|
2036
|
+
|
2037
|
+
## Classes <a name="Classes" id="Classes"></a>
|
2038
|
+
|
2039
|
+
### CertificateDnsChallengeList <a name="CertificateDnsChallengeList" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeList"></a>
|
2040
|
+
|
2041
|
+
#### Initializers <a name="Initializers" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeList.Initializer"></a>
|
2042
|
+
|
2043
|
+
```java
|
2044
|
+
import com.hashicorp.cdktf.providers.acme.certificate.CertificateDnsChallengeList;
|
2045
|
+
|
2046
|
+
new CertificateDnsChallengeList(IInterpolatingParent terraformResource, java.lang.String terraformAttribute, java.lang.Boolean wrapsSet);
|
2047
|
+
```
|
2048
|
+
|
2049
|
+
| **Name** | **Type** | **Description** |
|
2050
|
+
| --- | --- | --- |
|
2051
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeList.Initializer.parameter.terraformResource">terraformResource</a></code> | <code>com.hashicorp.cdktf.IInterpolatingParent</code> | The parent resource. |
|
2052
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeList.Initializer.parameter.terraformAttribute">terraformAttribute</a></code> | <code>java.lang.String</code> | The attribute on the parent resource this class is referencing. |
|
2053
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeList.Initializer.parameter.wrapsSet">wrapsSet</a></code> | <code>java.lang.Boolean</code> | whether the list is wrapping a set (will add tolist() to be able to access an item via an index). |
|
2054
|
+
|
2055
|
+
---
|
2056
|
+
|
2057
|
+
##### `terraformResource`<sup>Required</sup> <a name="terraformResource" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeList.Initializer.parameter.terraformResource"></a>
|
2058
|
+
|
2059
|
+
- *Type:* com.hashicorp.cdktf.IInterpolatingParent
|
2060
|
+
|
2061
|
+
The parent resource.
|
2062
|
+
|
2063
|
+
---
|
2064
|
+
|
2065
|
+
##### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeList.Initializer.parameter.terraformAttribute"></a>
|
2066
|
+
|
2067
|
+
- *Type:* java.lang.String
|
2068
|
+
|
2069
|
+
The attribute on the parent resource this class is referencing.
|
2070
|
+
|
2071
|
+
---
|
2072
|
+
|
2073
|
+
##### `wrapsSet`<sup>Required</sup> <a name="wrapsSet" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeList.Initializer.parameter.wrapsSet"></a>
|
2074
|
+
|
2075
|
+
- *Type:* java.lang.Boolean
|
2076
|
+
|
2077
|
+
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
|
2078
|
+
|
2079
|
+
---
|
2080
|
+
|
2081
|
+
#### Methods <a name="Methods" id="Methods"></a>
|
2082
|
+
|
2083
|
+
| **Name** | **Description** |
|
2084
|
+
| --- | --- |
|
2085
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeList.computeFqn">computeFqn</a></code> | *No description.* |
|
2086
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeList.resolve">resolve</a></code> | Produce the Token's value at resolution time. |
|
2087
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeList.toString">toString</a></code> | Return a string representation of this resolvable object. |
|
2088
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeList.get">get</a></code> | *No description.* |
|
2089
|
+
|
2090
|
+
---
|
2091
|
+
|
2092
|
+
##### `computeFqn` <a name="computeFqn" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeList.computeFqn"></a>
|
2093
|
+
|
2094
|
+
```java
|
2095
|
+
public java.lang.String computeFqn()
|
2096
|
+
```
|
2097
|
+
|
2098
|
+
##### `resolve` <a name="resolve" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeList.resolve"></a>
|
2099
|
+
|
2100
|
+
```java
|
2101
|
+
public java.lang.Object resolve(IResolveContext _context)
|
2102
|
+
```
|
2103
|
+
|
2104
|
+
Produce the Token's value at resolution time.
|
2105
|
+
|
2106
|
+
###### `_context`<sup>Required</sup> <a name="_context" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeList.resolve.parameter._context"></a>
|
2107
|
+
|
2108
|
+
- *Type:* com.hashicorp.cdktf.IResolveContext
|
2109
|
+
|
2110
|
+
---
|
2111
|
+
|
2112
|
+
##### `toString` <a name="toString" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeList.toString"></a>
|
2113
|
+
|
2114
|
+
```java
|
2115
|
+
public java.lang.String toString()
|
2116
|
+
```
|
2117
|
+
|
2118
|
+
Return a string representation of this resolvable object.
|
2119
|
+
|
2120
|
+
Returns a reversible string representation.
|
2121
|
+
|
2122
|
+
##### `get` <a name="get" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeList.get"></a>
|
2123
|
+
|
2124
|
+
```java
|
2125
|
+
public CertificateDnsChallengeOutputReference get(java.lang.Number index)
|
2126
|
+
```
|
2127
|
+
|
2128
|
+
###### `index`<sup>Required</sup> <a name="index" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeList.get.parameter.index"></a>
|
2129
|
+
|
2130
|
+
- *Type:* java.lang.Number
|
2131
|
+
|
2132
|
+
the index of the item to return.
|
2133
|
+
|
2134
|
+
---
|
2135
|
+
|
2136
|
+
|
2137
|
+
#### Properties <a name="Properties" id="Properties"></a>
|
2138
|
+
|
2139
|
+
| **Name** | **Type** | **Description** |
|
2140
|
+
| --- | --- | --- |
|
2141
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeList.property.creationStack">creationStack</a></code> | <code>java.util.List<java.lang.String></code> | The creation stack of this resolvable which will be appended to errors thrown during resolution. |
|
2142
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeList.property.fqn">fqn</a></code> | <code>java.lang.String</code> | *No description.* |
|
2143
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeList.property.internalValue">internalValue</a></code> | <code>com.hashicorp.cdktf.IResolvable OR java.util.List<<a href="#@cdktf/provider-acme.certificate.CertificateDnsChallenge">CertificateDnsChallenge</a>></code> | *No description.* |
|
2144
|
+
|
2145
|
+
---
|
2146
|
+
|
2147
|
+
##### `creationStack`<sup>Required</sup> <a name="creationStack" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeList.property.creationStack"></a>
|
2148
|
+
|
2149
|
+
```java
|
2150
|
+
public java.util.List<java.lang.String> getCreationStack();
|
2151
|
+
```
|
2152
|
+
|
2153
|
+
- *Type:* java.util.List<java.lang.String>
|
2154
|
+
|
2155
|
+
The creation stack of this resolvable which will be appended to errors thrown during resolution.
|
2156
|
+
|
2157
|
+
If this returns an empty array the stack will not be attached.
|
2158
|
+
|
2159
|
+
---
|
2160
|
+
|
2161
|
+
##### `fqn`<sup>Required</sup> <a name="fqn" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeList.property.fqn"></a>
|
2162
|
+
|
2163
|
+
```java
|
2164
|
+
public java.lang.String getFqn();
|
2165
|
+
```
|
2166
|
+
|
2167
|
+
- *Type:* java.lang.String
|
2168
|
+
|
2169
|
+
---
|
2170
|
+
|
2171
|
+
##### `internalValue`<sup>Optional</sup> <a name="internalValue" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeList.property.internalValue"></a>
|
2172
|
+
|
2173
|
+
```java
|
2174
|
+
public java.lang.Object getInternalValue();
|
2175
|
+
```
|
2176
|
+
|
2177
|
+
- *Type:* com.hashicorp.cdktf.IResolvable OR java.util.List<<a href="#@cdktf/provider-acme.certificate.CertificateDnsChallenge">CertificateDnsChallenge</a>>
|
2178
|
+
|
2179
|
+
---
|
2180
|
+
|
2181
|
+
|
2182
|
+
### CertificateDnsChallengeOutputReference <a name="CertificateDnsChallengeOutputReference" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference"></a>
|
2183
|
+
|
2184
|
+
#### Initializers <a name="Initializers" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.Initializer"></a>
|
2185
|
+
|
2186
|
+
```java
|
2187
|
+
import com.hashicorp.cdktf.providers.acme.certificate.CertificateDnsChallengeOutputReference;
|
2188
|
+
|
2189
|
+
new CertificateDnsChallengeOutputReference(IInterpolatingParent terraformResource, java.lang.String terraformAttribute, java.lang.Number complexObjectIndex, java.lang.Boolean complexObjectIsFromSet);
|
2190
|
+
```
|
2191
|
+
|
2192
|
+
| **Name** | **Type** | **Description** |
|
2193
|
+
| --- | --- | --- |
|
2194
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.Initializer.parameter.terraformResource">terraformResource</a></code> | <code>com.hashicorp.cdktf.IInterpolatingParent</code> | The parent resource. |
|
2195
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.Initializer.parameter.terraformAttribute">terraformAttribute</a></code> | <code>java.lang.String</code> | The attribute on the parent resource this class is referencing. |
|
2196
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.Initializer.parameter.complexObjectIndex">complexObjectIndex</a></code> | <code>java.lang.Number</code> | the index of this item in the list. |
|
2197
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.Initializer.parameter.complexObjectIsFromSet">complexObjectIsFromSet</a></code> | <code>java.lang.Boolean</code> | whether the list is wrapping a set (will add tolist() to be able to access an item via an index). |
|
2198
|
+
|
2199
|
+
---
|
2200
|
+
|
2201
|
+
##### `terraformResource`<sup>Required</sup> <a name="terraformResource" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.Initializer.parameter.terraformResource"></a>
|
2202
|
+
|
2203
|
+
- *Type:* com.hashicorp.cdktf.IInterpolatingParent
|
2204
|
+
|
2205
|
+
The parent resource.
|
2206
|
+
|
2207
|
+
---
|
2208
|
+
|
2209
|
+
##### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.Initializer.parameter.terraformAttribute"></a>
|
2210
|
+
|
2211
|
+
- *Type:* java.lang.String
|
2212
|
+
|
2213
|
+
The attribute on the parent resource this class is referencing.
|
2214
|
+
|
2215
|
+
---
|
2216
|
+
|
2217
|
+
##### `complexObjectIndex`<sup>Required</sup> <a name="complexObjectIndex" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.Initializer.parameter.complexObjectIndex"></a>
|
2218
|
+
|
2219
|
+
- *Type:* java.lang.Number
|
2220
|
+
|
2221
|
+
the index of this item in the list.
|
2222
|
+
|
2223
|
+
---
|
2224
|
+
|
2225
|
+
##### `complexObjectIsFromSet`<sup>Required</sup> <a name="complexObjectIsFromSet" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.Initializer.parameter.complexObjectIsFromSet"></a>
|
2226
|
+
|
2227
|
+
- *Type:* java.lang.Boolean
|
2228
|
+
|
2229
|
+
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
|
2230
|
+
|
2231
|
+
---
|
2232
|
+
|
2233
|
+
#### Methods <a name="Methods" id="Methods"></a>
|
2234
|
+
|
2235
|
+
| **Name** | **Description** |
|
2236
|
+
| --- | --- |
|
2237
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.computeFqn">computeFqn</a></code> | *No description.* |
|
2238
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.getAnyMapAttribute">getAnyMapAttribute</a></code> | *No description.* |
|
2239
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.getBooleanAttribute">getBooleanAttribute</a></code> | *No description.* |
|
2240
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.getBooleanMapAttribute">getBooleanMapAttribute</a></code> | *No description.* |
|
2241
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.getListAttribute">getListAttribute</a></code> | *No description.* |
|
2242
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.getNumberAttribute">getNumberAttribute</a></code> | *No description.* |
|
2243
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.getNumberListAttribute">getNumberListAttribute</a></code> | *No description.* |
|
2244
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.getNumberMapAttribute">getNumberMapAttribute</a></code> | *No description.* |
|
2245
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.getStringAttribute">getStringAttribute</a></code> | *No description.* |
|
2246
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.getStringMapAttribute">getStringMapAttribute</a></code> | *No description.* |
|
2247
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.interpolationForAttribute">interpolationForAttribute</a></code> | *No description.* |
|
2248
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.resolve">resolve</a></code> | Produce the Token's value at resolution time. |
|
2249
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.toString">toString</a></code> | Return a string representation of this resolvable object. |
|
2250
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.resetConfig">resetConfig</a></code> | *No description.* |
|
2251
|
+
|
2252
|
+
---
|
2253
|
+
|
2254
|
+
##### `computeFqn` <a name="computeFqn" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.computeFqn"></a>
|
2255
|
+
|
2256
|
+
```java
|
2257
|
+
public java.lang.String computeFqn()
|
2258
|
+
```
|
2259
|
+
|
2260
|
+
##### `getAnyMapAttribute` <a name="getAnyMapAttribute" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.getAnyMapAttribute"></a>
|
2261
|
+
|
2262
|
+
```java
|
2263
|
+
public java.util.Map<java.lang.String, java.lang.Object> getAnyMapAttribute(java.lang.String terraformAttribute)
|
2264
|
+
```
|
2265
|
+
|
2266
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.getAnyMapAttribute.parameter.terraformAttribute"></a>
|
2267
|
+
|
2268
|
+
- *Type:* java.lang.String
|
2269
|
+
|
2270
|
+
---
|
2271
|
+
|
2272
|
+
##### `getBooleanAttribute` <a name="getBooleanAttribute" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.getBooleanAttribute"></a>
|
2273
|
+
|
2274
|
+
```java
|
2275
|
+
public IResolvable getBooleanAttribute(java.lang.String terraformAttribute)
|
2276
|
+
```
|
2277
|
+
|
2278
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.getBooleanAttribute.parameter.terraformAttribute"></a>
|
2279
|
+
|
2280
|
+
- *Type:* java.lang.String
|
2281
|
+
|
2282
|
+
---
|
2283
|
+
|
2284
|
+
##### `getBooleanMapAttribute` <a name="getBooleanMapAttribute" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.getBooleanMapAttribute"></a>
|
2285
|
+
|
2286
|
+
```java
|
2287
|
+
public java.util.Map<java.lang.String, java.lang.Boolean> getBooleanMapAttribute(java.lang.String terraformAttribute)
|
2288
|
+
```
|
2289
|
+
|
2290
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.getBooleanMapAttribute.parameter.terraformAttribute"></a>
|
2291
|
+
|
2292
|
+
- *Type:* java.lang.String
|
2293
|
+
|
2294
|
+
---
|
2295
|
+
|
2296
|
+
##### `getListAttribute` <a name="getListAttribute" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.getListAttribute"></a>
|
2297
|
+
|
2298
|
+
```java
|
2299
|
+
public java.util.List<java.lang.String> getListAttribute(java.lang.String terraformAttribute)
|
2300
|
+
```
|
2301
|
+
|
2302
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.getListAttribute.parameter.terraformAttribute"></a>
|
2303
|
+
|
2304
|
+
- *Type:* java.lang.String
|
2305
|
+
|
2306
|
+
---
|
2307
|
+
|
2308
|
+
##### `getNumberAttribute` <a name="getNumberAttribute" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.getNumberAttribute"></a>
|
2309
|
+
|
2310
|
+
```java
|
2311
|
+
public java.lang.Number getNumberAttribute(java.lang.String terraformAttribute)
|
2312
|
+
```
|
2313
|
+
|
2314
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.getNumberAttribute.parameter.terraformAttribute"></a>
|
2315
|
+
|
2316
|
+
- *Type:* java.lang.String
|
2317
|
+
|
2318
|
+
---
|
2319
|
+
|
2320
|
+
##### `getNumberListAttribute` <a name="getNumberListAttribute" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.getNumberListAttribute"></a>
|
2321
|
+
|
2322
|
+
```java
|
2323
|
+
public java.util.List<java.lang.Number> getNumberListAttribute(java.lang.String terraformAttribute)
|
2324
|
+
```
|
2325
|
+
|
2326
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.getNumberListAttribute.parameter.terraformAttribute"></a>
|
2327
|
+
|
2328
|
+
- *Type:* java.lang.String
|
2329
|
+
|
2330
|
+
---
|
2331
|
+
|
2332
|
+
##### `getNumberMapAttribute` <a name="getNumberMapAttribute" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.getNumberMapAttribute"></a>
|
2333
|
+
|
2334
|
+
```java
|
2335
|
+
public java.util.Map<java.lang.String, java.lang.Number> getNumberMapAttribute(java.lang.String terraformAttribute)
|
2336
|
+
```
|
2337
|
+
|
2338
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.getNumberMapAttribute.parameter.terraformAttribute"></a>
|
2339
|
+
|
2340
|
+
- *Type:* java.lang.String
|
2341
|
+
|
2342
|
+
---
|
2343
|
+
|
2344
|
+
##### `getStringAttribute` <a name="getStringAttribute" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.getStringAttribute"></a>
|
2345
|
+
|
2346
|
+
```java
|
2347
|
+
public java.lang.String getStringAttribute(java.lang.String terraformAttribute)
|
2348
|
+
```
|
2349
|
+
|
2350
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.getStringAttribute.parameter.terraformAttribute"></a>
|
2351
|
+
|
2352
|
+
- *Type:* java.lang.String
|
2353
|
+
|
2354
|
+
---
|
2355
|
+
|
2356
|
+
##### `getStringMapAttribute` <a name="getStringMapAttribute" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.getStringMapAttribute"></a>
|
2357
|
+
|
2358
|
+
```java
|
2359
|
+
public java.util.Map<java.lang.String, java.lang.String> getStringMapAttribute(java.lang.String terraformAttribute)
|
2360
|
+
```
|
2361
|
+
|
2362
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.getStringMapAttribute.parameter.terraformAttribute"></a>
|
2363
|
+
|
2364
|
+
- *Type:* java.lang.String
|
2365
|
+
|
2366
|
+
---
|
2367
|
+
|
2368
|
+
##### `interpolationForAttribute` <a name="interpolationForAttribute" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.interpolationForAttribute"></a>
|
2369
|
+
|
2370
|
+
```java
|
2371
|
+
public IResolvable interpolationForAttribute(java.lang.String property)
|
2372
|
+
```
|
2373
|
+
|
2374
|
+
###### `property`<sup>Required</sup> <a name="property" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.interpolationForAttribute.parameter.property"></a>
|
2375
|
+
|
2376
|
+
- *Type:* java.lang.String
|
2377
|
+
|
2378
|
+
---
|
2379
|
+
|
2380
|
+
##### `resolve` <a name="resolve" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.resolve"></a>
|
2381
|
+
|
2382
|
+
```java
|
2383
|
+
public java.lang.Object resolve(IResolveContext _context)
|
2384
|
+
```
|
2385
|
+
|
2386
|
+
Produce the Token's value at resolution time.
|
2387
|
+
|
2388
|
+
###### `_context`<sup>Required</sup> <a name="_context" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.resolve.parameter._context"></a>
|
2389
|
+
|
2390
|
+
- *Type:* com.hashicorp.cdktf.IResolveContext
|
2391
|
+
|
2392
|
+
---
|
2393
|
+
|
2394
|
+
##### `toString` <a name="toString" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.toString"></a>
|
2395
|
+
|
2396
|
+
```java
|
2397
|
+
public java.lang.String toString()
|
2398
|
+
```
|
2399
|
+
|
2400
|
+
Return a string representation of this resolvable object.
|
2401
|
+
|
2402
|
+
Returns a reversible string representation.
|
2403
|
+
|
2404
|
+
##### `resetConfig` <a name="resetConfig" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.resetConfig"></a>
|
2405
|
+
|
2406
|
+
```java
|
2407
|
+
public void resetConfig()
|
2408
|
+
```
|
2409
|
+
|
2410
|
+
|
2411
|
+
#### Properties <a name="Properties" id="Properties"></a>
|
2412
|
+
|
2413
|
+
| **Name** | **Type** | **Description** |
|
2414
|
+
| --- | --- | --- |
|
2415
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.property.creationStack">creationStack</a></code> | <code>java.util.List<java.lang.String></code> | The creation stack of this resolvable which will be appended to errors thrown during resolution. |
|
2416
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.property.fqn">fqn</a></code> | <code>java.lang.String</code> | *No description.* |
|
2417
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.property.configInput">configInput</a></code> | <code>java.util.Map<java.lang.String, java.lang.String></code> | *No description.* |
|
2418
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.property.providerInput">providerInput</a></code> | <code>java.lang.String</code> | *No description.* |
|
2419
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.property.config">config</a></code> | <code>java.util.Map<java.lang.String, java.lang.String></code> | *No description.* |
|
2420
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.property.provider">provider</a></code> | <code>java.lang.String</code> | *No description.* |
|
2421
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.property.internalValue">internalValue</a></code> | <code><a href="#@cdktf/provider-acme.certificate.CertificateDnsChallenge">CertificateDnsChallenge</a> OR com.hashicorp.cdktf.IResolvable</code> | *No description.* |
|
2422
|
+
|
2423
|
+
---
|
2424
|
+
|
2425
|
+
##### `creationStack`<sup>Required</sup> <a name="creationStack" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.property.creationStack"></a>
|
2426
|
+
|
2427
|
+
```java
|
2428
|
+
public java.util.List<java.lang.String> getCreationStack();
|
2429
|
+
```
|
2430
|
+
|
2431
|
+
- *Type:* java.util.List<java.lang.String>
|
2432
|
+
|
2433
|
+
The creation stack of this resolvable which will be appended to errors thrown during resolution.
|
2434
|
+
|
2435
|
+
If this returns an empty array the stack will not be attached.
|
2436
|
+
|
2437
|
+
---
|
2438
|
+
|
2439
|
+
##### `fqn`<sup>Required</sup> <a name="fqn" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.property.fqn"></a>
|
2440
|
+
|
2441
|
+
```java
|
2442
|
+
public java.lang.String getFqn();
|
2443
|
+
```
|
2444
|
+
|
2445
|
+
- *Type:* java.lang.String
|
2446
|
+
|
2447
|
+
---
|
2448
|
+
|
2449
|
+
##### `configInput`<sup>Optional</sup> <a name="configInput" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.property.configInput"></a>
|
2450
|
+
|
2451
|
+
```java
|
2452
|
+
public java.util.Map<java.lang.String, java.lang.String> getConfigInput();
|
2453
|
+
```
|
2454
|
+
|
2455
|
+
- *Type:* java.util.Map<java.lang.String, java.lang.String>
|
2456
|
+
|
2457
|
+
---
|
2458
|
+
|
2459
|
+
##### `providerInput`<sup>Optional</sup> <a name="providerInput" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.property.providerInput"></a>
|
2460
|
+
|
2461
|
+
```java
|
2462
|
+
public java.lang.String getProviderInput();
|
2463
|
+
```
|
2464
|
+
|
2465
|
+
- *Type:* java.lang.String
|
2466
|
+
|
2467
|
+
---
|
2468
|
+
|
2469
|
+
##### `config`<sup>Required</sup> <a name="config" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.property.config"></a>
|
2470
|
+
|
2471
|
+
```java
|
2472
|
+
public java.util.Map<java.lang.String, java.lang.String> getConfig();
|
2473
|
+
```
|
2474
|
+
|
2475
|
+
- *Type:* java.util.Map<java.lang.String, java.lang.String>
|
2476
|
+
|
2477
|
+
---
|
2478
|
+
|
2479
|
+
##### `provider`<sup>Required</sup> <a name="provider" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.property.provider"></a>
|
2480
|
+
|
2481
|
+
```java
|
2482
|
+
public java.lang.String getProvider();
|
2483
|
+
```
|
2484
|
+
|
2485
|
+
- *Type:* java.lang.String
|
2486
|
+
|
2487
|
+
---
|
2488
|
+
|
2489
|
+
##### `internalValue`<sup>Optional</sup> <a name="internalValue" id="@cdktf/provider-acme.certificate.CertificateDnsChallengeOutputReference.property.internalValue"></a>
|
2490
|
+
|
2491
|
+
```java
|
2492
|
+
public java.lang.Object getInternalValue();
|
2493
|
+
```
|
2494
|
+
|
2495
|
+
- *Type:* <a href="#@cdktf/provider-acme.certificate.CertificateDnsChallenge">CertificateDnsChallenge</a> OR com.hashicorp.cdktf.IResolvable
|
2496
|
+
|
2497
|
+
---
|
2498
|
+
|
2499
|
+
|
2500
|
+
### CertificateHttpChallengeOutputReference <a name="CertificateHttpChallengeOutputReference" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference"></a>
|
2501
|
+
|
2502
|
+
#### Initializers <a name="Initializers" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.Initializer"></a>
|
2503
|
+
|
2504
|
+
```java
|
2505
|
+
import com.hashicorp.cdktf.providers.acme.certificate.CertificateHttpChallengeOutputReference;
|
2506
|
+
|
2507
|
+
new CertificateHttpChallengeOutputReference(IInterpolatingParent terraformResource, java.lang.String terraformAttribute);
|
2508
|
+
```
|
2509
|
+
|
2510
|
+
| **Name** | **Type** | **Description** |
|
2511
|
+
| --- | --- | --- |
|
2512
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.Initializer.parameter.terraformResource">terraformResource</a></code> | <code>com.hashicorp.cdktf.IInterpolatingParent</code> | The parent resource. |
|
2513
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.Initializer.parameter.terraformAttribute">terraformAttribute</a></code> | <code>java.lang.String</code> | The attribute on the parent resource this class is referencing. |
|
2514
|
+
|
2515
|
+
---
|
2516
|
+
|
2517
|
+
##### `terraformResource`<sup>Required</sup> <a name="terraformResource" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.Initializer.parameter.terraformResource"></a>
|
2518
|
+
|
2519
|
+
- *Type:* com.hashicorp.cdktf.IInterpolatingParent
|
2520
|
+
|
2521
|
+
The parent resource.
|
2522
|
+
|
2523
|
+
---
|
2524
|
+
|
2525
|
+
##### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.Initializer.parameter.terraformAttribute"></a>
|
2526
|
+
|
2527
|
+
- *Type:* java.lang.String
|
2528
|
+
|
2529
|
+
The attribute on the parent resource this class is referencing.
|
2530
|
+
|
2531
|
+
---
|
2532
|
+
|
2533
|
+
#### Methods <a name="Methods" id="Methods"></a>
|
2534
|
+
|
2535
|
+
| **Name** | **Description** |
|
2536
|
+
| --- | --- |
|
2537
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.computeFqn">computeFqn</a></code> | *No description.* |
|
2538
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.getAnyMapAttribute">getAnyMapAttribute</a></code> | *No description.* |
|
2539
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.getBooleanAttribute">getBooleanAttribute</a></code> | *No description.* |
|
2540
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.getBooleanMapAttribute">getBooleanMapAttribute</a></code> | *No description.* |
|
2541
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.getListAttribute">getListAttribute</a></code> | *No description.* |
|
2542
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.getNumberAttribute">getNumberAttribute</a></code> | *No description.* |
|
2543
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.getNumberListAttribute">getNumberListAttribute</a></code> | *No description.* |
|
2544
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.getNumberMapAttribute">getNumberMapAttribute</a></code> | *No description.* |
|
2545
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.getStringAttribute">getStringAttribute</a></code> | *No description.* |
|
2546
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.getStringMapAttribute">getStringMapAttribute</a></code> | *No description.* |
|
2547
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.interpolationForAttribute">interpolationForAttribute</a></code> | *No description.* |
|
2548
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.resolve">resolve</a></code> | Produce the Token's value at resolution time. |
|
2549
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.toString">toString</a></code> | Return a string representation of this resolvable object. |
|
2550
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.resetPort">resetPort</a></code> | *No description.* |
|
2551
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.resetProxyHeader">resetProxyHeader</a></code> | *No description.* |
|
2552
|
+
|
2553
|
+
---
|
2554
|
+
|
2555
|
+
##### `computeFqn` <a name="computeFqn" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.computeFqn"></a>
|
2556
|
+
|
2557
|
+
```java
|
2558
|
+
public java.lang.String computeFqn()
|
2559
|
+
```
|
2560
|
+
|
2561
|
+
##### `getAnyMapAttribute` <a name="getAnyMapAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.getAnyMapAttribute"></a>
|
2562
|
+
|
2563
|
+
```java
|
2564
|
+
public java.util.Map<java.lang.String, java.lang.Object> getAnyMapAttribute(java.lang.String terraformAttribute)
|
2565
|
+
```
|
2566
|
+
|
2567
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.getAnyMapAttribute.parameter.terraformAttribute"></a>
|
2568
|
+
|
2569
|
+
- *Type:* java.lang.String
|
2570
|
+
|
2571
|
+
---
|
2572
|
+
|
2573
|
+
##### `getBooleanAttribute` <a name="getBooleanAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.getBooleanAttribute"></a>
|
2574
|
+
|
2575
|
+
```java
|
2576
|
+
public IResolvable getBooleanAttribute(java.lang.String terraformAttribute)
|
2577
|
+
```
|
2578
|
+
|
2579
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.getBooleanAttribute.parameter.terraformAttribute"></a>
|
2580
|
+
|
2581
|
+
- *Type:* java.lang.String
|
2582
|
+
|
2583
|
+
---
|
2584
|
+
|
2585
|
+
##### `getBooleanMapAttribute` <a name="getBooleanMapAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.getBooleanMapAttribute"></a>
|
2586
|
+
|
2587
|
+
```java
|
2588
|
+
public java.util.Map<java.lang.String, java.lang.Boolean> getBooleanMapAttribute(java.lang.String terraformAttribute)
|
2589
|
+
```
|
2590
|
+
|
2591
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.getBooleanMapAttribute.parameter.terraformAttribute"></a>
|
2592
|
+
|
2593
|
+
- *Type:* java.lang.String
|
2594
|
+
|
2595
|
+
---
|
2596
|
+
|
2597
|
+
##### `getListAttribute` <a name="getListAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.getListAttribute"></a>
|
2598
|
+
|
2599
|
+
```java
|
2600
|
+
public java.util.List<java.lang.String> getListAttribute(java.lang.String terraformAttribute)
|
2601
|
+
```
|
2602
|
+
|
2603
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.getListAttribute.parameter.terraformAttribute"></a>
|
2604
|
+
|
2605
|
+
- *Type:* java.lang.String
|
2606
|
+
|
2607
|
+
---
|
2608
|
+
|
2609
|
+
##### `getNumberAttribute` <a name="getNumberAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.getNumberAttribute"></a>
|
2610
|
+
|
2611
|
+
```java
|
2612
|
+
public java.lang.Number getNumberAttribute(java.lang.String terraformAttribute)
|
2613
|
+
```
|
2614
|
+
|
2615
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.getNumberAttribute.parameter.terraformAttribute"></a>
|
2616
|
+
|
2617
|
+
- *Type:* java.lang.String
|
2618
|
+
|
2619
|
+
---
|
2620
|
+
|
2621
|
+
##### `getNumberListAttribute` <a name="getNumberListAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.getNumberListAttribute"></a>
|
2622
|
+
|
2623
|
+
```java
|
2624
|
+
public java.util.List<java.lang.Number> getNumberListAttribute(java.lang.String terraformAttribute)
|
2625
|
+
```
|
2626
|
+
|
2627
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.getNumberListAttribute.parameter.terraformAttribute"></a>
|
2628
|
+
|
2629
|
+
- *Type:* java.lang.String
|
2630
|
+
|
2631
|
+
---
|
2632
|
+
|
2633
|
+
##### `getNumberMapAttribute` <a name="getNumberMapAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.getNumberMapAttribute"></a>
|
2634
|
+
|
2635
|
+
```java
|
2636
|
+
public java.util.Map<java.lang.String, java.lang.Number> getNumberMapAttribute(java.lang.String terraformAttribute)
|
2637
|
+
```
|
2638
|
+
|
2639
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.getNumberMapAttribute.parameter.terraformAttribute"></a>
|
2640
|
+
|
2641
|
+
- *Type:* java.lang.String
|
2642
|
+
|
2643
|
+
---
|
2644
|
+
|
2645
|
+
##### `getStringAttribute` <a name="getStringAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.getStringAttribute"></a>
|
2646
|
+
|
2647
|
+
```java
|
2648
|
+
public java.lang.String getStringAttribute(java.lang.String terraformAttribute)
|
2649
|
+
```
|
2650
|
+
|
2651
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.getStringAttribute.parameter.terraformAttribute"></a>
|
2652
|
+
|
2653
|
+
- *Type:* java.lang.String
|
2654
|
+
|
2655
|
+
---
|
2656
|
+
|
2657
|
+
##### `getStringMapAttribute` <a name="getStringMapAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.getStringMapAttribute"></a>
|
2658
|
+
|
2659
|
+
```java
|
2660
|
+
public java.util.Map<java.lang.String, java.lang.String> getStringMapAttribute(java.lang.String terraformAttribute)
|
2661
|
+
```
|
2662
|
+
|
2663
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.getStringMapAttribute.parameter.terraformAttribute"></a>
|
2664
|
+
|
2665
|
+
- *Type:* java.lang.String
|
2666
|
+
|
2667
|
+
---
|
2668
|
+
|
2669
|
+
##### `interpolationForAttribute` <a name="interpolationForAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.interpolationForAttribute"></a>
|
2670
|
+
|
2671
|
+
```java
|
2672
|
+
public IResolvable interpolationForAttribute(java.lang.String property)
|
2673
|
+
```
|
2674
|
+
|
2675
|
+
###### `property`<sup>Required</sup> <a name="property" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.interpolationForAttribute.parameter.property"></a>
|
2676
|
+
|
2677
|
+
- *Type:* java.lang.String
|
2678
|
+
|
2679
|
+
---
|
2680
|
+
|
2681
|
+
##### `resolve` <a name="resolve" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.resolve"></a>
|
2682
|
+
|
2683
|
+
```java
|
2684
|
+
public java.lang.Object resolve(IResolveContext _context)
|
2685
|
+
```
|
2686
|
+
|
2687
|
+
Produce the Token's value at resolution time.
|
2688
|
+
|
2689
|
+
###### `_context`<sup>Required</sup> <a name="_context" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.resolve.parameter._context"></a>
|
2690
|
+
|
2691
|
+
- *Type:* com.hashicorp.cdktf.IResolveContext
|
2692
|
+
|
2693
|
+
---
|
2694
|
+
|
2695
|
+
##### `toString` <a name="toString" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.toString"></a>
|
2696
|
+
|
2697
|
+
```java
|
2698
|
+
public java.lang.String toString()
|
2699
|
+
```
|
2700
|
+
|
2701
|
+
Return a string representation of this resolvable object.
|
2702
|
+
|
2703
|
+
Returns a reversible string representation.
|
2704
|
+
|
2705
|
+
##### `resetPort` <a name="resetPort" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.resetPort"></a>
|
2706
|
+
|
2707
|
+
```java
|
2708
|
+
public void resetPort()
|
2709
|
+
```
|
2710
|
+
|
2711
|
+
##### `resetProxyHeader` <a name="resetProxyHeader" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.resetProxyHeader"></a>
|
2712
|
+
|
2713
|
+
```java
|
2714
|
+
public void resetProxyHeader()
|
2715
|
+
```
|
2716
|
+
|
2717
|
+
|
2718
|
+
#### Properties <a name="Properties" id="Properties"></a>
|
2719
|
+
|
2720
|
+
| **Name** | **Type** | **Description** |
|
2721
|
+
| --- | --- | --- |
|
2722
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.property.creationStack">creationStack</a></code> | <code>java.util.List<java.lang.String></code> | The creation stack of this resolvable which will be appended to errors thrown during resolution. |
|
2723
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.property.fqn">fqn</a></code> | <code>java.lang.String</code> | *No description.* |
|
2724
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.property.portInput">portInput</a></code> | <code>java.lang.Number</code> | *No description.* |
|
2725
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.property.proxyHeaderInput">proxyHeaderInput</a></code> | <code>java.lang.String</code> | *No description.* |
|
2726
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.property.port">port</a></code> | <code>java.lang.Number</code> | *No description.* |
|
2727
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.property.proxyHeader">proxyHeader</a></code> | <code>java.lang.String</code> | *No description.* |
|
2728
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.property.internalValue">internalValue</a></code> | <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpChallenge">CertificateHttpChallenge</a></code> | *No description.* |
|
2729
|
+
|
2730
|
+
---
|
2731
|
+
|
2732
|
+
##### `creationStack`<sup>Required</sup> <a name="creationStack" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.property.creationStack"></a>
|
2733
|
+
|
2734
|
+
```java
|
2735
|
+
public java.util.List<java.lang.String> getCreationStack();
|
2736
|
+
```
|
2737
|
+
|
2738
|
+
- *Type:* java.util.List<java.lang.String>
|
2739
|
+
|
2740
|
+
The creation stack of this resolvable which will be appended to errors thrown during resolution.
|
2741
|
+
|
2742
|
+
If this returns an empty array the stack will not be attached.
|
2743
|
+
|
2744
|
+
---
|
2745
|
+
|
2746
|
+
##### `fqn`<sup>Required</sup> <a name="fqn" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.property.fqn"></a>
|
2747
|
+
|
2748
|
+
```java
|
2749
|
+
public java.lang.String getFqn();
|
2750
|
+
```
|
2751
|
+
|
2752
|
+
- *Type:* java.lang.String
|
2753
|
+
|
2754
|
+
---
|
2755
|
+
|
2756
|
+
##### `portInput`<sup>Optional</sup> <a name="portInput" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.property.portInput"></a>
|
2757
|
+
|
2758
|
+
```java
|
2759
|
+
public java.lang.Number getPortInput();
|
2760
|
+
```
|
2761
|
+
|
2762
|
+
- *Type:* java.lang.Number
|
2763
|
+
|
2764
|
+
---
|
2765
|
+
|
2766
|
+
##### `proxyHeaderInput`<sup>Optional</sup> <a name="proxyHeaderInput" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.property.proxyHeaderInput"></a>
|
2767
|
+
|
2768
|
+
```java
|
2769
|
+
public java.lang.String getProxyHeaderInput();
|
2770
|
+
```
|
2771
|
+
|
2772
|
+
- *Type:* java.lang.String
|
2773
|
+
|
2774
|
+
---
|
2775
|
+
|
2776
|
+
##### `port`<sup>Required</sup> <a name="port" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.property.port"></a>
|
2777
|
+
|
2778
|
+
```java
|
2779
|
+
public java.lang.Number getPort();
|
2780
|
+
```
|
2781
|
+
|
2782
|
+
- *Type:* java.lang.Number
|
2783
|
+
|
2784
|
+
---
|
2785
|
+
|
2786
|
+
##### `proxyHeader`<sup>Required</sup> <a name="proxyHeader" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.property.proxyHeader"></a>
|
2787
|
+
|
2788
|
+
```java
|
2789
|
+
public java.lang.String getProxyHeader();
|
2790
|
+
```
|
2791
|
+
|
2792
|
+
- *Type:* java.lang.String
|
2793
|
+
|
2794
|
+
---
|
2795
|
+
|
2796
|
+
##### `internalValue`<sup>Optional</sup> <a name="internalValue" id="@cdktf/provider-acme.certificate.CertificateHttpChallengeOutputReference.property.internalValue"></a>
|
2797
|
+
|
2798
|
+
```java
|
2799
|
+
public CertificateHttpChallenge getInternalValue();
|
2800
|
+
```
|
2801
|
+
|
2802
|
+
- *Type:* <a href="#@cdktf/provider-acme.certificate.CertificateHttpChallenge">CertificateHttpChallenge</a>
|
2803
|
+
|
2804
|
+
---
|
2805
|
+
|
2806
|
+
|
2807
|
+
### CertificateHttpMemcachedChallengeOutputReference <a name="CertificateHttpMemcachedChallengeOutputReference" id="@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference"></a>
|
2808
|
+
|
2809
|
+
#### Initializers <a name="Initializers" id="@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.Initializer"></a>
|
2810
|
+
|
2811
|
+
```java
|
2812
|
+
import com.hashicorp.cdktf.providers.acme.certificate.CertificateHttpMemcachedChallengeOutputReference;
|
2813
|
+
|
2814
|
+
new CertificateHttpMemcachedChallengeOutputReference(IInterpolatingParent terraformResource, java.lang.String terraformAttribute);
|
2815
|
+
```
|
2816
|
+
|
2817
|
+
| **Name** | **Type** | **Description** |
|
2818
|
+
| --- | --- | --- |
|
2819
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.Initializer.parameter.terraformResource">terraformResource</a></code> | <code>com.hashicorp.cdktf.IInterpolatingParent</code> | The parent resource. |
|
2820
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.Initializer.parameter.terraformAttribute">terraformAttribute</a></code> | <code>java.lang.String</code> | The attribute on the parent resource this class is referencing. |
|
2821
|
+
|
2822
|
+
---
|
2823
|
+
|
2824
|
+
##### `terraformResource`<sup>Required</sup> <a name="terraformResource" id="@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.Initializer.parameter.terraformResource"></a>
|
2825
|
+
|
2826
|
+
- *Type:* com.hashicorp.cdktf.IInterpolatingParent
|
2827
|
+
|
2828
|
+
The parent resource.
|
2829
|
+
|
2830
|
+
---
|
2831
|
+
|
2832
|
+
##### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.Initializer.parameter.terraformAttribute"></a>
|
2833
|
+
|
2834
|
+
- *Type:* java.lang.String
|
2835
|
+
|
2836
|
+
The attribute on the parent resource this class is referencing.
|
2837
|
+
|
2838
|
+
---
|
2839
|
+
|
2840
|
+
#### Methods <a name="Methods" id="Methods"></a>
|
2841
|
+
|
2842
|
+
| **Name** | **Description** |
|
2843
|
+
| --- | --- |
|
2844
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.computeFqn">computeFqn</a></code> | *No description.* |
|
2845
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.getAnyMapAttribute">getAnyMapAttribute</a></code> | *No description.* |
|
2846
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.getBooleanAttribute">getBooleanAttribute</a></code> | *No description.* |
|
2847
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.getBooleanMapAttribute">getBooleanMapAttribute</a></code> | *No description.* |
|
2848
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.getListAttribute">getListAttribute</a></code> | *No description.* |
|
2849
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.getNumberAttribute">getNumberAttribute</a></code> | *No description.* |
|
2850
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.getNumberListAttribute">getNumberListAttribute</a></code> | *No description.* |
|
2851
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.getNumberMapAttribute">getNumberMapAttribute</a></code> | *No description.* |
|
2852
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.getStringAttribute">getStringAttribute</a></code> | *No description.* |
|
2853
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.getStringMapAttribute">getStringMapAttribute</a></code> | *No description.* |
|
2854
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.interpolationForAttribute">interpolationForAttribute</a></code> | *No description.* |
|
2855
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.resolve">resolve</a></code> | Produce the Token's value at resolution time. |
|
2856
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.toString">toString</a></code> | Return a string representation of this resolvable object. |
|
2857
|
+
|
2858
|
+
---
|
2859
|
+
|
2860
|
+
##### `computeFqn` <a name="computeFqn" id="@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.computeFqn"></a>
|
2861
|
+
|
2862
|
+
```java
|
2863
|
+
public java.lang.String computeFqn()
|
2864
|
+
```
|
2865
|
+
|
2866
|
+
##### `getAnyMapAttribute` <a name="getAnyMapAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.getAnyMapAttribute"></a>
|
2867
|
+
|
2868
|
+
```java
|
2869
|
+
public java.util.Map<java.lang.String, java.lang.Object> getAnyMapAttribute(java.lang.String terraformAttribute)
|
2870
|
+
```
|
2871
|
+
|
2872
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.getAnyMapAttribute.parameter.terraformAttribute"></a>
|
2873
|
+
|
2874
|
+
- *Type:* java.lang.String
|
2875
|
+
|
2876
|
+
---
|
2877
|
+
|
2878
|
+
##### `getBooleanAttribute` <a name="getBooleanAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.getBooleanAttribute"></a>
|
2879
|
+
|
2880
|
+
```java
|
2881
|
+
public IResolvable getBooleanAttribute(java.lang.String terraformAttribute)
|
2882
|
+
```
|
2883
|
+
|
2884
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.getBooleanAttribute.parameter.terraformAttribute"></a>
|
2885
|
+
|
2886
|
+
- *Type:* java.lang.String
|
2887
|
+
|
2888
|
+
---
|
2889
|
+
|
2890
|
+
##### `getBooleanMapAttribute` <a name="getBooleanMapAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.getBooleanMapAttribute"></a>
|
2891
|
+
|
2892
|
+
```java
|
2893
|
+
public java.util.Map<java.lang.String, java.lang.Boolean> getBooleanMapAttribute(java.lang.String terraformAttribute)
|
2894
|
+
```
|
2895
|
+
|
2896
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.getBooleanMapAttribute.parameter.terraformAttribute"></a>
|
2897
|
+
|
2898
|
+
- *Type:* java.lang.String
|
2899
|
+
|
2900
|
+
---
|
2901
|
+
|
2902
|
+
##### `getListAttribute` <a name="getListAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.getListAttribute"></a>
|
2903
|
+
|
2904
|
+
```java
|
2905
|
+
public java.util.List<java.lang.String> getListAttribute(java.lang.String terraformAttribute)
|
2906
|
+
```
|
2907
|
+
|
2908
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.getListAttribute.parameter.terraformAttribute"></a>
|
2909
|
+
|
2910
|
+
- *Type:* java.lang.String
|
2911
|
+
|
2912
|
+
---
|
2913
|
+
|
2914
|
+
##### `getNumberAttribute` <a name="getNumberAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.getNumberAttribute"></a>
|
2915
|
+
|
2916
|
+
```java
|
2917
|
+
public java.lang.Number getNumberAttribute(java.lang.String terraformAttribute)
|
2918
|
+
```
|
2919
|
+
|
2920
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.getNumberAttribute.parameter.terraformAttribute"></a>
|
2921
|
+
|
2922
|
+
- *Type:* java.lang.String
|
2923
|
+
|
2924
|
+
---
|
2925
|
+
|
2926
|
+
##### `getNumberListAttribute` <a name="getNumberListAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.getNumberListAttribute"></a>
|
2927
|
+
|
2928
|
+
```java
|
2929
|
+
public java.util.List<java.lang.Number> getNumberListAttribute(java.lang.String terraformAttribute)
|
2930
|
+
```
|
2931
|
+
|
2932
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.getNumberListAttribute.parameter.terraformAttribute"></a>
|
2933
|
+
|
2934
|
+
- *Type:* java.lang.String
|
2935
|
+
|
2936
|
+
---
|
2937
|
+
|
2938
|
+
##### `getNumberMapAttribute` <a name="getNumberMapAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.getNumberMapAttribute"></a>
|
2939
|
+
|
2940
|
+
```java
|
2941
|
+
public java.util.Map<java.lang.String, java.lang.Number> getNumberMapAttribute(java.lang.String terraformAttribute)
|
2942
|
+
```
|
2943
|
+
|
2944
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.getNumberMapAttribute.parameter.terraformAttribute"></a>
|
2945
|
+
|
2946
|
+
- *Type:* java.lang.String
|
2947
|
+
|
2948
|
+
---
|
2949
|
+
|
2950
|
+
##### `getStringAttribute` <a name="getStringAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.getStringAttribute"></a>
|
2951
|
+
|
2952
|
+
```java
|
2953
|
+
public java.lang.String getStringAttribute(java.lang.String terraformAttribute)
|
2954
|
+
```
|
2955
|
+
|
2956
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.getStringAttribute.parameter.terraformAttribute"></a>
|
2957
|
+
|
2958
|
+
- *Type:* java.lang.String
|
2959
|
+
|
2960
|
+
---
|
2961
|
+
|
2962
|
+
##### `getStringMapAttribute` <a name="getStringMapAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.getStringMapAttribute"></a>
|
2963
|
+
|
2964
|
+
```java
|
2965
|
+
public java.util.Map<java.lang.String, java.lang.String> getStringMapAttribute(java.lang.String terraformAttribute)
|
2966
|
+
```
|
2967
|
+
|
2968
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.getStringMapAttribute.parameter.terraformAttribute"></a>
|
2969
|
+
|
2970
|
+
- *Type:* java.lang.String
|
2971
|
+
|
2972
|
+
---
|
2973
|
+
|
2974
|
+
##### `interpolationForAttribute` <a name="interpolationForAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.interpolationForAttribute"></a>
|
2975
|
+
|
2976
|
+
```java
|
2977
|
+
public IResolvable interpolationForAttribute(java.lang.String property)
|
2978
|
+
```
|
2979
|
+
|
2980
|
+
###### `property`<sup>Required</sup> <a name="property" id="@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.interpolationForAttribute.parameter.property"></a>
|
2981
|
+
|
2982
|
+
- *Type:* java.lang.String
|
2983
|
+
|
2984
|
+
---
|
2985
|
+
|
2986
|
+
##### `resolve` <a name="resolve" id="@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.resolve"></a>
|
2987
|
+
|
2988
|
+
```java
|
2989
|
+
public java.lang.Object resolve(IResolveContext _context)
|
2990
|
+
```
|
2991
|
+
|
2992
|
+
Produce the Token's value at resolution time.
|
2993
|
+
|
2994
|
+
###### `_context`<sup>Required</sup> <a name="_context" id="@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.resolve.parameter._context"></a>
|
2995
|
+
|
2996
|
+
- *Type:* com.hashicorp.cdktf.IResolveContext
|
2997
|
+
|
2998
|
+
---
|
2999
|
+
|
3000
|
+
##### `toString` <a name="toString" id="@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.toString"></a>
|
3001
|
+
|
3002
|
+
```java
|
3003
|
+
public java.lang.String toString()
|
3004
|
+
```
|
3005
|
+
|
3006
|
+
Return a string representation of this resolvable object.
|
3007
|
+
|
3008
|
+
Returns a reversible string representation.
|
3009
|
+
|
3010
|
+
|
3011
|
+
#### Properties <a name="Properties" id="Properties"></a>
|
3012
|
+
|
3013
|
+
| **Name** | **Type** | **Description** |
|
3014
|
+
| --- | --- | --- |
|
3015
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.property.creationStack">creationStack</a></code> | <code>java.util.List<java.lang.String></code> | The creation stack of this resolvable which will be appended to errors thrown during resolution. |
|
3016
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.property.fqn">fqn</a></code> | <code>java.lang.String</code> | *No description.* |
|
3017
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.property.hostsInput">hostsInput</a></code> | <code>java.util.List<java.lang.String></code> | *No description.* |
|
3018
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.property.hosts">hosts</a></code> | <code>java.util.List<java.lang.String></code> | *No description.* |
|
3019
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.property.internalValue">internalValue</a></code> | <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallenge">CertificateHttpMemcachedChallenge</a></code> | *No description.* |
|
3020
|
+
|
3021
|
+
---
|
3022
|
+
|
3023
|
+
##### `creationStack`<sup>Required</sup> <a name="creationStack" id="@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.property.creationStack"></a>
|
3024
|
+
|
3025
|
+
```java
|
3026
|
+
public java.util.List<java.lang.String> getCreationStack();
|
3027
|
+
```
|
3028
|
+
|
3029
|
+
- *Type:* java.util.List<java.lang.String>
|
3030
|
+
|
3031
|
+
The creation stack of this resolvable which will be appended to errors thrown during resolution.
|
3032
|
+
|
3033
|
+
If this returns an empty array the stack will not be attached.
|
3034
|
+
|
3035
|
+
---
|
3036
|
+
|
3037
|
+
##### `fqn`<sup>Required</sup> <a name="fqn" id="@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.property.fqn"></a>
|
3038
|
+
|
3039
|
+
```java
|
3040
|
+
public java.lang.String getFqn();
|
3041
|
+
```
|
3042
|
+
|
3043
|
+
- *Type:* java.lang.String
|
3044
|
+
|
3045
|
+
---
|
3046
|
+
|
3047
|
+
##### `hostsInput`<sup>Optional</sup> <a name="hostsInput" id="@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.property.hostsInput"></a>
|
3048
|
+
|
3049
|
+
```java
|
3050
|
+
public java.util.List<java.lang.String> getHostsInput();
|
3051
|
+
```
|
3052
|
+
|
3053
|
+
- *Type:* java.util.List<java.lang.String>
|
3054
|
+
|
3055
|
+
---
|
3056
|
+
|
3057
|
+
##### `hosts`<sup>Required</sup> <a name="hosts" id="@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.property.hosts"></a>
|
3058
|
+
|
3059
|
+
```java
|
3060
|
+
public java.util.List<java.lang.String> getHosts();
|
3061
|
+
```
|
3062
|
+
|
3063
|
+
- *Type:* java.util.List<java.lang.String>
|
3064
|
+
|
3065
|
+
---
|
3066
|
+
|
3067
|
+
##### `internalValue`<sup>Optional</sup> <a name="internalValue" id="@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallengeOutputReference.property.internalValue"></a>
|
3068
|
+
|
3069
|
+
```java
|
3070
|
+
public CertificateHttpMemcachedChallenge getInternalValue();
|
3071
|
+
```
|
3072
|
+
|
3073
|
+
- *Type:* <a href="#@cdktf/provider-acme.certificate.CertificateHttpMemcachedChallenge">CertificateHttpMemcachedChallenge</a>
|
3074
|
+
|
3075
|
+
---
|
3076
|
+
|
3077
|
+
|
3078
|
+
### CertificateHttpWebrootChallengeOutputReference <a name="CertificateHttpWebrootChallengeOutputReference" id="@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference"></a>
|
3079
|
+
|
3080
|
+
#### Initializers <a name="Initializers" id="@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.Initializer"></a>
|
3081
|
+
|
3082
|
+
```java
|
3083
|
+
import com.hashicorp.cdktf.providers.acme.certificate.CertificateHttpWebrootChallengeOutputReference;
|
3084
|
+
|
3085
|
+
new CertificateHttpWebrootChallengeOutputReference(IInterpolatingParent terraformResource, java.lang.String terraformAttribute);
|
3086
|
+
```
|
3087
|
+
|
3088
|
+
| **Name** | **Type** | **Description** |
|
3089
|
+
| --- | --- | --- |
|
3090
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.Initializer.parameter.terraformResource">terraformResource</a></code> | <code>com.hashicorp.cdktf.IInterpolatingParent</code> | The parent resource. |
|
3091
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.Initializer.parameter.terraformAttribute">terraformAttribute</a></code> | <code>java.lang.String</code> | The attribute on the parent resource this class is referencing. |
|
3092
|
+
|
3093
|
+
---
|
3094
|
+
|
3095
|
+
##### `terraformResource`<sup>Required</sup> <a name="terraformResource" id="@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.Initializer.parameter.terraformResource"></a>
|
3096
|
+
|
3097
|
+
- *Type:* com.hashicorp.cdktf.IInterpolatingParent
|
3098
|
+
|
3099
|
+
The parent resource.
|
3100
|
+
|
3101
|
+
---
|
3102
|
+
|
3103
|
+
##### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.Initializer.parameter.terraformAttribute"></a>
|
3104
|
+
|
3105
|
+
- *Type:* java.lang.String
|
3106
|
+
|
3107
|
+
The attribute on the parent resource this class is referencing.
|
3108
|
+
|
3109
|
+
---
|
3110
|
+
|
3111
|
+
#### Methods <a name="Methods" id="Methods"></a>
|
3112
|
+
|
3113
|
+
| **Name** | **Description** |
|
3114
|
+
| --- | --- |
|
3115
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.computeFqn">computeFqn</a></code> | *No description.* |
|
3116
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.getAnyMapAttribute">getAnyMapAttribute</a></code> | *No description.* |
|
3117
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.getBooleanAttribute">getBooleanAttribute</a></code> | *No description.* |
|
3118
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.getBooleanMapAttribute">getBooleanMapAttribute</a></code> | *No description.* |
|
3119
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.getListAttribute">getListAttribute</a></code> | *No description.* |
|
3120
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.getNumberAttribute">getNumberAttribute</a></code> | *No description.* |
|
3121
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.getNumberListAttribute">getNumberListAttribute</a></code> | *No description.* |
|
3122
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.getNumberMapAttribute">getNumberMapAttribute</a></code> | *No description.* |
|
3123
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.getStringAttribute">getStringAttribute</a></code> | *No description.* |
|
3124
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.getStringMapAttribute">getStringMapAttribute</a></code> | *No description.* |
|
3125
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.interpolationForAttribute">interpolationForAttribute</a></code> | *No description.* |
|
3126
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.resolve">resolve</a></code> | Produce the Token's value at resolution time. |
|
3127
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.toString">toString</a></code> | Return a string representation of this resolvable object. |
|
3128
|
+
|
3129
|
+
---
|
3130
|
+
|
3131
|
+
##### `computeFqn` <a name="computeFqn" id="@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.computeFqn"></a>
|
3132
|
+
|
3133
|
+
```java
|
3134
|
+
public java.lang.String computeFqn()
|
3135
|
+
```
|
3136
|
+
|
3137
|
+
##### `getAnyMapAttribute` <a name="getAnyMapAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.getAnyMapAttribute"></a>
|
3138
|
+
|
3139
|
+
```java
|
3140
|
+
public java.util.Map<java.lang.String, java.lang.Object> getAnyMapAttribute(java.lang.String terraformAttribute)
|
3141
|
+
```
|
3142
|
+
|
3143
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.getAnyMapAttribute.parameter.terraformAttribute"></a>
|
3144
|
+
|
3145
|
+
- *Type:* java.lang.String
|
3146
|
+
|
3147
|
+
---
|
3148
|
+
|
3149
|
+
##### `getBooleanAttribute` <a name="getBooleanAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.getBooleanAttribute"></a>
|
3150
|
+
|
3151
|
+
```java
|
3152
|
+
public IResolvable getBooleanAttribute(java.lang.String terraformAttribute)
|
3153
|
+
```
|
3154
|
+
|
3155
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.getBooleanAttribute.parameter.terraformAttribute"></a>
|
3156
|
+
|
3157
|
+
- *Type:* java.lang.String
|
3158
|
+
|
3159
|
+
---
|
3160
|
+
|
3161
|
+
##### `getBooleanMapAttribute` <a name="getBooleanMapAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.getBooleanMapAttribute"></a>
|
3162
|
+
|
3163
|
+
```java
|
3164
|
+
public java.util.Map<java.lang.String, java.lang.Boolean> getBooleanMapAttribute(java.lang.String terraformAttribute)
|
3165
|
+
```
|
3166
|
+
|
3167
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.getBooleanMapAttribute.parameter.terraformAttribute"></a>
|
3168
|
+
|
3169
|
+
- *Type:* java.lang.String
|
3170
|
+
|
3171
|
+
---
|
3172
|
+
|
3173
|
+
##### `getListAttribute` <a name="getListAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.getListAttribute"></a>
|
3174
|
+
|
3175
|
+
```java
|
3176
|
+
public java.util.List<java.lang.String> getListAttribute(java.lang.String terraformAttribute)
|
3177
|
+
```
|
3178
|
+
|
3179
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.getListAttribute.parameter.terraformAttribute"></a>
|
3180
|
+
|
3181
|
+
- *Type:* java.lang.String
|
3182
|
+
|
3183
|
+
---
|
3184
|
+
|
3185
|
+
##### `getNumberAttribute` <a name="getNumberAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.getNumberAttribute"></a>
|
3186
|
+
|
3187
|
+
```java
|
3188
|
+
public java.lang.Number getNumberAttribute(java.lang.String terraformAttribute)
|
3189
|
+
```
|
3190
|
+
|
3191
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.getNumberAttribute.parameter.terraformAttribute"></a>
|
3192
|
+
|
3193
|
+
- *Type:* java.lang.String
|
3194
|
+
|
3195
|
+
---
|
3196
|
+
|
3197
|
+
##### `getNumberListAttribute` <a name="getNumberListAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.getNumberListAttribute"></a>
|
3198
|
+
|
3199
|
+
```java
|
3200
|
+
public java.util.List<java.lang.Number> getNumberListAttribute(java.lang.String terraformAttribute)
|
3201
|
+
```
|
3202
|
+
|
3203
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.getNumberListAttribute.parameter.terraformAttribute"></a>
|
3204
|
+
|
3205
|
+
- *Type:* java.lang.String
|
3206
|
+
|
3207
|
+
---
|
3208
|
+
|
3209
|
+
##### `getNumberMapAttribute` <a name="getNumberMapAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.getNumberMapAttribute"></a>
|
3210
|
+
|
3211
|
+
```java
|
3212
|
+
public java.util.Map<java.lang.String, java.lang.Number> getNumberMapAttribute(java.lang.String terraformAttribute)
|
3213
|
+
```
|
3214
|
+
|
3215
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.getNumberMapAttribute.parameter.terraformAttribute"></a>
|
3216
|
+
|
3217
|
+
- *Type:* java.lang.String
|
3218
|
+
|
3219
|
+
---
|
3220
|
+
|
3221
|
+
##### `getStringAttribute` <a name="getStringAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.getStringAttribute"></a>
|
3222
|
+
|
3223
|
+
```java
|
3224
|
+
public java.lang.String getStringAttribute(java.lang.String terraformAttribute)
|
3225
|
+
```
|
3226
|
+
|
3227
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.getStringAttribute.parameter.terraformAttribute"></a>
|
3228
|
+
|
3229
|
+
- *Type:* java.lang.String
|
3230
|
+
|
3231
|
+
---
|
3232
|
+
|
3233
|
+
##### `getStringMapAttribute` <a name="getStringMapAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.getStringMapAttribute"></a>
|
3234
|
+
|
3235
|
+
```java
|
3236
|
+
public java.util.Map<java.lang.String, java.lang.String> getStringMapAttribute(java.lang.String terraformAttribute)
|
3237
|
+
```
|
3238
|
+
|
3239
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.getStringMapAttribute.parameter.terraformAttribute"></a>
|
3240
|
+
|
3241
|
+
- *Type:* java.lang.String
|
3242
|
+
|
3243
|
+
---
|
3244
|
+
|
3245
|
+
##### `interpolationForAttribute` <a name="interpolationForAttribute" id="@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.interpolationForAttribute"></a>
|
3246
|
+
|
3247
|
+
```java
|
3248
|
+
public IResolvable interpolationForAttribute(java.lang.String property)
|
3249
|
+
```
|
3250
|
+
|
3251
|
+
###### `property`<sup>Required</sup> <a name="property" id="@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.interpolationForAttribute.parameter.property"></a>
|
3252
|
+
|
3253
|
+
- *Type:* java.lang.String
|
3254
|
+
|
3255
|
+
---
|
3256
|
+
|
3257
|
+
##### `resolve` <a name="resolve" id="@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.resolve"></a>
|
3258
|
+
|
3259
|
+
```java
|
3260
|
+
public java.lang.Object resolve(IResolveContext _context)
|
3261
|
+
```
|
3262
|
+
|
3263
|
+
Produce the Token's value at resolution time.
|
3264
|
+
|
3265
|
+
###### `_context`<sup>Required</sup> <a name="_context" id="@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.resolve.parameter._context"></a>
|
3266
|
+
|
3267
|
+
- *Type:* com.hashicorp.cdktf.IResolveContext
|
3268
|
+
|
3269
|
+
---
|
3270
|
+
|
3271
|
+
##### `toString` <a name="toString" id="@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.toString"></a>
|
3272
|
+
|
3273
|
+
```java
|
3274
|
+
public java.lang.String toString()
|
3275
|
+
```
|
3276
|
+
|
3277
|
+
Return a string representation of this resolvable object.
|
3278
|
+
|
3279
|
+
Returns a reversible string representation.
|
3280
|
+
|
3281
|
+
|
3282
|
+
#### Properties <a name="Properties" id="Properties"></a>
|
3283
|
+
|
3284
|
+
| **Name** | **Type** | **Description** |
|
3285
|
+
| --- | --- | --- |
|
3286
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.property.creationStack">creationStack</a></code> | <code>java.util.List<java.lang.String></code> | The creation stack of this resolvable which will be appended to errors thrown during resolution. |
|
3287
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.property.fqn">fqn</a></code> | <code>java.lang.String</code> | *No description.* |
|
3288
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.property.directoryInput">directoryInput</a></code> | <code>java.lang.String</code> | *No description.* |
|
3289
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.property.directory">directory</a></code> | <code>java.lang.String</code> | *No description.* |
|
3290
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.property.internalValue">internalValue</a></code> | <code><a href="#@cdktf/provider-acme.certificate.CertificateHttpWebrootChallenge">CertificateHttpWebrootChallenge</a></code> | *No description.* |
|
3291
|
+
|
3292
|
+
---
|
3293
|
+
|
3294
|
+
##### `creationStack`<sup>Required</sup> <a name="creationStack" id="@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.property.creationStack"></a>
|
3295
|
+
|
3296
|
+
```java
|
3297
|
+
public java.util.List<java.lang.String> getCreationStack();
|
3298
|
+
```
|
3299
|
+
|
3300
|
+
- *Type:* java.util.List<java.lang.String>
|
3301
|
+
|
3302
|
+
The creation stack of this resolvable which will be appended to errors thrown during resolution.
|
3303
|
+
|
3304
|
+
If this returns an empty array the stack will not be attached.
|
3305
|
+
|
3306
|
+
---
|
3307
|
+
|
3308
|
+
##### `fqn`<sup>Required</sup> <a name="fqn" id="@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.property.fqn"></a>
|
3309
|
+
|
3310
|
+
```java
|
3311
|
+
public java.lang.String getFqn();
|
3312
|
+
```
|
3313
|
+
|
3314
|
+
- *Type:* java.lang.String
|
3315
|
+
|
3316
|
+
---
|
3317
|
+
|
3318
|
+
##### `directoryInput`<sup>Optional</sup> <a name="directoryInput" id="@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.property.directoryInput"></a>
|
3319
|
+
|
3320
|
+
```java
|
3321
|
+
public java.lang.String getDirectoryInput();
|
3322
|
+
```
|
3323
|
+
|
3324
|
+
- *Type:* java.lang.String
|
3325
|
+
|
3326
|
+
---
|
3327
|
+
|
3328
|
+
##### `directory`<sup>Required</sup> <a name="directory" id="@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.property.directory"></a>
|
3329
|
+
|
3330
|
+
```java
|
3331
|
+
public java.lang.String getDirectory();
|
3332
|
+
```
|
3333
|
+
|
3334
|
+
- *Type:* java.lang.String
|
3335
|
+
|
3336
|
+
---
|
3337
|
+
|
3338
|
+
##### `internalValue`<sup>Optional</sup> <a name="internalValue" id="@cdktf/provider-acme.certificate.CertificateHttpWebrootChallengeOutputReference.property.internalValue"></a>
|
3339
|
+
|
3340
|
+
```java
|
3341
|
+
public CertificateHttpWebrootChallenge getInternalValue();
|
3342
|
+
```
|
3343
|
+
|
3344
|
+
- *Type:* <a href="#@cdktf/provider-acme.certificate.CertificateHttpWebrootChallenge">CertificateHttpWebrootChallenge</a>
|
3345
|
+
|
3346
|
+
---
|
3347
|
+
|
3348
|
+
|
3349
|
+
### CertificateTlsChallengeOutputReference <a name="CertificateTlsChallengeOutputReference" id="@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference"></a>
|
3350
|
+
|
3351
|
+
#### Initializers <a name="Initializers" id="@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.Initializer"></a>
|
3352
|
+
|
3353
|
+
```java
|
3354
|
+
import com.hashicorp.cdktf.providers.acme.certificate.CertificateTlsChallengeOutputReference;
|
3355
|
+
|
3356
|
+
new CertificateTlsChallengeOutputReference(IInterpolatingParent terraformResource, java.lang.String terraformAttribute);
|
3357
|
+
```
|
3358
|
+
|
3359
|
+
| **Name** | **Type** | **Description** |
|
3360
|
+
| --- | --- | --- |
|
3361
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.Initializer.parameter.terraformResource">terraformResource</a></code> | <code>com.hashicorp.cdktf.IInterpolatingParent</code> | The parent resource. |
|
3362
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.Initializer.parameter.terraformAttribute">terraformAttribute</a></code> | <code>java.lang.String</code> | The attribute on the parent resource this class is referencing. |
|
3363
|
+
|
3364
|
+
---
|
3365
|
+
|
3366
|
+
##### `terraformResource`<sup>Required</sup> <a name="terraformResource" id="@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.Initializer.parameter.terraformResource"></a>
|
3367
|
+
|
3368
|
+
- *Type:* com.hashicorp.cdktf.IInterpolatingParent
|
3369
|
+
|
3370
|
+
The parent resource.
|
3371
|
+
|
3372
|
+
---
|
3373
|
+
|
3374
|
+
##### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.Initializer.parameter.terraformAttribute"></a>
|
3375
|
+
|
3376
|
+
- *Type:* java.lang.String
|
3377
|
+
|
3378
|
+
The attribute on the parent resource this class is referencing.
|
3379
|
+
|
3380
|
+
---
|
3381
|
+
|
3382
|
+
#### Methods <a name="Methods" id="Methods"></a>
|
3383
|
+
|
3384
|
+
| **Name** | **Description** |
|
3385
|
+
| --- | --- |
|
3386
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.computeFqn">computeFqn</a></code> | *No description.* |
|
3387
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.getAnyMapAttribute">getAnyMapAttribute</a></code> | *No description.* |
|
3388
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.getBooleanAttribute">getBooleanAttribute</a></code> | *No description.* |
|
3389
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.getBooleanMapAttribute">getBooleanMapAttribute</a></code> | *No description.* |
|
3390
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.getListAttribute">getListAttribute</a></code> | *No description.* |
|
3391
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.getNumberAttribute">getNumberAttribute</a></code> | *No description.* |
|
3392
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.getNumberListAttribute">getNumberListAttribute</a></code> | *No description.* |
|
3393
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.getNumberMapAttribute">getNumberMapAttribute</a></code> | *No description.* |
|
3394
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.getStringAttribute">getStringAttribute</a></code> | *No description.* |
|
3395
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.getStringMapAttribute">getStringMapAttribute</a></code> | *No description.* |
|
3396
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.interpolationForAttribute">interpolationForAttribute</a></code> | *No description.* |
|
3397
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.resolve">resolve</a></code> | Produce the Token's value at resolution time. |
|
3398
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.toString">toString</a></code> | Return a string representation of this resolvable object. |
|
3399
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.resetPort">resetPort</a></code> | *No description.* |
|
3400
|
+
|
3401
|
+
---
|
3402
|
+
|
3403
|
+
##### `computeFqn` <a name="computeFqn" id="@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.computeFqn"></a>
|
3404
|
+
|
3405
|
+
```java
|
3406
|
+
public java.lang.String computeFqn()
|
3407
|
+
```
|
3408
|
+
|
3409
|
+
##### `getAnyMapAttribute` <a name="getAnyMapAttribute" id="@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.getAnyMapAttribute"></a>
|
3410
|
+
|
3411
|
+
```java
|
3412
|
+
public java.util.Map<java.lang.String, java.lang.Object> getAnyMapAttribute(java.lang.String terraformAttribute)
|
3413
|
+
```
|
3414
|
+
|
3415
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.getAnyMapAttribute.parameter.terraformAttribute"></a>
|
3416
|
+
|
3417
|
+
- *Type:* java.lang.String
|
3418
|
+
|
3419
|
+
---
|
3420
|
+
|
3421
|
+
##### `getBooleanAttribute` <a name="getBooleanAttribute" id="@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.getBooleanAttribute"></a>
|
3422
|
+
|
3423
|
+
```java
|
3424
|
+
public IResolvable getBooleanAttribute(java.lang.String terraformAttribute)
|
3425
|
+
```
|
3426
|
+
|
3427
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.getBooleanAttribute.parameter.terraformAttribute"></a>
|
3428
|
+
|
3429
|
+
- *Type:* java.lang.String
|
3430
|
+
|
3431
|
+
---
|
3432
|
+
|
3433
|
+
##### `getBooleanMapAttribute` <a name="getBooleanMapAttribute" id="@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.getBooleanMapAttribute"></a>
|
3434
|
+
|
3435
|
+
```java
|
3436
|
+
public java.util.Map<java.lang.String, java.lang.Boolean> getBooleanMapAttribute(java.lang.String terraformAttribute)
|
3437
|
+
```
|
3438
|
+
|
3439
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.getBooleanMapAttribute.parameter.terraformAttribute"></a>
|
3440
|
+
|
3441
|
+
- *Type:* java.lang.String
|
3442
|
+
|
3443
|
+
---
|
3444
|
+
|
3445
|
+
##### `getListAttribute` <a name="getListAttribute" id="@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.getListAttribute"></a>
|
3446
|
+
|
3447
|
+
```java
|
3448
|
+
public java.util.List<java.lang.String> getListAttribute(java.lang.String terraformAttribute)
|
3449
|
+
```
|
3450
|
+
|
3451
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.getListAttribute.parameter.terraformAttribute"></a>
|
3452
|
+
|
3453
|
+
- *Type:* java.lang.String
|
3454
|
+
|
3455
|
+
---
|
3456
|
+
|
3457
|
+
##### `getNumberAttribute` <a name="getNumberAttribute" id="@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.getNumberAttribute"></a>
|
3458
|
+
|
3459
|
+
```java
|
3460
|
+
public java.lang.Number getNumberAttribute(java.lang.String terraformAttribute)
|
3461
|
+
```
|
3462
|
+
|
3463
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.getNumberAttribute.parameter.terraformAttribute"></a>
|
3464
|
+
|
3465
|
+
- *Type:* java.lang.String
|
3466
|
+
|
3467
|
+
---
|
3468
|
+
|
3469
|
+
##### `getNumberListAttribute` <a name="getNumberListAttribute" id="@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.getNumberListAttribute"></a>
|
3470
|
+
|
3471
|
+
```java
|
3472
|
+
public java.util.List<java.lang.Number> getNumberListAttribute(java.lang.String terraformAttribute)
|
3473
|
+
```
|
3474
|
+
|
3475
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.getNumberListAttribute.parameter.terraformAttribute"></a>
|
3476
|
+
|
3477
|
+
- *Type:* java.lang.String
|
3478
|
+
|
3479
|
+
---
|
3480
|
+
|
3481
|
+
##### `getNumberMapAttribute` <a name="getNumberMapAttribute" id="@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.getNumberMapAttribute"></a>
|
3482
|
+
|
3483
|
+
```java
|
3484
|
+
public java.util.Map<java.lang.String, java.lang.Number> getNumberMapAttribute(java.lang.String terraformAttribute)
|
3485
|
+
```
|
3486
|
+
|
3487
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.getNumberMapAttribute.parameter.terraformAttribute"></a>
|
3488
|
+
|
3489
|
+
- *Type:* java.lang.String
|
3490
|
+
|
3491
|
+
---
|
3492
|
+
|
3493
|
+
##### `getStringAttribute` <a name="getStringAttribute" id="@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.getStringAttribute"></a>
|
3494
|
+
|
3495
|
+
```java
|
3496
|
+
public java.lang.String getStringAttribute(java.lang.String terraformAttribute)
|
3497
|
+
```
|
3498
|
+
|
3499
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.getStringAttribute.parameter.terraformAttribute"></a>
|
3500
|
+
|
3501
|
+
- *Type:* java.lang.String
|
3502
|
+
|
3503
|
+
---
|
3504
|
+
|
3505
|
+
##### `getStringMapAttribute` <a name="getStringMapAttribute" id="@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.getStringMapAttribute"></a>
|
3506
|
+
|
3507
|
+
```java
|
3508
|
+
public java.util.Map<java.lang.String, java.lang.String> getStringMapAttribute(java.lang.String terraformAttribute)
|
3509
|
+
```
|
3510
|
+
|
3511
|
+
###### `terraformAttribute`<sup>Required</sup> <a name="terraformAttribute" id="@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.getStringMapAttribute.parameter.terraformAttribute"></a>
|
3512
|
+
|
3513
|
+
- *Type:* java.lang.String
|
3514
|
+
|
3515
|
+
---
|
3516
|
+
|
3517
|
+
##### `interpolationForAttribute` <a name="interpolationForAttribute" id="@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.interpolationForAttribute"></a>
|
3518
|
+
|
3519
|
+
```java
|
3520
|
+
public IResolvable interpolationForAttribute(java.lang.String property)
|
3521
|
+
```
|
3522
|
+
|
3523
|
+
###### `property`<sup>Required</sup> <a name="property" id="@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.interpolationForAttribute.parameter.property"></a>
|
3524
|
+
|
3525
|
+
- *Type:* java.lang.String
|
3526
|
+
|
3527
|
+
---
|
3528
|
+
|
3529
|
+
##### `resolve` <a name="resolve" id="@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.resolve"></a>
|
3530
|
+
|
3531
|
+
```java
|
3532
|
+
public java.lang.Object resolve(IResolveContext _context)
|
3533
|
+
```
|
3534
|
+
|
3535
|
+
Produce the Token's value at resolution time.
|
3536
|
+
|
3537
|
+
###### `_context`<sup>Required</sup> <a name="_context" id="@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.resolve.parameter._context"></a>
|
3538
|
+
|
3539
|
+
- *Type:* com.hashicorp.cdktf.IResolveContext
|
3540
|
+
|
3541
|
+
---
|
3542
|
+
|
3543
|
+
##### `toString` <a name="toString" id="@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.toString"></a>
|
3544
|
+
|
3545
|
+
```java
|
3546
|
+
public java.lang.String toString()
|
3547
|
+
```
|
3548
|
+
|
3549
|
+
Return a string representation of this resolvable object.
|
3550
|
+
|
3551
|
+
Returns a reversible string representation.
|
3552
|
+
|
3553
|
+
##### `resetPort` <a name="resetPort" id="@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.resetPort"></a>
|
3554
|
+
|
3555
|
+
```java
|
3556
|
+
public void resetPort()
|
3557
|
+
```
|
3558
|
+
|
3559
|
+
|
3560
|
+
#### Properties <a name="Properties" id="Properties"></a>
|
3561
|
+
|
3562
|
+
| **Name** | **Type** | **Description** |
|
3563
|
+
| --- | --- | --- |
|
3564
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.property.creationStack">creationStack</a></code> | <code>java.util.List<java.lang.String></code> | The creation stack of this resolvable which will be appended to errors thrown during resolution. |
|
3565
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.property.fqn">fqn</a></code> | <code>java.lang.String</code> | *No description.* |
|
3566
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.property.portInput">portInput</a></code> | <code>java.lang.Number</code> | *No description.* |
|
3567
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.property.port">port</a></code> | <code>java.lang.Number</code> | *No description.* |
|
3568
|
+
| <code><a href="#@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.property.internalValue">internalValue</a></code> | <code><a href="#@cdktf/provider-acme.certificate.CertificateTlsChallenge">CertificateTlsChallenge</a></code> | *No description.* |
|
3569
|
+
|
3570
|
+
---
|
3571
|
+
|
3572
|
+
##### `creationStack`<sup>Required</sup> <a name="creationStack" id="@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.property.creationStack"></a>
|
3573
|
+
|
3574
|
+
```java
|
3575
|
+
public java.util.List<java.lang.String> getCreationStack();
|
3576
|
+
```
|
3577
|
+
|
3578
|
+
- *Type:* java.util.List<java.lang.String>
|
3579
|
+
|
3580
|
+
The creation stack of this resolvable which will be appended to errors thrown during resolution.
|
3581
|
+
|
3582
|
+
If this returns an empty array the stack will not be attached.
|
3583
|
+
|
3584
|
+
---
|
3585
|
+
|
3586
|
+
##### `fqn`<sup>Required</sup> <a name="fqn" id="@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.property.fqn"></a>
|
3587
|
+
|
3588
|
+
```java
|
3589
|
+
public java.lang.String getFqn();
|
3590
|
+
```
|
3591
|
+
|
3592
|
+
- *Type:* java.lang.String
|
3593
|
+
|
3594
|
+
---
|
3595
|
+
|
3596
|
+
##### `portInput`<sup>Optional</sup> <a name="portInput" id="@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.property.portInput"></a>
|
3597
|
+
|
3598
|
+
```java
|
3599
|
+
public java.lang.Number getPortInput();
|
3600
|
+
```
|
3601
|
+
|
3602
|
+
- *Type:* java.lang.Number
|
3603
|
+
|
3604
|
+
---
|
3605
|
+
|
3606
|
+
##### `port`<sup>Required</sup> <a name="port" id="@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.property.port"></a>
|
3607
|
+
|
3608
|
+
```java
|
3609
|
+
public java.lang.Number getPort();
|
3610
|
+
```
|
3611
|
+
|
3612
|
+
- *Type:* java.lang.Number
|
3613
|
+
|
3614
|
+
---
|
3615
|
+
|
3616
|
+
##### `internalValue`<sup>Optional</sup> <a name="internalValue" id="@cdktf/provider-acme.certificate.CertificateTlsChallengeOutputReference.property.internalValue"></a>
|
3617
|
+
|
3618
|
+
```java
|
3619
|
+
public CertificateTlsChallenge getInternalValue();
|
3620
|
+
```
|
3621
|
+
|
3622
|
+
- *Type:* <a href="#@cdktf/provider-acme.certificate.CertificateTlsChallenge">CertificateTlsChallenge</a>
|
3623
|
+
|
3624
|
+
---
|
3625
|
+
|
3626
|
+
|
3627
|
+
|