aws-sdk-acmpca 1.64.0 → 1.65.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/errors.rbs ADDED
@@ -0,0 +1,73 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module ACMPCA
10
+ module Errors
11
+ class ServiceError < ::Aws::Errors::ServiceError
12
+ end
13
+
14
+ class CertificateMismatchException < ::Aws::Errors::ServiceError
15
+ def message: () -> ::String
16
+ end
17
+ class ConcurrentModificationException < ::Aws::Errors::ServiceError
18
+ def message: () -> ::String
19
+ end
20
+ class InvalidArgsException < ::Aws::Errors::ServiceError
21
+ def message: () -> ::String
22
+ end
23
+ class InvalidArnException < ::Aws::Errors::ServiceError
24
+ def message: () -> ::String
25
+ end
26
+ class InvalidNextTokenException < ::Aws::Errors::ServiceError
27
+ def message: () -> ::String
28
+ end
29
+ class InvalidPolicyException < ::Aws::Errors::ServiceError
30
+ def message: () -> ::String
31
+ end
32
+ class InvalidRequestException < ::Aws::Errors::ServiceError
33
+ def message: () -> ::String
34
+ end
35
+ class InvalidStateException < ::Aws::Errors::ServiceError
36
+ def message: () -> ::String
37
+ end
38
+ class InvalidTagException < ::Aws::Errors::ServiceError
39
+ def message: () -> ::String
40
+ end
41
+ class LimitExceededException < ::Aws::Errors::ServiceError
42
+ def message: () -> ::String
43
+ end
44
+ class LockoutPreventedException < ::Aws::Errors::ServiceError
45
+ def message: () -> ::String
46
+ end
47
+ class MalformedCSRException < ::Aws::Errors::ServiceError
48
+ def message: () -> ::String
49
+ end
50
+ class MalformedCertificateException < ::Aws::Errors::ServiceError
51
+ def message: () -> ::String
52
+ end
53
+ class PermissionAlreadyExistsException < ::Aws::Errors::ServiceError
54
+ def message: () -> ::String
55
+ end
56
+ class RequestAlreadyProcessedException < ::Aws::Errors::ServiceError
57
+ def message: () -> ::String
58
+ end
59
+ class RequestFailedException < ::Aws::Errors::ServiceError
60
+ def message: () -> ::String
61
+ end
62
+ class RequestInProgressException < ::Aws::Errors::ServiceError
63
+ def message: () -> ::String
64
+ end
65
+ class ResourceNotFoundException < ::Aws::Errors::ServiceError
66
+ def message: () -> ::String
67
+ end
68
+ class TooManyTagsException < ::Aws::Errors::ServiceError
69
+ def message: () -> ::String
70
+ end
71
+ end
72
+ end
73
+ end
data/sig/resource.rbs ADDED
@@ -0,0 +1,80 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module ACMPCA
10
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ACMPCA/Resource.html
11
+ class Resource
12
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ACMPCA/Resource.html#initialize-instance_method
13
+ def initialize: (
14
+ ?client: Client,
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?simple_json: bool,
52
+ ?stub_responses: untyped,
53
+ ?token_provider: untyped,
54
+ ?use_dualstack_endpoint: bool,
55
+ ?use_fips_endpoint: bool,
56
+ ?validate_params: bool,
57
+ ?endpoint_provider: untyped,
58
+ ?http_proxy: String,
59
+ ?http_open_timeout: (Float | Integer),
60
+ ?http_read_timeout: (Float | Integer),
61
+ ?http_idle_timeout: (Float | Integer),
62
+ ?http_continue_timeout: (Float | Integer),
63
+ ?ssl_timeout: (Float | Integer | nil),
64
+ ?http_wire_trace: bool,
65
+ ?ssl_verify_peer: bool,
66
+ ?ssl_ca_bundle: String,
67
+ ?ssl_ca_directory: String,
68
+ ?ssl_ca_store: String,
69
+ ?on_chunk_received: Proc,
70
+ ?on_chunk_sent: Proc,
71
+ ?raise_response_errors: bool
72
+ ) -> void
73
+ | (?Hash[Symbol, untyped]) -> void
74
+
75
+ def client: () -> Client
76
+
77
+
78
+ end
79
+ end
80
+ end
data/sig/types.rbs ADDED
@@ -0,0 +1,529 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws::ACMPCA
9
+ module Types
10
+
11
+ class ASN1Subject
12
+ attr_accessor country: ::String
13
+ attr_accessor organization: ::String
14
+ attr_accessor organizational_unit: ::String
15
+ attr_accessor distinguished_name_qualifier: ::String
16
+ attr_accessor state: ::String
17
+ attr_accessor common_name: ::String
18
+ attr_accessor serial_number: ::String
19
+ attr_accessor locality: ::String
20
+ attr_accessor title: ::String
21
+ attr_accessor surname: ::String
22
+ attr_accessor given_name: ::String
23
+ attr_accessor initials: ::String
24
+ attr_accessor pseudonym: ::String
25
+ attr_accessor generation_qualifier: ::String
26
+ attr_accessor custom_attributes: ::Array[Types::CustomAttribute]
27
+ SENSITIVE: []
28
+ end
29
+
30
+ class AccessDescription
31
+ attr_accessor access_method: Types::AccessMethod
32
+ attr_accessor access_location: Types::GeneralName
33
+ SENSITIVE: []
34
+ end
35
+
36
+ class AccessMethod
37
+ attr_accessor custom_object_identifier: ::String
38
+ attr_accessor access_method_type: ("CA_REPOSITORY" | "RESOURCE_PKI_MANIFEST" | "RESOURCE_PKI_NOTIFY")
39
+ SENSITIVE: []
40
+ end
41
+
42
+ class ApiPassthrough
43
+ attr_accessor extensions: Types::Extensions
44
+ attr_accessor subject: Types::ASN1Subject
45
+ SENSITIVE: []
46
+ end
47
+
48
+ class CertificateAuthority
49
+ attr_accessor arn: ::String
50
+ attr_accessor owner_account: ::String
51
+ attr_accessor created_at: ::Time
52
+ attr_accessor last_state_change_at: ::Time
53
+ attr_accessor type: ("ROOT" | "SUBORDINATE")
54
+ attr_accessor serial: ::String
55
+ attr_accessor status: ("CREATING" | "PENDING_CERTIFICATE" | "ACTIVE" | "DELETED" | "DISABLED" | "EXPIRED" | "FAILED")
56
+ attr_accessor not_before: ::Time
57
+ attr_accessor not_after: ::Time
58
+ attr_accessor failure_reason: ("REQUEST_TIMED_OUT" | "UNSUPPORTED_ALGORITHM" | "OTHER")
59
+ attr_accessor certificate_authority_configuration: Types::CertificateAuthorityConfiguration
60
+ attr_accessor revocation_configuration: Types::RevocationConfiguration
61
+ attr_accessor restorable_until: ::Time
62
+ attr_accessor key_storage_security_standard: ("FIPS_140_2_LEVEL_2_OR_HIGHER" | "FIPS_140_2_LEVEL_3_OR_HIGHER")
63
+ attr_accessor usage_mode: ("GENERAL_PURPOSE" | "SHORT_LIVED_CERTIFICATE")
64
+ SENSITIVE: []
65
+ end
66
+
67
+ class CertificateAuthorityConfiguration
68
+ attr_accessor key_algorithm: ("RSA_2048" | "RSA_4096" | "EC_prime256v1" | "EC_secp384r1")
69
+ attr_accessor signing_algorithm: ("SHA256WITHECDSA" | "SHA384WITHECDSA" | "SHA512WITHECDSA" | "SHA256WITHRSA" | "SHA384WITHRSA" | "SHA512WITHRSA")
70
+ attr_accessor subject: Types::ASN1Subject
71
+ attr_accessor csr_extensions: Types::CsrExtensions
72
+ SENSITIVE: []
73
+ end
74
+
75
+ class CertificateMismatchException
76
+ attr_accessor message: ::String
77
+ SENSITIVE: []
78
+ end
79
+
80
+ class ConcurrentModificationException
81
+ attr_accessor message: ::String
82
+ SENSITIVE: []
83
+ end
84
+
85
+ class CreateCertificateAuthorityAuditReportRequest
86
+ attr_accessor certificate_authority_arn: ::String
87
+ attr_accessor s3_bucket_name: ::String
88
+ attr_accessor audit_report_response_format: ("JSON" | "CSV")
89
+ SENSITIVE: []
90
+ end
91
+
92
+ class CreateCertificateAuthorityAuditReportResponse
93
+ attr_accessor audit_report_id: ::String
94
+ attr_accessor s3_key: ::String
95
+ SENSITIVE: []
96
+ end
97
+
98
+ class CreateCertificateAuthorityRequest
99
+ attr_accessor certificate_authority_configuration: Types::CertificateAuthorityConfiguration
100
+ attr_accessor revocation_configuration: Types::RevocationConfiguration
101
+ attr_accessor certificate_authority_type: ("ROOT" | "SUBORDINATE")
102
+ attr_accessor idempotency_token: ::String
103
+ attr_accessor key_storage_security_standard: ("FIPS_140_2_LEVEL_2_OR_HIGHER" | "FIPS_140_2_LEVEL_3_OR_HIGHER")
104
+ attr_accessor tags: ::Array[Types::Tag]
105
+ attr_accessor usage_mode: ("GENERAL_PURPOSE" | "SHORT_LIVED_CERTIFICATE")
106
+ SENSITIVE: []
107
+ end
108
+
109
+ class CreateCertificateAuthorityResponse
110
+ attr_accessor certificate_authority_arn: ::String
111
+ SENSITIVE: []
112
+ end
113
+
114
+ class CreatePermissionRequest
115
+ attr_accessor certificate_authority_arn: ::String
116
+ attr_accessor principal: ::String
117
+ attr_accessor source_account: ::String
118
+ attr_accessor actions: ::Array[("IssueCertificate" | "GetCertificate" | "ListPermissions")]
119
+ SENSITIVE: []
120
+ end
121
+
122
+ class CrlConfiguration
123
+ attr_accessor enabled: bool
124
+ attr_accessor expiration_in_days: ::Integer
125
+ attr_accessor custom_cname: ::String
126
+ attr_accessor s3_bucket_name: ::String
127
+ attr_accessor s3_object_acl: ("PUBLIC_READ" | "BUCKET_OWNER_FULL_CONTROL")
128
+ attr_accessor crl_distribution_point_extension_configuration: Types::CrlDistributionPointExtensionConfiguration
129
+ SENSITIVE: []
130
+ end
131
+
132
+ class CrlDistributionPointExtensionConfiguration
133
+ attr_accessor omit_extension: bool
134
+ SENSITIVE: []
135
+ end
136
+
137
+ class CsrExtensions
138
+ attr_accessor key_usage: Types::KeyUsage
139
+ attr_accessor subject_information_access: ::Array[Types::AccessDescription]
140
+ SENSITIVE: []
141
+ end
142
+
143
+ class CustomAttribute
144
+ attr_accessor object_identifier: ::String
145
+ attr_accessor value: ::String
146
+ SENSITIVE: []
147
+ end
148
+
149
+ class CustomExtension
150
+ attr_accessor object_identifier: ::String
151
+ attr_accessor value: ::String
152
+ attr_accessor critical: bool
153
+ SENSITIVE: []
154
+ end
155
+
156
+ class DeleteCertificateAuthorityRequest
157
+ attr_accessor certificate_authority_arn: ::String
158
+ attr_accessor permanent_deletion_time_in_days: ::Integer
159
+ SENSITIVE: []
160
+ end
161
+
162
+ class DeletePermissionRequest
163
+ attr_accessor certificate_authority_arn: ::String
164
+ attr_accessor principal: ::String
165
+ attr_accessor source_account: ::String
166
+ SENSITIVE: []
167
+ end
168
+
169
+ class DeletePolicyRequest
170
+ attr_accessor resource_arn: ::String
171
+ SENSITIVE: []
172
+ end
173
+
174
+ class DescribeCertificateAuthorityAuditReportRequest
175
+ attr_accessor certificate_authority_arn: ::String
176
+ attr_accessor audit_report_id: ::String
177
+ SENSITIVE: []
178
+ end
179
+
180
+ class DescribeCertificateAuthorityAuditReportResponse
181
+ attr_accessor audit_report_status: ("CREATING" | "SUCCESS" | "FAILED")
182
+ attr_accessor s3_bucket_name: ::String
183
+ attr_accessor s3_key: ::String
184
+ attr_accessor created_at: ::Time
185
+ SENSITIVE: []
186
+ end
187
+
188
+ class DescribeCertificateAuthorityRequest
189
+ attr_accessor certificate_authority_arn: ::String
190
+ SENSITIVE: []
191
+ end
192
+
193
+ class DescribeCertificateAuthorityResponse
194
+ attr_accessor certificate_authority: Types::CertificateAuthority
195
+ SENSITIVE: []
196
+ end
197
+
198
+ class EdiPartyName
199
+ attr_accessor party_name: ::String
200
+ attr_accessor name_assigner: ::String
201
+ SENSITIVE: []
202
+ end
203
+
204
+ class ExtendedKeyUsage
205
+ attr_accessor extended_key_usage_type: ("SERVER_AUTH" | "CLIENT_AUTH" | "CODE_SIGNING" | "EMAIL_PROTECTION" | "TIME_STAMPING" | "OCSP_SIGNING" | "SMART_CARD_LOGIN" | "DOCUMENT_SIGNING" | "CERTIFICATE_TRANSPARENCY")
206
+ attr_accessor extended_key_usage_object_identifier: ::String
207
+ SENSITIVE: []
208
+ end
209
+
210
+ class Extensions
211
+ attr_accessor certificate_policies: ::Array[Types::PolicyInformation]
212
+ attr_accessor extended_key_usage: ::Array[Types::ExtendedKeyUsage]
213
+ attr_accessor key_usage: Types::KeyUsage
214
+ attr_accessor subject_alternative_names: ::Array[Types::GeneralName]
215
+ attr_accessor custom_extensions: ::Array[Types::CustomExtension]
216
+ SENSITIVE: []
217
+ end
218
+
219
+ class GeneralName
220
+ attr_accessor other_name: Types::OtherName
221
+ attr_accessor rfc_822_name: ::String
222
+ attr_accessor dns_name: ::String
223
+ attr_accessor directory_name: Types::ASN1Subject
224
+ attr_accessor edi_party_name: Types::EdiPartyName
225
+ attr_accessor uniform_resource_identifier: ::String
226
+ attr_accessor ip_address: ::String
227
+ attr_accessor registered_id: ::String
228
+ SENSITIVE: []
229
+ end
230
+
231
+ class GetCertificateAuthorityCertificateRequest
232
+ attr_accessor certificate_authority_arn: ::String
233
+ SENSITIVE: []
234
+ end
235
+
236
+ class GetCertificateAuthorityCertificateResponse
237
+ attr_accessor certificate: ::String
238
+ attr_accessor certificate_chain: ::String
239
+ SENSITIVE: []
240
+ end
241
+
242
+ class GetCertificateAuthorityCsrRequest
243
+ attr_accessor certificate_authority_arn: ::String
244
+ SENSITIVE: []
245
+ end
246
+
247
+ class GetCertificateAuthorityCsrResponse
248
+ attr_accessor csr: ::String
249
+ SENSITIVE: []
250
+ end
251
+
252
+ class GetCertificateRequest
253
+ attr_accessor certificate_authority_arn: ::String
254
+ attr_accessor certificate_arn: ::String
255
+ SENSITIVE: []
256
+ end
257
+
258
+ class GetCertificateResponse
259
+ attr_accessor certificate: ::String
260
+ attr_accessor certificate_chain: ::String
261
+ SENSITIVE: []
262
+ end
263
+
264
+ class GetPolicyRequest
265
+ attr_accessor resource_arn: ::String
266
+ SENSITIVE: []
267
+ end
268
+
269
+ class GetPolicyResponse
270
+ attr_accessor policy: ::String
271
+ SENSITIVE: []
272
+ end
273
+
274
+ class ImportCertificateAuthorityCertificateRequest
275
+ attr_accessor certificate_authority_arn: ::String
276
+ attr_accessor certificate: ::String
277
+ attr_accessor certificate_chain: ::String
278
+ SENSITIVE: []
279
+ end
280
+
281
+ class InvalidArgsException
282
+ attr_accessor message: ::String
283
+ SENSITIVE: []
284
+ end
285
+
286
+ class InvalidArnException
287
+ attr_accessor message: ::String
288
+ SENSITIVE: []
289
+ end
290
+
291
+ class InvalidNextTokenException
292
+ attr_accessor message: ::String
293
+ SENSITIVE: []
294
+ end
295
+
296
+ class InvalidPolicyException
297
+ attr_accessor message: ::String
298
+ SENSITIVE: []
299
+ end
300
+
301
+ class InvalidRequestException
302
+ attr_accessor message: ::String
303
+ SENSITIVE: []
304
+ end
305
+
306
+ class InvalidStateException
307
+ attr_accessor message: ::String
308
+ SENSITIVE: []
309
+ end
310
+
311
+ class InvalidTagException
312
+ attr_accessor message: ::String
313
+ SENSITIVE: []
314
+ end
315
+
316
+ class IssueCertificateRequest
317
+ attr_accessor api_passthrough: Types::ApiPassthrough
318
+ attr_accessor certificate_authority_arn: ::String
319
+ attr_accessor csr: ::String
320
+ attr_accessor signing_algorithm: ("SHA256WITHECDSA" | "SHA384WITHECDSA" | "SHA512WITHECDSA" | "SHA256WITHRSA" | "SHA384WITHRSA" | "SHA512WITHRSA")
321
+ attr_accessor template_arn: ::String
322
+ attr_accessor validity: Types::Validity
323
+ attr_accessor validity_not_before: Types::Validity
324
+ attr_accessor idempotency_token: ::String
325
+ SENSITIVE: []
326
+ end
327
+
328
+ class IssueCertificateResponse
329
+ attr_accessor certificate_arn: ::String
330
+ SENSITIVE: []
331
+ end
332
+
333
+ class KeyUsage
334
+ attr_accessor digital_signature: bool
335
+ attr_accessor non_repudiation: bool
336
+ attr_accessor key_encipherment: bool
337
+ attr_accessor data_encipherment: bool
338
+ attr_accessor key_agreement: bool
339
+ attr_accessor key_cert_sign: bool
340
+ attr_accessor crl_sign: bool
341
+ attr_accessor encipher_only: bool
342
+ attr_accessor decipher_only: bool
343
+ SENSITIVE: []
344
+ end
345
+
346
+ class LimitExceededException
347
+ attr_accessor message: ::String
348
+ SENSITIVE: []
349
+ end
350
+
351
+ class ListCertificateAuthoritiesRequest
352
+ attr_accessor next_token: ::String
353
+ attr_accessor max_results: ::Integer
354
+ attr_accessor resource_owner: ("SELF" | "OTHER_ACCOUNTS")
355
+ SENSITIVE: []
356
+ end
357
+
358
+ class ListCertificateAuthoritiesResponse
359
+ attr_accessor certificate_authorities: ::Array[Types::CertificateAuthority]
360
+ attr_accessor next_token: ::String
361
+ SENSITIVE: []
362
+ end
363
+
364
+ class ListPermissionsRequest
365
+ attr_accessor certificate_authority_arn: ::String
366
+ attr_accessor next_token: ::String
367
+ attr_accessor max_results: ::Integer
368
+ SENSITIVE: []
369
+ end
370
+
371
+ class ListPermissionsResponse
372
+ attr_accessor permissions: ::Array[Types::Permission]
373
+ attr_accessor next_token: ::String
374
+ SENSITIVE: []
375
+ end
376
+
377
+ class ListTagsRequest
378
+ attr_accessor certificate_authority_arn: ::String
379
+ attr_accessor next_token: ::String
380
+ attr_accessor max_results: ::Integer
381
+ SENSITIVE: []
382
+ end
383
+
384
+ class ListTagsResponse
385
+ attr_accessor tags: ::Array[Types::Tag]
386
+ attr_accessor next_token: ::String
387
+ SENSITIVE: []
388
+ end
389
+
390
+ class LockoutPreventedException
391
+ attr_accessor message: ::String
392
+ SENSITIVE: []
393
+ end
394
+
395
+ class MalformedCSRException
396
+ attr_accessor message: ::String
397
+ SENSITIVE: []
398
+ end
399
+
400
+ class MalformedCertificateException
401
+ attr_accessor message: ::String
402
+ SENSITIVE: []
403
+ end
404
+
405
+ class OcspConfiguration
406
+ attr_accessor enabled: bool
407
+ attr_accessor ocsp_custom_cname: ::String
408
+ SENSITIVE: []
409
+ end
410
+
411
+ class OtherName
412
+ attr_accessor type_id: ::String
413
+ attr_accessor value: ::String
414
+ SENSITIVE: []
415
+ end
416
+
417
+ class Permission
418
+ attr_accessor certificate_authority_arn: ::String
419
+ attr_accessor created_at: ::Time
420
+ attr_accessor principal: ::String
421
+ attr_accessor source_account: ::String
422
+ attr_accessor actions: ::Array[("IssueCertificate" | "GetCertificate" | "ListPermissions")]
423
+ attr_accessor policy: ::String
424
+ SENSITIVE: []
425
+ end
426
+
427
+ class PermissionAlreadyExistsException
428
+ attr_accessor message: ::String
429
+ SENSITIVE: []
430
+ end
431
+
432
+ class PolicyInformation
433
+ attr_accessor cert_policy_id: ::String
434
+ attr_accessor policy_qualifiers: ::Array[Types::PolicyQualifierInfo]
435
+ SENSITIVE: []
436
+ end
437
+
438
+ class PolicyQualifierInfo
439
+ attr_accessor policy_qualifier_id: ("CPS")
440
+ attr_accessor qualifier: Types::Qualifier
441
+ SENSITIVE: []
442
+ end
443
+
444
+ class PutPolicyRequest
445
+ attr_accessor resource_arn: ::String
446
+ attr_accessor policy: ::String
447
+ SENSITIVE: []
448
+ end
449
+
450
+ class Qualifier
451
+ attr_accessor cps_uri: ::String
452
+ SENSITIVE: []
453
+ end
454
+
455
+ class RequestAlreadyProcessedException
456
+ attr_accessor message: ::String
457
+ SENSITIVE: []
458
+ end
459
+
460
+ class RequestFailedException
461
+ attr_accessor message: ::String
462
+ SENSITIVE: []
463
+ end
464
+
465
+ class RequestInProgressException
466
+ attr_accessor message: ::String
467
+ SENSITIVE: []
468
+ end
469
+
470
+ class ResourceNotFoundException
471
+ attr_accessor message: ::String
472
+ SENSITIVE: []
473
+ end
474
+
475
+ class RestoreCertificateAuthorityRequest
476
+ attr_accessor certificate_authority_arn: ::String
477
+ SENSITIVE: []
478
+ end
479
+
480
+ class RevocationConfiguration
481
+ attr_accessor crl_configuration: Types::CrlConfiguration
482
+ attr_accessor ocsp_configuration: Types::OcspConfiguration
483
+ SENSITIVE: []
484
+ end
485
+
486
+ class RevokeCertificateRequest
487
+ attr_accessor certificate_authority_arn: ::String
488
+ attr_accessor certificate_serial: ::String
489
+ attr_accessor revocation_reason: ("UNSPECIFIED" | "KEY_COMPROMISE" | "CERTIFICATE_AUTHORITY_COMPROMISE" | "AFFILIATION_CHANGED" | "SUPERSEDED" | "CESSATION_OF_OPERATION" | "PRIVILEGE_WITHDRAWN" | "A_A_COMPROMISE")
490
+ SENSITIVE: []
491
+ end
492
+
493
+ class Tag
494
+ attr_accessor key: ::String
495
+ attr_accessor value: ::String
496
+ SENSITIVE: []
497
+ end
498
+
499
+ class TagCertificateAuthorityRequest
500
+ attr_accessor certificate_authority_arn: ::String
501
+ attr_accessor tags: ::Array[Types::Tag]
502
+ SENSITIVE: []
503
+ end
504
+
505
+ class TooManyTagsException
506
+ attr_accessor message: ::String
507
+ SENSITIVE: []
508
+ end
509
+
510
+ class UntagCertificateAuthorityRequest
511
+ attr_accessor certificate_authority_arn: ::String
512
+ attr_accessor tags: ::Array[Types::Tag]
513
+ SENSITIVE: []
514
+ end
515
+
516
+ class UpdateCertificateAuthorityRequest
517
+ attr_accessor certificate_authority_arn: ::String
518
+ attr_accessor revocation_configuration: Types::RevocationConfiguration
519
+ attr_accessor status: ("CREATING" | "PENDING_CERTIFICATE" | "ACTIVE" | "DELETED" | "DISABLED" | "EXPIRED" | "FAILED")
520
+ SENSITIVE: []
521
+ end
522
+
523
+ class Validity
524
+ attr_accessor value: ::Integer
525
+ attr_accessor type: ("END_DATE" | "ABSOLUTE" | "DAYS" | "MONTHS" | "YEARS")
526
+ SENSITIVE: []
527
+ end
528
+ end
529
+ end