aws-sdk-rolesanywhere 1.43.0 → 1.45.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-rolesanywhere/client.rb +548 -365
- data/lib/aws-sdk-rolesanywhere/client_api.rb +62 -63
- data/lib/aws-sdk-rolesanywhere/types.rb +345 -343
- data/lib/aws-sdk-rolesanywhere/waiters.rb +15 -0
- data/lib/aws-sdk-rolesanywhere.rb +2 -1
- data/sig/client.rbs +46 -46
- data/sig/types.rbs +63 -63
- metadata +4 -3
|
@@ -124,41 +124,41 @@ module Aws::RolesAnywhere
|
|
|
124
124
|
|
|
125
125
|
AttributeMappings.member = Shapes::ShapeRef.new(shape: AttributeMapping)
|
|
126
126
|
|
|
127
|
-
CreateProfileRequest.add_member(:accept_role_session_name, Shapes::ShapeRef.new(shape: Boolean, location_name: "acceptRoleSessionName"))
|
|
128
|
-
CreateProfileRequest.add_member(:duration_seconds, Shapes::ShapeRef.new(shape: CreateProfileRequestDurationSecondsInteger, location_name: "durationSeconds"))
|
|
129
|
-
CreateProfileRequest.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "enabled"))
|
|
130
|
-
CreateProfileRequest.add_member(:managed_policy_arns, Shapes::ShapeRef.new(shape: ManagedPolicyList, location_name: "managedPolicyArns"))
|
|
131
127
|
CreateProfileRequest.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "name"))
|
|
132
128
|
CreateProfileRequest.add_member(:require_instance_properties, Shapes::ShapeRef.new(shape: Boolean, location_name: "requireInstanceProperties"))
|
|
133
|
-
CreateProfileRequest.add_member(:role_arns, Shapes::ShapeRef.new(shape: RoleArnList, required: true, location_name: "roleArns"))
|
|
134
129
|
CreateProfileRequest.add_member(:session_policy, Shapes::ShapeRef.new(shape: String, location_name: "sessionPolicy"))
|
|
130
|
+
CreateProfileRequest.add_member(:role_arns, Shapes::ShapeRef.new(shape: RoleArnList, required: true, location_name: "roleArns"))
|
|
131
|
+
CreateProfileRequest.add_member(:managed_policy_arns, Shapes::ShapeRef.new(shape: ManagedPolicyList, location_name: "managedPolicyArns"))
|
|
132
|
+
CreateProfileRequest.add_member(:duration_seconds, Shapes::ShapeRef.new(shape: CreateProfileRequestDurationSecondsInteger, location_name: "durationSeconds"))
|
|
133
|
+
CreateProfileRequest.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "enabled"))
|
|
135
134
|
CreateProfileRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
|
|
135
|
+
CreateProfileRequest.add_member(:accept_role_session_name, Shapes::ShapeRef.new(shape: Boolean, location_name: "acceptRoleSessionName"))
|
|
136
136
|
CreateProfileRequest.struct_class = Types::CreateProfileRequest
|
|
137
137
|
|
|
138
|
-
CreateTrustAnchorRequest.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "enabled"))
|
|
139
138
|
CreateTrustAnchorRequest.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "name"))
|
|
140
|
-
CreateTrustAnchorRequest.add_member(:notification_settings, Shapes::ShapeRef.new(shape: NotificationSettings, location_name: "notificationSettings"))
|
|
141
139
|
CreateTrustAnchorRequest.add_member(:source, Shapes::ShapeRef.new(shape: Source, required: true, location_name: "source"))
|
|
140
|
+
CreateTrustAnchorRequest.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "enabled"))
|
|
142
141
|
CreateTrustAnchorRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
|
|
142
|
+
CreateTrustAnchorRequest.add_member(:notification_settings, Shapes::ShapeRef.new(shape: NotificationSettings, location_name: "notificationSettings"))
|
|
143
143
|
CreateTrustAnchorRequest.struct_class = Types::CreateTrustAnchorRequest
|
|
144
144
|
|
|
145
145
|
CredentialSummaries.member = Shapes::ShapeRef.new(shape: CredentialSummary)
|
|
146
146
|
|
|
147
|
-
CredentialSummary.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "enabled"))
|
|
148
|
-
CredentialSummary.add_member(:failed, Shapes::ShapeRef.new(shape: Boolean, location_name: "failed"))
|
|
149
|
-
CredentialSummary.add_member(:issuer, Shapes::ShapeRef.new(shape: String, location_name: "issuer"))
|
|
150
147
|
CredentialSummary.add_member(:seen_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "seenAt"))
|
|
151
148
|
CredentialSummary.add_member(:serial_number, Shapes::ShapeRef.new(shape: String, location_name: "serialNumber"))
|
|
149
|
+
CredentialSummary.add_member(:issuer, Shapes::ShapeRef.new(shape: String, location_name: "issuer"))
|
|
150
|
+
CredentialSummary.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "enabled"))
|
|
152
151
|
CredentialSummary.add_member(:x509_certificate_data, Shapes::ShapeRef.new(shape: String, location_name: "x509CertificateData"))
|
|
152
|
+
CredentialSummary.add_member(:failed, Shapes::ShapeRef.new(shape: Boolean, location_name: "failed"))
|
|
153
153
|
CredentialSummary.struct_class = Types::CredentialSummary
|
|
154
154
|
|
|
155
|
-
CrlDetail.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "createdAt"))
|
|
156
|
-
CrlDetail.add_member(:crl_arn, Shapes::ShapeRef.new(shape: String, location_name: "crlArn"))
|
|
157
|
-
CrlDetail.add_member(:crl_data, Shapes::ShapeRef.new(shape: Blob, location_name: "crlData"))
|
|
158
155
|
CrlDetail.add_member(:crl_id, Shapes::ShapeRef.new(shape: Uuid, location_name: "crlId"))
|
|
159
|
-
CrlDetail.add_member(:
|
|
156
|
+
CrlDetail.add_member(:crl_arn, Shapes::ShapeRef.new(shape: String, location_name: "crlArn"))
|
|
160
157
|
CrlDetail.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "name"))
|
|
158
|
+
CrlDetail.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "enabled"))
|
|
159
|
+
CrlDetail.add_member(:crl_data, Shapes::ShapeRef.new(shape: Blob, location_name: "crlData"))
|
|
161
160
|
CrlDetail.add_member(:trust_anchor_arn, Shapes::ShapeRef.new(shape: String, location_name: "trustAnchorArn"))
|
|
161
|
+
CrlDetail.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "createdAt"))
|
|
162
162
|
CrlDetail.add_member(:updated_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "updatedAt"))
|
|
163
163
|
CrlDetail.struct_class = Types::CrlDetail
|
|
164
164
|
|
|
@@ -167,33 +167,33 @@ module Aws::RolesAnywhere
|
|
|
167
167
|
|
|
168
168
|
CrlDetails.member = Shapes::ShapeRef.new(shape: CrlDetail)
|
|
169
169
|
|
|
170
|
-
DeleteAttributeMappingRequest.add_member(:certificate_field, Shapes::ShapeRef.new(shape: CertificateField, required: true, location: "querystring", location_name: "certificateField"))
|
|
171
170
|
DeleteAttributeMappingRequest.add_member(:profile_id, Shapes::ShapeRef.new(shape: Uuid, required: true, location: "uri", location_name: "profileId"))
|
|
171
|
+
DeleteAttributeMappingRequest.add_member(:certificate_field, Shapes::ShapeRef.new(shape: CertificateField, required: true, location: "querystring", location_name: "certificateField"))
|
|
172
172
|
DeleteAttributeMappingRequest.add_member(:specifiers, Shapes::ShapeRef.new(shape: SpecifierList, location: "querystring", location_name: "specifiers"))
|
|
173
173
|
DeleteAttributeMappingRequest.struct_class = Types::DeleteAttributeMappingRequest
|
|
174
174
|
|
|
175
175
|
DeleteAttributeMappingResponse.add_member(:profile, Shapes::ShapeRef.new(shape: ProfileDetail, required: true, location_name: "profile"))
|
|
176
176
|
DeleteAttributeMappingResponse.struct_class = Types::DeleteAttributeMappingResponse
|
|
177
177
|
|
|
178
|
+
ImportCrlRequest.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "name"))
|
|
178
179
|
ImportCrlRequest.add_member(:crl_data, Shapes::ShapeRef.new(shape: ImportCrlRequestCrlDataBlob, required: true, location_name: "crlData"))
|
|
179
180
|
ImportCrlRequest.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "enabled"))
|
|
180
|
-
ImportCrlRequest.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "name"))
|
|
181
181
|
ImportCrlRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
|
|
182
182
|
ImportCrlRequest.add_member(:trust_anchor_arn, Shapes::ShapeRef.new(shape: TrustAnchorArn, required: true, location_name: "trustAnchorArn"))
|
|
183
183
|
ImportCrlRequest.struct_class = Types::ImportCrlRequest
|
|
184
184
|
|
|
185
185
|
InstanceProperties.member = Shapes::ShapeRef.new(shape: InstanceProperty)
|
|
186
186
|
|
|
187
|
-
InstanceProperty.add_member(:failed, Shapes::ShapeRef.new(shape: Boolean, location_name: "failed"))
|
|
188
|
-
InstanceProperty.add_member(:properties, Shapes::ShapeRef.new(shape: InstancePropertyMap, location_name: "properties"))
|
|
189
187
|
InstanceProperty.add_member(:seen_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "seenAt"))
|
|
188
|
+
InstanceProperty.add_member(:properties, Shapes::ShapeRef.new(shape: InstancePropertyMap, location_name: "properties"))
|
|
189
|
+
InstanceProperty.add_member(:failed, Shapes::ShapeRef.new(shape: Boolean, location_name: "failed"))
|
|
190
190
|
InstanceProperty.struct_class = Types::InstanceProperty
|
|
191
191
|
|
|
192
192
|
InstancePropertyMap.key = Shapes::ShapeRef.new(shape: InstancePropertyMapKeyString)
|
|
193
193
|
InstancePropertyMap.value = Shapes::ShapeRef.new(shape: InstancePropertyMapValueString)
|
|
194
194
|
|
|
195
|
-
ListCrlsResponse.add_member(:crls, Shapes::ShapeRef.new(shape: CrlDetails, location_name: "crls"))
|
|
196
195
|
ListCrlsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
|
196
|
+
ListCrlsResponse.add_member(:crls, Shapes::ShapeRef.new(shape: CrlDetails, location_name: "crls"))
|
|
197
197
|
ListCrlsResponse.struct_class = Types::ListCrlsResponse
|
|
198
198
|
|
|
199
199
|
ListProfilesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
|
@@ -204,8 +204,8 @@ module Aws::RolesAnywhere
|
|
|
204
204
|
ListRequest.add_member(:page_size, Shapes::ShapeRef.new(shape: Integer, location: "querystring", location_name: "pageSize"))
|
|
205
205
|
ListRequest.struct_class = Types::ListRequest
|
|
206
206
|
|
|
207
|
-
ListSubjectsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
|
208
207
|
ListSubjectsResponse.add_member(:subjects, Shapes::ShapeRef.new(shape: SubjectSummaries, location_name: "subjects"))
|
|
208
|
+
ListSubjectsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
|
209
209
|
ListSubjectsResponse.struct_class = Types::ListSubjectsResponse
|
|
210
210
|
|
|
211
211
|
ListTagsForResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, required: true, location: "querystring", location_name: "resourceArn"))
|
|
@@ -225,43 +225,43 @@ module Aws::RolesAnywhere
|
|
|
225
225
|
|
|
226
226
|
MappingRules.member = Shapes::ShapeRef.new(shape: MappingRule)
|
|
227
227
|
|
|
228
|
-
NotificationSetting.add_member(:channel, Shapes::ShapeRef.new(shape: NotificationChannel, location_name: "channel"))
|
|
229
228
|
NotificationSetting.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "enabled"))
|
|
230
229
|
NotificationSetting.add_member(:event, Shapes::ShapeRef.new(shape: NotificationEvent, required: true, location_name: "event"))
|
|
231
230
|
NotificationSetting.add_member(:threshold, Shapes::ShapeRef.new(shape: NotificationSettingThresholdInteger, location_name: "threshold"))
|
|
231
|
+
NotificationSetting.add_member(:channel, Shapes::ShapeRef.new(shape: NotificationChannel, location_name: "channel"))
|
|
232
232
|
NotificationSetting.struct_class = Types::NotificationSetting
|
|
233
233
|
|
|
234
|
-
NotificationSettingDetail.add_member(:channel, Shapes::ShapeRef.new(shape: NotificationChannel, location_name: "channel"))
|
|
235
|
-
NotificationSettingDetail.add_member(:configured_by, Shapes::ShapeRef.new(shape: NotificationSettingDetailConfiguredByString, location_name: "configuredBy"))
|
|
236
234
|
NotificationSettingDetail.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "enabled"))
|
|
237
235
|
NotificationSettingDetail.add_member(:event, Shapes::ShapeRef.new(shape: NotificationEvent, required: true, location_name: "event"))
|
|
238
236
|
NotificationSettingDetail.add_member(:threshold, Shapes::ShapeRef.new(shape: NotificationSettingDetailThresholdInteger, location_name: "threshold"))
|
|
237
|
+
NotificationSettingDetail.add_member(:channel, Shapes::ShapeRef.new(shape: NotificationChannel, location_name: "channel"))
|
|
238
|
+
NotificationSettingDetail.add_member(:configured_by, Shapes::ShapeRef.new(shape: NotificationSettingDetailConfiguredByString, location_name: "configuredBy"))
|
|
239
239
|
NotificationSettingDetail.struct_class = Types::NotificationSettingDetail
|
|
240
240
|
|
|
241
241
|
NotificationSettingDetails.member = Shapes::ShapeRef.new(shape: NotificationSettingDetail)
|
|
242
242
|
|
|
243
|
-
NotificationSettingKey.add_member(:channel, Shapes::ShapeRef.new(shape: NotificationChannel, location_name: "channel"))
|
|
244
243
|
NotificationSettingKey.add_member(:event, Shapes::ShapeRef.new(shape: NotificationEvent, required: true, location_name: "event"))
|
|
244
|
+
NotificationSettingKey.add_member(:channel, Shapes::ShapeRef.new(shape: NotificationChannel, location_name: "channel"))
|
|
245
245
|
NotificationSettingKey.struct_class = Types::NotificationSettingKey
|
|
246
246
|
|
|
247
247
|
NotificationSettingKeys.member = Shapes::ShapeRef.new(shape: NotificationSettingKey)
|
|
248
248
|
|
|
249
249
|
NotificationSettings.member = Shapes::ShapeRef.new(shape: NotificationSetting)
|
|
250
250
|
|
|
251
|
-
ProfileDetail.add_member(:accept_role_session_name, Shapes::ShapeRef.new(shape: Boolean, location_name: "acceptRoleSessionName"))
|
|
252
|
-
ProfileDetail.add_member(:attribute_mappings, Shapes::ShapeRef.new(shape: AttributeMappings, location_name: "attributeMappings"))
|
|
253
|
-
ProfileDetail.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "createdAt"))
|
|
254
|
-
ProfileDetail.add_member(:created_by, Shapes::ShapeRef.new(shape: String, location_name: "createdBy"))
|
|
255
|
-
ProfileDetail.add_member(:duration_seconds, Shapes::ShapeRef.new(shape: Integer, location_name: "durationSeconds"))
|
|
256
|
-
ProfileDetail.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "enabled"))
|
|
257
|
-
ProfileDetail.add_member(:managed_policy_arns, Shapes::ShapeRef.new(shape: ManagedPolicyList, location_name: "managedPolicyArns"))
|
|
258
|
-
ProfileDetail.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "name"))
|
|
259
|
-
ProfileDetail.add_member(:profile_arn, Shapes::ShapeRef.new(shape: ProfileArn, location_name: "profileArn"))
|
|
260
251
|
ProfileDetail.add_member(:profile_id, Shapes::ShapeRef.new(shape: Uuid, location_name: "profileId"))
|
|
252
|
+
ProfileDetail.add_member(:profile_arn, Shapes::ShapeRef.new(shape: ProfileArn, location_name: "profileArn"))
|
|
253
|
+
ProfileDetail.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "name"))
|
|
261
254
|
ProfileDetail.add_member(:require_instance_properties, Shapes::ShapeRef.new(shape: Boolean, location_name: "requireInstanceProperties"))
|
|
262
|
-
ProfileDetail.add_member(:
|
|
255
|
+
ProfileDetail.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "enabled"))
|
|
256
|
+
ProfileDetail.add_member(:created_by, Shapes::ShapeRef.new(shape: String, location_name: "createdBy"))
|
|
263
257
|
ProfileDetail.add_member(:session_policy, Shapes::ShapeRef.new(shape: String, location_name: "sessionPolicy"))
|
|
258
|
+
ProfileDetail.add_member(:role_arns, Shapes::ShapeRef.new(shape: RoleArnList, location_name: "roleArns"))
|
|
259
|
+
ProfileDetail.add_member(:managed_policy_arns, Shapes::ShapeRef.new(shape: ManagedPolicyList, location_name: "managedPolicyArns"))
|
|
260
|
+
ProfileDetail.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "createdAt"))
|
|
264
261
|
ProfileDetail.add_member(:updated_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "updatedAt"))
|
|
262
|
+
ProfileDetail.add_member(:duration_seconds, Shapes::ShapeRef.new(shape: Integer, location_name: "durationSeconds"))
|
|
263
|
+
ProfileDetail.add_member(:accept_role_session_name, Shapes::ShapeRef.new(shape: Boolean, location_name: "acceptRoleSessionName"))
|
|
264
|
+
ProfileDetail.add_member(:attribute_mappings, Shapes::ShapeRef.new(shape: AttributeMappings, location_name: "attributeMappings"))
|
|
265
265
|
ProfileDetail.struct_class = Types::ProfileDetail
|
|
266
266
|
|
|
267
267
|
ProfileDetailResponse.add_member(:profile, Shapes::ShapeRef.new(shape: ProfileDetail, location_name: "profile"))
|
|
@@ -269,23 +269,23 @@ module Aws::RolesAnywhere
|
|
|
269
269
|
|
|
270
270
|
ProfileDetails.member = Shapes::ShapeRef.new(shape: ProfileDetail)
|
|
271
271
|
|
|
272
|
+
PutAttributeMappingRequest.add_member(:profile_id, Shapes::ShapeRef.new(shape: Uuid, required: true, location: "uri", location_name: "profileId"))
|
|
272
273
|
PutAttributeMappingRequest.add_member(:certificate_field, Shapes::ShapeRef.new(shape: CertificateField, required: true, location_name: "certificateField"))
|
|
273
274
|
PutAttributeMappingRequest.add_member(:mapping_rules, Shapes::ShapeRef.new(shape: MappingRules, required: true, location_name: "mappingRules"))
|
|
274
|
-
PutAttributeMappingRequest.add_member(:profile_id, Shapes::ShapeRef.new(shape: Uuid, required: true, location: "uri", location_name: "profileId"))
|
|
275
275
|
PutAttributeMappingRequest.struct_class = Types::PutAttributeMappingRequest
|
|
276
276
|
|
|
277
277
|
PutAttributeMappingResponse.add_member(:profile, Shapes::ShapeRef.new(shape: ProfileDetail, required: true, location_name: "profile"))
|
|
278
278
|
PutAttributeMappingResponse.struct_class = Types::PutAttributeMappingResponse
|
|
279
279
|
|
|
280
|
-
PutNotificationSettingsRequest.add_member(:notification_settings, Shapes::ShapeRef.new(shape: NotificationSettings, required: true, location_name: "notificationSettings"))
|
|
281
280
|
PutNotificationSettingsRequest.add_member(:trust_anchor_id, Shapes::ShapeRef.new(shape: Uuid, required: true, location_name: "trustAnchorId"))
|
|
281
|
+
PutNotificationSettingsRequest.add_member(:notification_settings, Shapes::ShapeRef.new(shape: NotificationSettings, required: true, location_name: "notificationSettings"))
|
|
282
282
|
PutNotificationSettingsRequest.struct_class = Types::PutNotificationSettingsRequest
|
|
283
283
|
|
|
284
284
|
PutNotificationSettingsResponse.add_member(:trust_anchor, Shapes::ShapeRef.new(shape: TrustAnchorDetail, required: true, location_name: "trustAnchor"))
|
|
285
285
|
PutNotificationSettingsResponse.struct_class = Types::PutNotificationSettingsResponse
|
|
286
286
|
|
|
287
|
-
ResetNotificationSettingsRequest.add_member(:notification_setting_keys, Shapes::ShapeRef.new(shape: NotificationSettingKeys, required: true, location_name: "notificationSettingKeys"))
|
|
288
287
|
ResetNotificationSettingsRequest.add_member(:trust_anchor_id, Shapes::ShapeRef.new(shape: Uuid, required: true, location_name: "trustAnchorId"))
|
|
288
|
+
ResetNotificationSettingsRequest.add_member(:notification_setting_keys, Shapes::ShapeRef.new(shape: NotificationSettingKeys, required: true, location_name: "notificationSettingKeys"))
|
|
289
289
|
ResetNotificationSettingsRequest.struct_class = Types::ResetNotificationSettingsRequest
|
|
290
290
|
|
|
291
291
|
ResetNotificationSettingsResponse.add_member(:trust_anchor, Shapes::ShapeRef.new(shape: TrustAnchorDetail, required: true, location_name: "trustAnchor"))
|
|
@@ -308,29 +308,29 @@ module Aws::RolesAnywhere
|
|
|
308
308
|
ScalarTrustAnchorRequest.add_member(:trust_anchor_id, Shapes::ShapeRef.new(shape: Uuid, required: true, location: "uri", location_name: "trustAnchorId"))
|
|
309
309
|
ScalarTrustAnchorRequest.struct_class = Types::ScalarTrustAnchorRequest
|
|
310
310
|
|
|
311
|
-
Source.add_member(:source_data, Shapes::ShapeRef.new(shape: SourceData, location_name: "sourceData"))
|
|
312
311
|
Source.add_member(:source_type, Shapes::ShapeRef.new(shape: TrustAnchorType, location_name: "sourceType"))
|
|
312
|
+
Source.add_member(:source_data, Shapes::ShapeRef.new(shape: SourceData, location_name: "sourceData"))
|
|
313
313
|
Source.struct_class = Types::Source
|
|
314
314
|
|
|
315
|
-
SourceData.add_member(:acm_pca_arn, Shapes::ShapeRef.new(shape: String, location_name: "acmPcaArn"))
|
|
316
315
|
SourceData.add_member(:x509_certificate_data, Shapes::ShapeRef.new(shape: SourceDataX509CertificateDataString, location_name: "x509CertificateData"))
|
|
316
|
+
SourceData.add_member(:acm_pca_arn, Shapes::ShapeRef.new(shape: String, location_name: "acmPcaArn"))
|
|
317
317
|
SourceData.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
318
|
-
SourceData.add_member_subclass(:acm_pca_arn, Types::SourceData::AcmPcaArn)
|
|
319
318
|
SourceData.add_member_subclass(:x509_certificate_data, Types::SourceData::X509CertificateData)
|
|
319
|
+
SourceData.add_member_subclass(:acm_pca_arn, Types::SourceData::AcmPcaArn)
|
|
320
320
|
SourceData.add_member_subclass(:unknown, Types::SourceData::Unknown)
|
|
321
321
|
SourceData.struct_class = Types::SourceData
|
|
322
322
|
|
|
323
323
|
SpecifierList.member = Shapes::ShapeRef.new(shape: String)
|
|
324
324
|
|
|
325
|
-
SubjectDetail.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "createdAt"))
|
|
326
|
-
SubjectDetail.add_member(:credentials, Shapes::ShapeRef.new(shape: CredentialSummaries, location_name: "credentials"))
|
|
327
|
-
SubjectDetail.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "enabled"))
|
|
328
|
-
SubjectDetail.add_member(:instance_properties, Shapes::ShapeRef.new(shape: InstanceProperties, location_name: "instanceProperties"))
|
|
329
|
-
SubjectDetail.add_member(:last_seen_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "lastSeenAt"))
|
|
330
325
|
SubjectDetail.add_member(:subject_arn, Shapes::ShapeRef.new(shape: String, location_name: "subjectArn"))
|
|
331
326
|
SubjectDetail.add_member(:subject_id, Shapes::ShapeRef.new(shape: Uuid, location_name: "subjectId"))
|
|
332
|
-
SubjectDetail.add_member(:
|
|
327
|
+
SubjectDetail.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "enabled"))
|
|
333
328
|
SubjectDetail.add_member(:x509_subject, Shapes::ShapeRef.new(shape: String, location_name: "x509Subject"))
|
|
329
|
+
SubjectDetail.add_member(:last_seen_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "lastSeenAt"))
|
|
330
|
+
SubjectDetail.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "createdAt"))
|
|
331
|
+
SubjectDetail.add_member(:updated_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "updatedAt"))
|
|
332
|
+
SubjectDetail.add_member(:credentials, Shapes::ShapeRef.new(shape: CredentialSummaries, location_name: "credentials"))
|
|
333
|
+
SubjectDetail.add_member(:instance_properties, Shapes::ShapeRef.new(shape: InstanceProperties, location_name: "instanceProperties"))
|
|
334
334
|
SubjectDetail.struct_class = Types::SubjectDetail
|
|
335
335
|
|
|
336
336
|
SubjectDetailResponse.add_member(:subject, Shapes::ShapeRef.new(shape: SubjectDetail, location_name: "subject"))
|
|
@@ -338,13 +338,13 @@ module Aws::RolesAnywhere
|
|
|
338
338
|
|
|
339
339
|
SubjectSummaries.member = Shapes::ShapeRef.new(shape: SubjectSummary)
|
|
340
340
|
|
|
341
|
-
SubjectSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "createdAt"))
|
|
342
|
-
SubjectSummary.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "enabled"))
|
|
343
|
-
SubjectSummary.add_member(:last_seen_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "lastSeenAt"))
|
|
344
341
|
SubjectSummary.add_member(:subject_arn, Shapes::ShapeRef.new(shape: String, location_name: "subjectArn"))
|
|
345
342
|
SubjectSummary.add_member(:subject_id, Shapes::ShapeRef.new(shape: Uuid, location_name: "subjectId"))
|
|
346
|
-
SubjectSummary.add_member(:
|
|
343
|
+
SubjectSummary.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "enabled"))
|
|
347
344
|
SubjectSummary.add_member(:x509_subject, Shapes::ShapeRef.new(shape: String, location_name: "x509Subject"))
|
|
345
|
+
SubjectSummary.add_member(:last_seen_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "lastSeenAt"))
|
|
346
|
+
SubjectSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "createdAt"))
|
|
347
|
+
SubjectSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "updatedAt"))
|
|
348
348
|
SubjectSummary.struct_class = Types::SubjectSummary
|
|
349
349
|
|
|
350
350
|
Tag.add_member(:key, Shapes::ShapeRef.new(shape: TagKey, required: true, location_name: "key"))
|
|
@@ -364,14 +364,14 @@ module Aws::RolesAnywhere
|
|
|
364
364
|
TooManyTagsException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
|
365
365
|
TooManyTagsException.struct_class = Types::TooManyTagsException
|
|
366
366
|
|
|
367
|
-
TrustAnchorDetail.add_member(:
|
|
368
|
-
TrustAnchorDetail.add_member(:
|
|
367
|
+
TrustAnchorDetail.add_member(:trust_anchor_id, Shapes::ShapeRef.new(shape: Uuid, location_name: "trustAnchorId"))
|
|
368
|
+
TrustAnchorDetail.add_member(:trust_anchor_arn, Shapes::ShapeRef.new(shape: String, location_name: "trustAnchorArn"))
|
|
369
369
|
TrustAnchorDetail.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "name"))
|
|
370
|
-
TrustAnchorDetail.add_member(:notification_settings, Shapes::ShapeRef.new(shape: NotificationSettingDetails, location_name: "notificationSettings"))
|
|
371
370
|
TrustAnchorDetail.add_member(:source, Shapes::ShapeRef.new(shape: Source, location_name: "source"))
|
|
372
|
-
TrustAnchorDetail.add_member(:
|
|
373
|
-
TrustAnchorDetail.add_member(:
|
|
371
|
+
TrustAnchorDetail.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "enabled"))
|
|
372
|
+
TrustAnchorDetail.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "createdAt"))
|
|
374
373
|
TrustAnchorDetail.add_member(:updated_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "updatedAt"))
|
|
374
|
+
TrustAnchorDetail.add_member(:notification_settings, Shapes::ShapeRef.new(shape: NotificationSettingDetails, location_name: "notificationSettings"))
|
|
375
375
|
TrustAnchorDetail.struct_class = Types::TrustAnchorDetail
|
|
376
376
|
|
|
377
377
|
TrustAnchorDetailResponse.add_member(:trust_anchor, Shapes::ShapeRef.new(shape: TrustAnchorDetail, required: true, location_name: "trustAnchor"))
|
|
@@ -385,23 +385,23 @@ module Aws::RolesAnywhere
|
|
|
385
385
|
|
|
386
386
|
UntagResourceResponse.struct_class = Types::UntagResourceResponse
|
|
387
387
|
|
|
388
|
-
UpdateCrlRequest.add_member(:crl_data, Shapes::ShapeRef.new(shape: UpdateCrlRequestCrlDataBlob, location_name: "crlData"))
|
|
389
388
|
UpdateCrlRequest.add_member(:crl_id, Shapes::ShapeRef.new(shape: Uuid, required: true, location: "uri", location_name: "crlId"))
|
|
390
389
|
UpdateCrlRequest.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "name"))
|
|
390
|
+
UpdateCrlRequest.add_member(:crl_data, Shapes::ShapeRef.new(shape: UpdateCrlRequestCrlDataBlob, location_name: "crlData"))
|
|
391
391
|
UpdateCrlRequest.struct_class = Types::UpdateCrlRequest
|
|
392
392
|
|
|
393
|
-
UpdateProfileRequest.add_member(:accept_role_session_name, Shapes::ShapeRef.new(shape: Boolean, location_name: "acceptRoleSessionName"))
|
|
394
|
-
UpdateProfileRequest.add_member(:duration_seconds, Shapes::ShapeRef.new(shape: UpdateProfileRequestDurationSecondsInteger, location_name: "durationSeconds"))
|
|
395
|
-
UpdateProfileRequest.add_member(:managed_policy_arns, Shapes::ShapeRef.new(shape: ManagedPolicyList, location_name: "managedPolicyArns"))
|
|
396
|
-
UpdateProfileRequest.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "name"))
|
|
397
393
|
UpdateProfileRequest.add_member(:profile_id, Shapes::ShapeRef.new(shape: Uuid, required: true, location: "uri", location_name: "profileId"))
|
|
398
|
-
UpdateProfileRequest.add_member(:
|
|
394
|
+
UpdateProfileRequest.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "name"))
|
|
399
395
|
UpdateProfileRequest.add_member(:session_policy, Shapes::ShapeRef.new(shape: UpdateProfileRequestSessionPolicyString, location_name: "sessionPolicy"))
|
|
396
|
+
UpdateProfileRequest.add_member(:role_arns, Shapes::ShapeRef.new(shape: RoleArnList, location_name: "roleArns"))
|
|
397
|
+
UpdateProfileRequest.add_member(:managed_policy_arns, Shapes::ShapeRef.new(shape: ManagedPolicyList, location_name: "managedPolicyArns"))
|
|
398
|
+
UpdateProfileRequest.add_member(:duration_seconds, Shapes::ShapeRef.new(shape: UpdateProfileRequestDurationSecondsInteger, location_name: "durationSeconds"))
|
|
399
|
+
UpdateProfileRequest.add_member(:accept_role_session_name, Shapes::ShapeRef.new(shape: Boolean, location_name: "acceptRoleSessionName"))
|
|
400
400
|
UpdateProfileRequest.struct_class = Types::UpdateProfileRequest
|
|
401
401
|
|
|
402
|
+
UpdateTrustAnchorRequest.add_member(:trust_anchor_id, Shapes::ShapeRef.new(shape: Uuid, required: true, location: "uri", location_name: "trustAnchorId"))
|
|
402
403
|
UpdateTrustAnchorRequest.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "name"))
|
|
403
404
|
UpdateTrustAnchorRequest.add_member(:source, Shapes::ShapeRef.new(shape: Source, location_name: "source"))
|
|
404
|
-
UpdateTrustAnchorRequest.add_member(:trust_anchor_id, Shapes::ShapeRef.new(shape: Uuid, required: true, location: "uri", location_name: "trustAnchorId"))
|
|
405
405
|
UpdateTrustAnchorRequest.struct_class = Types::UpdateTrustAnchorRequest
|
|
406
406
|
|
|
407
407
|
ValidationException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
|
@@ -417,7 +417,6 @@ module Aws::RolesAnywhere
|
|
|
417
417
|
"apiVersion" => "2018-05-10",
|
|
418
418
|
"auth" => ["aws.auth#sigv4"],
|
|
419
419
|
"endpointPrefix" => "rolesanywhere",
|
|
420
|
-
"jsonVersion" => "1.1",
|
|
421
420
|
"protocol" => "rest-json",
|
|
422
421
|
"protocols" => ["rest-json"],
|
|
423
422
|
"serviceFullName" => "IAM Roles Anywhere",
|