aws-sdk-pcaconnectorad 1.3.0 → 1.5.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-pcaconnectorad/client.rb +70 -46
- data/lib/aws-sdk-pcaconnectorad/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-pcaconnectorad.rb +1 -1
- data/sig/client.rbs +783 -0
- data/sig/errors.rbs +48 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +701 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,701 @@
|
|
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::PcaConnectorAd
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessControlEntry
|
12
|
+
attr_accessor access_rights: Types::AccessRights
|
13
|
+
attr_accessor created_at: ::Time
|
14
|
+
attr_accessor group_display_name: ::String
|
15
|
+
attr_accessor group_security_identifier: ::String
|
16
|
+
attr_accessor template_arn: ::String
|
17
|
+
attr_accessor updated_at: ::Time
|
18
|
+
SENSITIVE: []
|
19
|
+
end
|
20
|
+
|
21
|
+
class AccessControlEntrySummary
|
22
|
+
attr_accessor access_rights: Types::AccessRights
|
23
|
+
attr_accessor created_at: ::Time
|
24
|
+
attr_accessor group_display_name: ::String
|
25
|
+
attr_accessor group_security_identifier: ::String
|
26
|
+
attr_accessor template_arn: ::String
|
27
|
+
attr_accessor updated_at: ::Time
|
28
|
+
SENSITIVE: []
|
29
|
+
end
|
30
|
+
|
31
|
+
class AccessDeniedException
|
32
|
+
attr_accessor message: ::String
|
33
|
+
SENSITIVE: []
|
34
|
+
end
|
35
|
+
|
36
|
+
class AccessRights
|
37
|
+
attr_accessor auto_enroll: ("ALLOW" | "DENY")
|
38
|
+
attr_accessor enroll: ("ALLOW" | "DENY")
|
39
|
+
SENSITIVE: []
|
40
|
+
end
|
41
|
+
|
42
|
+
class ApplicationPolicies
|
43
|
+
attr_accessor critical: bool
|
44
|
+
attr_accessor policies: ::Array[Types::ApplicationPolicy]
|
45
|
+
SENSITIVE: []
|
46
|
+
end
|
47
|
+
|
48
|
+
class ApplicationPolicy
|
49
|
+
attr_accessor policy_object_identifier: ::String
|
50
|
+
attr_accessor policy_type: ("ALL_APPLICATION_POLICIES" | "ANY_PURPOSE" | "ATTESTATION_IDENTITY_KEY_CERTIFICATE" | "CERTIFICATE_REQUEST_AGENT" | "CLIENT_AUTHENTICATION" | "CODE_SIGNING" | "CTL_USAGE" | "DIGITAL_RIGHTS" | "DIRECTORY_SERVICE_EMAIL_REPLICATION" | "DISALLOWED_LIST" | "DNS_SERVER_TRUST" | "DOCUMENT_ENCRYPTION" | "DOCUMENT_SIGNING" | "DYNAMIC_CODE_GENERATOR" | "EARLY_LAUNCH_ANTIMALWARE_DRIVER" | "EMBEDDED_WINDOWS_SYSTEM_COMPONENT_VERIFICATION" | "ENCLAVE" | "ENCRYPTING_FILE_SYSTEM" | "ENDORSEMENT_KEY_CERTIFICATE" | "FILE_RECOVERY" | "HAL_EXTENSION" | "IP_SECURITY_END_SYSTEM" | "IP_SECURITY_IKE_INTERMEDIATE" | "IP_SECURITY_TUNNEL_TERMINATION" | "IP_SECURITY_USER" | "ISOLATED_USER_MODE" | "KDC_AUTHENTICATION" | "KERNEL_MODE_CODE_SIGNING" | "KEY_PACK_LICENSES" | "KEY_RECOVERY" | "KEY_RECOVERY_AGENT" | "LICENSE_SERVER_VERIFICATION" | "LIFETIME_SIGNING" | "MICROSOFT_PUBLISHER" | "MICROSOFT_TIME_STAMPING" | "MICROSOFT_TRUST_LIST_SIGNING" | "OCSP_SIGNING" | "OEM_WINDOWS_SYSTEM_COMPONENT_VERIFICATION" | "PLATFORM_CERTIFICATE" | "PREVIEW_BUILD_SIGNING" | "PRIVATE_KEY_ARCHIVAL" | "PROTECTED_PROCESS_LIGHT_VERIFICATION" | "PROTECTED_PROCESS_VERIFICATION" | "QUALIFIED_SUBORDINATION" | "REVOKED_LIST_SIGNER" | "ROOT_PROGRAM_AUTO_UPDATE_CA_REVOCATION" | "ROOT_PROGRAM_AUTO_UPDATE_END_REVOCATION" | "ROOT_PROGRAM_NO_OSCP_FAILOVER_TO_CRL" | "ROOT_LIST_SIGNER" | "SECURE_EMAIL" | "SERVER_AUTHENTICATION" | "SMART_CARD_LOGIN" | "SPC_ENCRYPTED_DIGEST_RETRY_COUNT" | "SPC_RELAXED_PE_MARKER_CHECK" | "TIME_STAMPING" | "WINDOWS_HARDWARE_DRIVER_ATTESTED_VERIFICATION" | "WINDOWS_HARDWARE_DRIVER_EXTENDED_VERIFICATION" | "WINDOWS_HARDWARE_DRIVER_VERIFICATION" | "WINDOWS_HELLO_RECOVERY_KEY_ENCRYPTION" | "WINDOWS_KITS_COMPONENT" | "WINDOWS_RT_VERIFICATION" | "WINDOWS_SOFTWARE_EXTENSION_VERIFICATION" | "WINDOWS_STORE" | "WINDOWS_SYSTEM_COMPONENT_VERIFICATION" | "WINDOWS_TCB_COMPONENT" | "WINDOWS_THIRD_PARTY_APPLICATION_COMPONENT" | "WINDOWS_UPDATE")
|
51
|
+
attr_accessor unknown: untyped
|
52
|
+
SENSITIVE: []
|
53
|
+
|
54
|
+
class PolicyObjectIdentifier < ApplicationPolicy
|
55
|
+
end
|
56
|
+
class PolicyType < ApplicationPolicy
|
57
|
+
end
|
58
|
+
class Unknown < ApplicationPolicy
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
class CertificateValidity
|
63
|
+
attr_accessor renewal_period: Types::ValidityPeriod
|
64
|
+
attr_accessor validity_period: Types::ValidityPeriod
|
65
|
+
SENSITIVE: []
|
66
|
+
end
|
67
|
+
|
68
|
+
class ConflictException
|
69
|
+
attr_accessor message: ::String
|
70
|
+
attr_accessor resource_id: ::String
|
71
|
+
attr_accessor resource_type: ::String
|
72
|
+
SENSITIVE: []
|
73
|
+
end
|
74
|
+
|
75
|
+
class Connector
|
76
|
+
attr_accessor arn: ::String
|
77
|
+
attr_accessor certificate_authority_arn: ::String
|
78
|
+
attr_accessor certificate_enrollment_policy_server_endpoint: ::String
|
79
|
+
attr_accessor created_at: ::Time
|
80
|
+
attr_accessor directory_id: ::String
|
81
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED")
|
82
|
+
attr_accessor status_reason: ("DIRECTORY_ACCESS_DENIED" | "INTERNAL_FAILURE" | "PRIVATECA_ACCESS_DENIED" | "PRIVATECA_RESOURCE_NOT_FOUND" | "SECURITY_GROUP_NOT_IN_VPC" | "VPC_ACCESS_DENIED" | "VPC_ENDPOINT_LIMIT_EXCEEDED" | "VPC_RESOURCE_NOT_FOUND")
|
83
|
+
attr_accessor updated_at: ::Time
|
84
|
+
attr_accessor vpc_information: Types::VpcInformation
|
85
|
+
SENSITIVE: []
|
86
|
+
end
|
87
|
+
|
88
|
+
class ConnectorSummary
|
89
|
+
attr_accessor arn: ::String
|
90
|
+
attr_accessor certificate_authority_arn: ::String
|
91
|
+
attr_accessor certificate_enrollment_policy_server_endpoint: ::String
|
92
|
+
attr_accessor created_at: ::Time
|
93
|
+
attr_accessor directory_id: ::String
|
94
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED")
|
95
|
+
attr_accessor status_reason: ("DIRECTORY_ACCESS_DENIED" | "INTERNAL_FAILURE" | "PRIVATECA_ACCESS_DENIED" | "PRIVATECA_RESOURCE_NOT_FOUND" | "SECURITY_GROUP_NOT_IN_VPC" | "VPC_ACCESS_DENIED" | "VPC_ENDPOINT_LIMIT_EXCEEDED" | "VPC_RESOURCE_NOT_FOUND")
|
96
|
+
attr_accessor updated_at: ::Time
|
97
|
+
attr_accessor vpc_information: Types::VpcInformation
|
98
|
+
SENSITIVE: []
|
99
|
+
end
|
100
|
+
|
101
|
+
class CreateConnectorRequest
|
102
|
+
attr_accessor certificate_authority_arn: ::String
|
103
|
+
attr_accessor client_token: ::String
|
104
|
+
attr_accessor directory_id: ::String
|
105
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
106
|
+
attr_accessor vpc_information: Types::VpcInformation
|
107
|
+
SENSITIVE: []
|
108
|
+
end
|
109
|
+
|
110
|
+
class CreateConnectorResponse
|
111
|
+
attr_accessor connector_arn: ::String
|
112
|
+
SENSITIVE: []
|
113
|
+
end
|
114
|
+
|
115
|
+
class CreateDirectoryRegistrationRequest
|
116
|
+
attr_accessor client_token: ::String
|
117
|
+
attr_accessor directory_id: ::String
|
118
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
119
|
+
SENSITIVE: []
|
120
|
+
end
|
121
|
+
|
122
|
+
class CreateDirectoryRegistrationResponse
|
123
|
+
attr_accessor directory_registration_arn: ::String
|
124
|
+
SENSITIVE: []
|
125
|
+
end
|
126
|
+
|
127
|
+
class CreateServicePrincipalNameRequest
|
128
|
+
attr_accessor client_token: ::String
|
129
|
+
attr_accessor connector_arn: ::String
|
130
|
+
attr_accessor directory_registration_arn: ::String
|
131
|
+
SENSITIVE: []
|
132
|
+
end
|
133
|
+
|
134
|
+
class CreateTemplateGroupAccessControlEntryRequest
|
135
|
+
attr_accessor access_rights: Types::AccessRights
|
136
|
+
attr_accessor client_token: ::String
|
137
|
+
attr_accessor group_display_name: ::String
|
138
|
+
attr_accessor group_security_identifier: ::String
|
139
|
+
attr_accessor template_arn: ::String
|
140
|
+
SENSITIVE: []
|
141
|
+
end
|
142
|
+
|
143
|
+
class CreateTemplateRequest
|
144
|
+
attr_accessor client_token: ::String
|
145
|
+
attr_accessor connector_arn: ::String
|
146
|
+
attr_accessor definition: Types::TemplateDefinition
|
147
|
+
attr_accessor name: ::String
|
148
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
149
|
+
SENSITIVE: []
|
150
|
+
end
|
151
|
+
|
152
|
+
class CreateTemplateResponse
|
153
|
+
attr_accessor template_arn: ::String
|
154
|
+
SENSITIVE: []
|
155
|
+
end
|
156
|
+
|
157
|
+
class DeleteConnectorRequest
|
158
|
+
attr_accessor connector_arn: ::String
|
159
|
+
SENSITIVE: []
|
160
|
+
end
|
161
|
+
|
162
|
+
class DeleteDirectoryRegistrationRequest
|
163
|
+
attr_accessor directory_registration_arn: ::String
|
164
|
+
SENSITIVE: []
|
165
|
+
end
|
166
|
+
|
167
|
+
class DeleteServicePrincipalNameRequest
|
168
|
+
attr_accessor connector_arn: ::String
|
169
|
+
attr_accessor directory_registration_arn: ::String
|
170
|
+
SENSITIVE: []
|
171
|
+
end
|
172
|
+
|
173
|
+
class DeleteTemplateGroupAccessControlEntryRequest
|
174
|
+
attr_accessor group_security_identifier: ::String
|
175
|
+
attr_accessor template_arn: ::String
|
176
|
+
SENSITIVE: []
|
177
|
+
end
|
178
|
+
|
179
|
+
class DeleteTemplateRequest
|
180
|
+
attr_accessor template_arn: ::String
|
181
|
+
SENSITIVE: []
|
182
|
+
end
|
183
|
+
|
184
|
+
class DirectoryRegistration
|
185
|
+
attr_accessor arn: ::String
|
186
|
+
attr_accessor created_at: ::Time
|
187
|
+
attr_accessor directory_id: ::String
|
188
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED")
|
189
|
+
attr_accessor status_reason: ("DIRECTORY_ACCESS_DENIED" | "DIRECTORY_RESOURCE_NOT_FOUND" | "DIRECTORY_NOT_ACTIVE" | "DIRECTORY_NOT_REACHABLE" | "DIRECTORY_TYPE_NOT_SUPPORTED" | "INTERNAL_FAILURE")
|
190
|
+
attr_accessor updated_at: ::Time
|
191
|
+
SENSITIVE: []
|
192
|
+
end
|
193
|
+
|
194
|
+
class DirectoryRegistrationSummary
|
195
|
+
attr_accessor arn: ::String
|
196
|
+
attr_accessor created_at: ::Time
|
197
|
+
attr_accessor directory_id: ::String
|
198
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED")
|
199
|
+
attr_accessor status_reason: ("DIRECTORY_ACCESS_DENIED" | "DIRECTORY_RESOURCE_NOT_FOUND" | "DIRECTORY_NOT_ACTIVE" | "DIRECTORY_NOT_REACHABLE" | "DIRECTORY_TYPE_NOT_SUPPORTED" | "INTERNAL_FAILURE")
|
200
|
+
attr_accessor updated_at: ::Time
|
201
|
+
SENSITIVE: []
|
202
|
+
end
|
203
|
+
|
204
|
+
class EnrollmentFlagsV2
|
205
|
+
attr_accessor enable_key_reuse_on_nt_token_keyset_storage_full: bool
|
206
|
+
attr_accessor include_symmetric_algorithms: bool
|
207
|
+
attr_accessor no_security_extension: bool
|
208
|
+
attr_accessor remove_invalid_certificate_from_personal_store: bool
|
209
|
+
attr_accessor user_interaction_required: bool
|
210
|
+
SENSITIVE: []
|
211
|
+
end
|
212
|
+
|
213
|
+
class EnrollmentFlagsV3
|
214
|
+
attr_accessor enable_key_reuse_on_nt_token_keyset_storage_full: bool
|
215
|
+
attr_accessor include_symmetric_algorithms: bool
|
216
|
+
attr_accessor no_security_extension: bool
|
217
|
+
attr_accessor remove_invalid_certificate_from_personal_store: bool
|
218
|
+
attr_accessor user_interaction_required: bool
|
219
|
+
SENSITIVE: []
|
220
|
+
end
|
221
|
+
|
222
|
+
class EnrollmentFlagsV4
|
223
|
+
attr_accessor enable_key_reuse_on_nt_token_keyset_storage_full: bool
|
224
|
+
attr_accessor include_symmetric_algorithms: bool
|
225
|
+
attr_accessor no_security_extension: bool
|
226
|
+
attr_accessor remove_invalid_certificate_from_personal_store: bool
|
227
|
+
attr_accessor user_interaction_required: bool
|
228
|
+
SENSITIVE: []
|
229
|
+
end
|
230
|
+
|
231
|
+
class ExtensionsV2
|
232
|
+
attr_accessor application_policies: Types::ApplicationPolicies
|
233
|
+
attr_accessor key_usage: Types::KeyUsage
|
234
|
+
SENSITIVE: []
|
235
|
+
end
|
236
|
+
|
237
|
+
class ExtensionsV3
|
238
|
+
attr_accessor application_policies: Types::ApplicationPolicies
|
239
|
+
attr_accessor key_usage: Types::KeyUsage
|
240
|
+
SENSITIVE: []
|
241
|
+
end
|
242
|
+
|
243
|
+
class ExtensionsV4
|
244
|
+
attr_accessor application_policies: Types::ApplicationPolicies
|
245
|
+
attr_accessor key_usage: Types::KeyUsage
|
246
|
+
SENSITIVE: []
|
247
|
+
end
|
248
|
+
|
249
|
+
class GeneralFlagsV2
|
250
|
+
attr_accessor auto_enrollment: bool
|
251
|
+
attr_accessor machine_type: bool
|
252
|
+
SENSITIVE: []
|
253
|
+
end
|
254
|
+
|
255
|
+
class GeneralFlagsV3
|
256
|
+
attr_accessor auto_enrollment: bool
|
257
|
+
attr_accessor machine_type: bool
|
258
|
+
SENSITIVE: []
|
259
|
+
end
|
260
|
+
|
261
|
+
class GeneralFlagsV4
|
262
|
+
attr_accessor auto_enrollment: bool
|
263
|
+
attr_accessor machine_type: bool
|
264
|
+
SENSITIVE: []
|
265
|
+
end
|
266
|
+
|
267
|
+
class GetConnectorRequest
|
268
|
+
attr_accessor connector_arn: ::String
|
269
|
+
SENSITIVE: []
|
270
|
+
end
|
271
|
+
|
272
|
+
class GetConnectorResponse
|
273
|
+
attr_accessor connector: Types::Connector
|
274
|
+
SENSITIVE: []
|
275
|
+
end
|
276
|
+
|
277
|
+
class GetDirectoryRegistrationRequest
|
278
|
+
attr_accessor directory_registration_arn: ::String
|
279
|
+
SENSITIVE: []
|
280
|
+
end
|
281
|
+
|
282
|
+
class GetDirectoryRegistrationResponse
|
283
|
+
attr_accessor directory_registration: Types::DirectoryRegistration
|
284
|
+
SENSITIVE: []
|
285
|
+
end
|
286
|
+
|
287
|
+
class GetServicePrincipalNameRequest
|
288
|
+
attr_accessor connector_arn: ::String
|
289
|
+
attr_accessor directory_registration_arn: ::String
|
290
|
+
SENSITIVE: []
|
291
|
+
end
|
292
|
+
|
293
|
+
class GetServicePrincipalNameResponse
|
294
|
+
attr_accessor service_principal_name: Types::ServicePrincipalName
|
295
|
+
SENSITIVE: []
|
296
|
+
end
|
297
|
+
|
298
|
+
class GetTemplateGroupAccessControlEntryRequest
|
299
|
+
attr_accessor group_security_identifier: ::String
|
300
|
+
attr_accessor template_arn: ::String
|
301
|
+
SENSITIVE: []
|
302
|
+
end
|
303
|
+
|
304
|
+
class GetTemplateGroupAccessControlEntryResponse
|
305
|
+
attr_accessor access_control_entry: Types::AccessControlEntry
|
306
|
+
SENSITIVE: []
|
307
|
+
end
|
308
|
+
|
309
|
+
class GetTemplateRequest
|
310
|
+
attr_accessor template_arn: ::String
|
311
|
+
SENSITIVE: []
|
312
|
+
end
|
313
|
+
|
314
|
+
class GetTemplateResponse
|
315
|
+
attr_accessor template: Types::Template
|
316
|
+
SENSITIVE: []
|
317
|
+
end
|
318
|
+
|
319
|
+
class InternalServerException
|
320
|
+
attr_accessor message: ::String
|
321
|
+
SENSITIVE: []
|
322
|
+
end
|
323
|
+
|
324
|
+
class KeyUsage
|
325
|
+
attr_accessor critical: bool
|
326
|
+
attr_accessor usage_flags: Types::KeyUsageFlags
|
327
|
+
SENSITIVE: []
|
328
|
+
end
|
329
|
+
|
330
|
+
class KeyUsageFlags
|
331
|
+
attr_accessor data_encipherment: bool
|
332
|
+
attr_accessor digital_signature: bool
|
333
|
+
attr_accessor key_agreement: bool
|
334
|
+
attr_accessor key_encipherment: bool
|
335
|
+
attr_accessor non_repudiation: bool
|
336
|
+
SENSITIVE: []
|
337
|
+
end
|
338
|
+
|
339
|
+
class KeyUsageProperty
|
340
|
+
attr_accessor property_flags: Types::KeyUsagePropertyFlags
|
341
|
+
attr_accessor property_type: ("ALL")
|
342
|
+
attr_accessor unknown: untyped
|
343
|
+
SENSITIVE: []
|
344
|
+
|
345
|
+
class PropertyFlags < KeyUsageProperty
|
346
|
+
end
|
347
|
+
class PropertyType < KeyUsageProperty
|
348
|
+
end
|
349
|
+
class Unknown < KeyUsageProperty
|
350
|
+
end
|
351
|
+
end
|
352
|
+
|
353
|
+
class KeyUsagePropertyFlags
|
354
|
+
attr_accessor decrypt: bool
|
355
|
+
attr_accessor key_agreement: bool
|
356
|
+
attr_accessor sign: bool
|
357
|
+
SENSITIVE: []
|
358
|
+
end
|
359
|
+
|
360
|
+
class ListConnectorsRequest
|
361
|
+
attr_accessor max_results: ::Integer
|
362
|
+
attr_accessor next_token: ::String
|
363
|
+
SENSITIVE: []
|
364
|
+
end
|
365
|
+
|
366
|
+
class ListConnectorsResponse
|
367
|
+
attr_accessor connectors: ::Array[Types::ConnectorSummary]
|
368
|
+
attr_accessor next_token: ::String
|
369
|
+
SENSITIVE: []
|
370
|
+
end
|
371
|
+
|
372
|
+
class ListDirectoryRegistrationsRequest
|
373
|
+
attr_accessor max_results: ::Integer
|
374
|
+
attr_accessor next_token: ::String
|
375
|
+
SENSITIVE: []
|
376
|
+
end
|
377
|
+
|
378
|
+
class ListDirectoryRegistrationsResponse
|
379
|
+
attr_accessor directory_registrations: ::Array[Types::DirectoryRegistrationSummary]
|
380
|
+
attr_accessor next_token: ::String
|
381
|
+
SENSITIVE: []
|
382
|
+
end
|
383
|
+
|
384
|
+
class ListServicePrincipalNamesRequest
|
385
|
+
attr_accessor directory_registration_arn: ::String
|
386
|
+
attr_accessor max_results: ::Integer
|
387
|
+
attr_accessor next_token: ::String
|
388
|
+
SENSITIVE: []
|
389
|
+
end
|
390
|
+
|
391
|
+
class ListServicePrincipalNamesResponse
|
392
|
+
attr_accessor next_token: ::String
|
393
|
+
attr_accessor service_principal_names: ::Array[Types::ServicePrincipalNameSummary]
|
394
|
+
SENSITIVE: []
|
395
|
+
end
|
396
|
+
|
397
|
+
class ListTagsForResourceRequest
|
398
|
+
attr_accessor resource_arn: ::String
|
399
|
+
SENSITIVE: []
|
400
|
+
end
|
401
|
+
|
402
|
+
class ListTagsForResourceResponse
|
403
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
404
|
+
SENSITIVE: []
|
405
|
+
end
|
406
|
+
|
407
|
+
class ListTemplateGroupAccessControlEntriesRequest
|
408
|
+
attr_accessor max_results: ::Integer
|
409
|
+
attr_accessor next_token: ::String
|
410
|
+
attr_accessor template_arn: ::String
|
411
|
+
SENSITIVE: []
|
412
|
+
end
|
413
|
+
|
414
|
+
class ListTemplateGroupAccessControlEntriesResponse
|
415
|
+
attr_accessor access_control_entries: ::Array[Types::AccessControlEntrySummary]
|
416
|
+
attr_accessor next_token: ::String
|
417
|
+
SENSITIVE: []
|
418
|
+
end
|
419
|
+
|
420
|
+
class ListTemplatesRequest
|
421
|
+
attr_accessor connector_arn: ::String
|
422
|
+
attr_accessor max_results: ::Integer
|
423
|
+
attr_accessor next_token: ::String
|
424
|
+
SENSITIVE: []
|
425
|
+
end
|
426
|
+
|
427
|
+
class ListTemplatesResponse
|
428
|
+
attr_accessor next_token: ::String
|
429
|
+
attr_accessor templates: ::Array[Types::TemplateSummary]
|
430
|
+
SENSITIVE: []
|
431
|
+
end
|
432
|
+
|
433
|
+
class PrivateKeyAttributesV2
|
434
|
+
attr_accessor crypto_providers: ::Array[::String]
|
435
|
+
attr_accessor key_spec: ("KEY_EXCHANGE" | "SIGNATURE")
|
436
|
+
attr_accessor minimal_key_length: ::Integer
|
437
|
+
SENSITIVE: []
|
438
|
+
end
|
439
|
+
|
440
|
+
class PrivateKeyAttributesV3
|
441
|
+
attr_accessor algorithm: ("RSA" | "ECDH_P256" | "ECDH_P384" | "ECDH_P521")
|
442
|
+
attr_accessor crypto_providers: ::Array[::String]
|
443
|
+
attr_accessor key_spec: ("KEY_EXCHANGE" | "SIGNATURE")
|
444
|
+
attr_accessor key_usage_property: Types::KeyUsageProperty
|
445
|
+
attr_accessor minimal_key_length: ::Integer
|
446
|
+
SENSITIVE: []
|
447
|
+
end
|
448
|
+
|
449
|
+
class PrivateKeyAttributesV4
|
450
|
+
attr_accessor algorithm: ("RSA" | "ECDH_P256" | "ECDH_P384" | "ECDH_P521")
|
451
|
+
attr_accessor crypto_providers: ::Array[::String]
|
452
|
+
attr_accessor key_spec: ("KEY_EXCHANGE" | "SIGNATURE")
|
453
|
+
attr_accessor key_usage_property: Types::KeyUsageProperty
|
454
|
+
attr_accessor minimal_key_length: ::Integer
|
455
|
+
SENSITIVE: []
|
456
|
+
end
|
457
|
+
|
458
|
+
class PrivateKeyFlagsV2
|
459
|
+
attr_accessor client_version: ("WINDOWS_SERVER_2003" | "WINDOWS_SERVER_2008" | "WINDOWS_SERVER_2008_R2" | "WINDOWS_SERVER_2012" | "WINDOWS_SERVER_2012_R2" | "WINDOWS_SERVER_2016")
|
460
|
+
attr_accessor exportable_key: bool
|
461
|
+
attr_accessor strong_key_protection_required: bool
|
462
|
+
SENSITIVE: []
|
463
|
+
end
|
464
|
+
|
465
|
+
class PrivateKeyFlagsV3
|
466
|
+
attr_accessor client_version: ("WINDOWS_SERVER_2008" | "WINDOWS_SERVER_2008_R2" | "WINDOWS_SERVER_2012" | "WINDOWS_SERVER_2012_R2" | "WINDOWS_SERVER_2016")
|
467
|
+
attr_accessor exportable_key: bool
|
468
|
+
attr_accessor require_alternate_signature_algorithm: bool
|
469
|
+
attr_accessor strong_key_protection_required: bool
|
470
|
+
SENSITIVE: []
|
471
|
+
end
|
472
|
+
|
473
|
+
class PrivateKeyFlagsV4
|
474
|
+
attr_accessor client_version: ("WINDOWS_SERVER_2012" | "WINDOWS_SERVER_2012_R2" | "WINDOWS_SERVER_2016")
|
475
|
+
attr_accessor exportable_key: bool
|
476
|
+
attr_accessor require_alternate_signature_algorithm: bool
|
477
|
+
attr_accessor require_same_key_renewal: bool
|
478
|
+
attr_accessor strong_key_protection_required: bool
|
479
|
+
attr_accessor use_legacy_provider: bool
|
480
|
+
SENSITIVE: []
|
481
|
+
end
|
482
|
+
|
483
|
+
class ResourceNotFoundException
|
484
|
+
attr_accessor message: ::String
|
485
|
+
attr_accessor resource_id: ::String
|
486
|
+
attr_accessor resource_type: ::String
|
487
|
+
SENSITIVE: []
|
488
|
+
end
|
489
|
+
|
490
|
+
class ServicePrincipalName
|
491
|
+
attr_accessor connector_arn: ::String
|
492
|
+
attr_accessor created_at: ::Time
|
493
|
+
attr_accessor directory_registration_arn: ::String
|
494
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED")
|
495
|
+
attr_accessor status_reason: ("DIRECTORY_ACCESS_DENIED" | "DIRECTORY_NOT_REACHABLE" | "DIRECTORY_RESOURCE_NOT_FOUND" | "SPN_EXISTS_ON_DIFFERENT_AD_OBJECT" | "INTERNAL_FAILURE")
|
496
|
+
attr_accessor updated_at: ::Time
|
497
|
+
SENSITIVE: []
|
498
|
+
end
|
499
|
+
|
500
|
+
class ServicePrincipalNameSummary
|
501
|
+
attr_accessor connector_arn: ::String
|
502
|
+
attr_accessor created_at: ::Time
|
503
|
+
attr_accessor directory_registration_arn: ::String
|
504
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED")
|
505
|
+
attr_accessor status_reason: ("DIRECTORY_ACCESS_DENIED" | "DIRECTORY_NOT_REACHABLE" | "DIRECTORY_RESOURCE_NOT_FOUND" | "SPN_EXISTS_ON_DIFFERENT_AD_OBJECT" | "INTERNAL_FAILURE")
|
506
|
+
attr_accessor updated_at: ::Time
|
507
|
+
SENSITIVE: []
|
508
|
+
end
|
509
|
+
|
510
|
+
class ServiceQuotaExceededException
|
511
|
+
attr_accessor message: ::String
|
512
|
+
attr_accessor quota_code: ::String
|
513
|
+
attr_accessor resource_id: ::String
|
514
|
+
attr_accessor resource_type: ::String
|
515
|
+
attr_accessor service_code: ::String
|
516
|
+
SENSITIVE: []
|
517
|
+
end
|
518
|
+
|
519
|
+
class SubjectNameFlagsV2
|
520
|
+
attr_accessor require_common_name: bool
|
521
|
+
attr_accessor require_directory_path: bool
|
522
|
+
attr_accessor require_dns_as_cn: bool
|
523
|
+
attr_accessor require_email: bool
|
524
|
+
attr_accessor san_require_directory_guid: bool
|
525
|
+
attr_accessor san_require_dns: bool
|
526
|
+
attr_accessor san_require_domain_dns: bool
|
527
|
+
attr_accessor san_require_email: bool
|
528
|
+
attr_accessor san_require_spn: bool
|
529
|
+
attr_accessor san_require_upn: bool
|
530
|
+
SENSITIVE: []
|
531
|
+
end
|
532
|
+
|
533
|
+
class SubjectNameFlagsV3
|
534
|
+
attr_accessor require_common_name: bool
|
535
|
+
attr_accessor require_directory_path: bool
|
536
|
+
attr_accessor require_dns_as_cn: bool
|
537
|
+
attr_accessor require_email: bool
|
538
|
+
attr_accessor san_require_directory_guid: bool
|
539
|
+
attr_accessor san_require_dns: bool
|
540
|
+
attr_accessor san_require_domain_dns: bool
|
541
|
+
attr_accessor san_require_email: bool
|
542
|
+
attr_accessor san_require_spn: bool
|
543
|
+
attr_accessor san_require_upn: bool
|
544
|
+
SENSITIVE: []
|
545
|
+
end
|
546
|
+
|
547
|
+
class SubjectNameFlagsV4
|
548
|
+
attr_accessor require_common_name: bool
|
549
|
+
attr_accessor require_directory_path: bool
|
550
|
+
attr_accessor require_dns_as_cn: bool
|
551
|
+
attr_accessor require_email: bool
|
552
|
+
attr_accessor san_require_directory_guid: bool
|
553
|
+
attr_accessor san_require_dns: bool
|
554
|
+
attr_accessor san_require_domain_dns: bool
|
555
|
+
attr_accessor san_require_email: bool
|
556
|
+
attr_accessor san_require_spn: bool
|
557
|
+
attr_accessor san_require_upn: bool
|
558
|
+
SENSITIVE: []
|
559
|
+
end
|
560
|
+
|
561
|
+
class TagResourceRequest
|
562
|
+
attr_accessor resource_arn: ::String
|
563
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
564
|
+
SENSITIVE: []
|
565
|
+
end
|
566
|
+
|
567
|
+
class Template
|
568
|
+
attr_accessor arn: ::String
|
569
|
+
attr_accessor connector_arn: ::String
|
570
|
+
attr_accessor created_at: ::Time
|
571
|
+
attr_accessor definition: Types::TemplateDefinition
|
572
|
+
attr_accessor name: ::String
|
573
|
+
attr_accessor object_identifier: ::String
|
574
|
+
attr_accessor policy_schema: ::Integer
|
575
|
+
attr_accessor revision: Types::TemplateRevision
|
576
|
+
attr_accessor status: ("ACTIVE" | "DELETING")
|
577
|
+
attr_accessor updated_at: ::Time
|
578
|
+
SENSITIVE: []
|
579
|
+
end
|
580
|
+
|
581
|
+
class TemplateDefinition
|
582
|
+
attr_accessor template_v2: Types::TemplateV2
|
583
|
+
attr_accessor template_v3: Types::TemplateV3
|
584
|
+
attr_accessor template_v4: Types::TemplateV4
|
585
|
+
attr_accessor unknown: untyped
|
586
|
+
SENSITIVE: []
|
587
|
+
|
588
|
+
class TemplateV2 < TemplateDefinition
|
589
|
+
end
|
590
|
+
class TemplateV3 < TemplateDefinition
|
591
|
+
end
|
592
|
+
class TemplateV4 < TemplateDefinition
|
593
|
+
end
|
594
|
+
class Unknown < TemplateDefinition
|
595
|
+
end
|
596
|
+
end
|
597
|
+
|
598
|
+
class TemplateRevision
|
599
|
+
attr_accessor major_revision: ::Integer
|
600
|
+
attr_accessor minor_revision: ::Integer
|
601
|
+
SENSITIVE: []
|
602
|
+
end
|
603
|
+
|
604
|
+
class TemplateSummary
|
605
|
+
attr_accessor arn: ::String
|
606
|
+
attr_accessor connector_arn: ::String
|
607
|
+
attr_accessor created_at: ::Time
|
608
|
+
attr_accessor definition: Types::TemplateDefinition
|
609
|
+
attr_accessor name: ::String
|
610
|
+
attr_accessor object_identifier: ::String
|
611
|
+
attr_accessor policy_schema: ::Integer
|
612
|
+
attr_accessor revision: Types::TemplateRevision
|
613
|
+
attr_accessor status: ("ACTIVE" | "DELETING")
|
614
|
+
attr_accessor updated_at: ::Time
|
615
|
+
SENSITIVE: []
|
616
|
+
end
|
617
|
+
|
618
|
+
class TemplateV2
|
619
|
+
attr_accessor certificate_validity: Types::CertificateValidity
|
620
|
+
attr_accessor enrollment_flags: Types::EnrollmentFlagsV2
|
621
|
+
attr_accessor extensions: Types::ExtensionsV2
|
622
|
+
attr_accessor general_flags: Types::GeneralFlagsV2
|
623
|
+
attr_accessor private_key_attributes: Types::PrivateKeyAttributesV2
|
624
|
+
attr_accessor private_key_flags: Types::PrivateKeyFlagsV2
|
625
|
+
attr_accessor subject_name_flags: Types::SubjectNameFlagsV2
|
626
|
+
attr_accessor superseded_templates: ::Array[::String]
|
627
|
+
SENSITIVE: []
|
628
|
+
end
|
629
|
+
|
630
|
+
class TemplateV3
|
631
|
+
attr_accessor certificate_validity: Types::CertificateValidity
|
632
|
+
attr_accessor enrollment_flags: Types::EnrollmentFlagsV3
|
633
|
+
attr_accessor extensions: Types::ExtensionsV3
|
634
|
+
attr_accessor general_flags: Types::GeneralFlagsV3
|
635
|
+
attr_accessor hash_algorithm: ("SHA256" | "SHA384" | "SHA512")
|
636
|
+
attr_accessor private_key_attributes: Types::PrivateKeyAttributesV3
|
637
|
+
attr_accessor private_key_flags: Types::PrivateKeyFlagsV3
|
638
|
+
attr_accessor subject_name_flags: Types::SubjectNameFlagsV3
|
639
|
+
attr_accessor superseded_templates: ::Array[::String]
|
640
|
+
SENSITIVE: []
|
641
|
+
end
|
642
|
+
|
643
|
+
class TemplateV4
|
644
|
+
attr_accessor certificate_validity: Types::CertificateValidity
|
645
|
+
attr_accessor enrollment_flags: Types::EnrollmentFlagsV4
|
646
|
+
attr_accessor extensions: Types::ExtensionsV4
|
647
|
+
attr_accessor general_flags: Types::GeneralFlagsV4
|
648
|
+
attr_accessor hash_algorithm: ("SHA256" | "SHA384" | "SHA512")
|
649
|
+
attr_accessor private_key_attributes: Types::PrivateKeyAttributesV4
|
650
|
+
attr_accessor private_key_flags: Types::PrivateKeyFlagsV4
|
651
|
+
attr_accessor subject_name_flags: Types::SubjectNameFlagsV4
|
652
|
+
attr_accessor superseded_templates: ::Array[::String]
|
653
|
+
SENSITIVE: []
|
654
|
+
end
|
655
|
+
|
656
|
+
class ThrottlingException
|
657
|
+
attr_accessor message: ::String
|
658
|
+
attr_accessor quota_code: ::String
|
659
|
+
attr_accessor service_code: ::String
|
660
|
+
SENSITIVE: []
|
661
|
+
end
|
662
|
+
|
663
|
+
class UntagResourceRequest
|
664
|
+
attr_accessor resource_arn: ::String
|
665
|
+
attr_accessor tag_keys: ::Array[::String]
|
666
|
+
SENSITIVE: []
|
667
|
+
end
|
668
|
+
|
669
|
+
class UpdateTemplateGroupAccessControlEntryRequest
|
670
|
+
attr_accessor access_rights: Types::AccessRights
|
671
|
+
attr_accessor group_display_name: ::String
|
672
|
+
attr_accessor group_security_identifier: ::String
|
673
|
+
attr_accessor template_arn: ::String
|
674
|
+
SENSITIVE: []
|
675
|
+
end
|
676
|
+
|
677
|
+
class UpdateTemplateRequest
|
678
|
+
attr_accessor definition: Types::TemplateDefinition
|
679
|
+
attr_accessor reenroll_all_certificate_holders: bool
|
680
|
+
attr_accessor template_arn: ::String
|
681
|
+
SENSITIVE: []
|
682
|
+
end
|
683
|
+
|
684
|
+
class ValidationException
|
685
|
+
attr_accessor message: ::String
|
686
|
+
attr_accessor reason: ("FIELD_VALIDATION_FAILED" | "INVALID_PERMISSION" | "INVALID_STATE" | "MISMATCHED_CONNECTOR" | "MISMATCHED_VPC" | "NO_CLIENT_TOKEN" | "UNKNOWN_OPERATION" | "OTHER")
|
687
|
+
SENSITIVE: []
|
688
|
+
end
|
689
|
+
|
690
|
+
class ValidityPeriod
|
691
|
+
attr_accessor period: ::Integer
|
692
|
+
attr_accessor period_type: ("HOURS" | "DAYS" | "WEEKS" | "MONTHS" | "YEARS")
|
693
|
+
SENSITIVE: []
|
694
|
+
end
|
695
|
+
|
696
|
+
class VpcInformation
|
697
|
+
attr_accessor security_group_ids: ::Array[::String]
|
698
|
+
SENSITIVE: []
|
699
|
+
end
|
700
|
+
end
|
701
|
+
end
|