aws-sdk-acmpca 1.44.0 → 1.47.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.
@@ -28,6 +28,7 @@ module Aws::ACMPCA
28
28
  AuditReportId = Shapes::StringShape.new(name: 'AuditReportId')
29
29
  AuditReportResponseFormat = Shapes::StringShape.new(name: 'AuditReportResponseFormat')
30
30
  AuditReportStatus = Shapes::StringShape.new(name: 'AuditReportStatus')
31
+ Base64String1To4096 = Shapes::StringShape.new(name: 'Base64String1To4096')
31
32
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
32
33
  CertificateAuthorities = Shapes::ListShape.new(name: 'CertificateAuthorities')
33
34
  CertificateAuthority = Shapes::StructureShape.new(name: 'CertificateAuthority')
@@ -51,6 +52,10 @@ module Aws::ACMPCA
51
52
  CsrBlob = Shapes::BlobShape.new(name: 'CsrBlob')
52
53
  CsrBody = Shapes::StringShape.new(name: 'CsrBody')
53
54
  CsrExtensions = Shapes::StructureShape.new(name: 'CsrExtensions')
55
+ CustomAttribute = Shapes::StructureShape.new(name: 'CustomAttribute')
56
+ CustomAttributeList = Shapes::ListShape.new(name: 'CustomAttributeList')
57
+ CustomExtension = Shapes::StructureShape.new(name: 'CustomExtension')
58
+ CustomExtensionList = Shapes::ListShape.new(name: 'CustomExtensionList')
54
59
  CustomObjectIdentifier = Shapes::StringShape.new(name: 'CustomObjectIdentifier')
55
60
  DeleteCertificateAuthorityRequest = Shapes::StructureShape.new(name: 'DeleteCertificateAuthorityRequest')
56
61
  DeletePermissionRequest = Shapes::StructureShape.new(name: 'DeletePermissionRequest')
@@ -132,6 +137,7 @@ module Aws::ACMPCA
132
137
  String = Shapes::StringShape.new(name: 'String')
133
138
  String128 = Shapes::StringShape.new(name: 'String128')
134
139
  String16 = Shapes::StringShape.new(name: 'String16')
140
+ String1To256 = Shapes::StringShape.new(name: 'String1To256')
135
141
  String253 = Shapes::StringShape.new(name: 'String253')
136
142
  String256 = Shapes::StringShape.new(name: 'String256')
137
143
  String3 = Shapes::StringShape.new(name: 'String3')
@@ -166,6 +172,7 @@ module Aws::ACMPCA
166
172
  ASN1Subject.add_member(:initials, Shapes::ShapeRef.new(shape: String5, location_name: "Initials"))
167
173
  ASN1Subject.add_member(:pseudonym, Shapes::ShapeRef.new(shape: String128, location_name: "Pseudonym"))
168
174
  ASN1Subject.add_member(:generation_qualifier, Shapes::ShapeRef.new(shape: String3, location_name: "GenerationQualifier"))
175
+ ASN1Subject.add_member(:custom_attributes, Shapes::ShapeRef.new(shape: CustomAttributeList, location_name: "CustomAttributes"))
169
176
  ASN1Subject.struct_class = Types::ASN1Subject
170
177
 
171
178
  AccessDescription.add_member(:access_method, Shapes::ShapeRef.new(shape: AccessMethod, required: true, location_name: "AccessMethod"))
@@ -253,6 +260,19 @@ module Aws::ACMPCA
253
260
  CsrExtensions.add_member(:subject_information_access, Shapes::ShapeRef.new(shape: AccessDescriptionList, location_name: "SubjectInformationAccess"))
254
261
  CsrExtensions.struct_class = Types::CsrExtensions
255
262
 
263
+ CustomAttribute.add_member(:object_identifier, Shapes::ShapeRef.new(shape: CustomObjectIdentifier, required: true, location_name: "ObjectIdentifier"))
264
+ CustomAttribute.add_member(:value, Shapes::ShapeRef.new(shape: String1To256, required: true, location_name: "Value"))
265
+ CustomAttribute.struct_class = Types::CustomAttribute
266
+
267
+ CustomAttributeList.member = Shapes::ShapeRef.new(shape: CustomAttribute)
268
+
269
+ CustomExtension.add_member(:object_identifier, Shapes::ShapeRef.new(shape: CustomObjectIdentifier, required: true, location_name: "ObjectIdentifier"))
270
+ CustomExtension.add_member(:value, Shapes::ShapeRef.new(shape: Base64String1To4096, required: true, location_name: "Value"))
271
+ CustomExtension.add_member(:critical, Shapes::ShapeRef.new(shape: Boolean, location_name: "Critical", metadata: {"box"=>true}))
272
+ CustomExtension.struct_class = Types::CustomExtension
273
+
274
+ CustomExtensionList.member = Shapes::ShapeRef.new(shape: CustomExtension)
275
+
256
276
  DeleteCertificateAuthorityRequest.add_member(:certificate_authority_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "CertificateAuthorityArn"))
257
277
  DeleteCertificateAuthorityRequest.add_member(:permanent_deletion_time_in_days, Shapes::ShapeRef.new(shape: PermanentDeletionTimeInDays, location_name: "PermanentDeletionTimeInDays"))
258
278
  DeleteCertificateAuthorityRequest.struct_class = Types::DeleteCertificateAuthorityRequest
@@ -295,6 +315,7 @@ module Aws::ACMPCA
295
315
  Extensions.add_member(:extended_key_usage, Shapes::ShapeRef.new(shape: ExtendedKeyUsageList, location_name: "ExtendedKeyUsage"))
296
316
  Extensions.add_member(:key_usage, Shapes::ShapeRef.new(shape: KeyUsage, location_name: "KeyUsage"))
297
317
  Extensions.add_member(:subject_alternative_names, Shapes::ShapeRef.new(shape: GeneralNameList, location_name: "SubjectAlternativeNames"))
318
+ Extensions.add_member(:custom_extensions, Shapes::ShapeRef.new(shape: CustomExtensionList, location_name: "CustomExtensions"))
298
319
  Extensions.struct_class = Types::Extensions
299
320
 
300
321
  GeneralName.add_member(:other_name, Shapes::ShapeRef.new(shape: OtherName, location_name: "OtherName"))