aws-sdk-ivsrealtime 1.25.0 → 1.27.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-ivsrealtime/client.rb +343 -45
- data/lib/aws-sdk-ivsrealtime/client_api.rb +156 -1
- data/lib/aws-sdk-ivsrealtime/endpoints.rb +70 -0
- data/lib/aws-sdk-ivsrealtime/plugins/endpoints.rb +10 -0
- data/lib/aws-sdk-ivsrealtime/types.rb +463 -90
- data/lib/aws-sdk-ivsrealtime.rb +1 -1
- data/sig/client.rbs +62 -0
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +89 -1
- metadata +4 -4
| @@ -18,6 +18,7 @@ module Aws::IVSRealTime | |
| 18 18 | 
             
                AutoParticipantRecordingConfiguration = Shapes::StructureShape.new(name: 'AutoParticipantRecordingConfiguration')
         | 
| 19 19 | 
             
                AutoParticipantRecordingStorageConfigurationArn = Shapes::StringShape.new(name: 'AutoParticipantRecordingStorageConfigurationArn')
         | 
| 20 20 | 
             
                Bitrate = Shapes::IntegerShape.new(name: 'Bitrate')
         | 
| 21 | 
            +
                Boolean = Shapes::BooleanShape.new(name: 'Boolean')
         | 
| 21 22 | 
             
                ChannelArn = Shapes::StringShape.new(name: 'ChannelArn')
         | 
| 22 23 | 
             
                ChannelDestinationConfiguration = Shapes::StructureShape.new(name: 'ChannelDestinationConfiguration')
         | 
| 23 24 | 
             
                Composition = Shapes::StructureShape.new(name: 'Composition')
         | 
| @@ -29,6 +30,8 @@ module Aws::IVSRealTime | |
| 29 30 | 
             
                ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
         | 
| 30 31 | 
             
                CreateEncoderConfigurationRequest = Shapes::StructureShape.new(name: 'CreateEncoderConfigurationRequest')
         | 
| 31 32 | 
             
                CreateEncoderConfigurationResponse = Shapes::StructureShape.new(name: 'CreateEncoderConfigurationResponse')
         | 
| 33 | 
            +
                CreateIngestConfigurationRequest = Shapes::StructureShape.new(name: 'CreateIngestConfigurationRequest')
         | 
| 34 | 
            +
                CreateIngestConfigurationResponse = Shapes::StructureShape.new(name: 'CreateIngestConfigurationResponse')
         | 
| 32 35 | 
             
                CreateParticipantTokenRequest = Shapes::StructureShape.new(name: 'CreateParticipantTokenRequest')
         | 
| 33 36 | 
             
                CreateParticipantTokenResponse = Shapes::StructureShape.new(name: 'CreateParticipantTokenResponse')
         | 
| 34 37 | 
             
                CreateStageRequest = Shapes::StructureShape.new(name: 'CreateStageRequest')
         | 
| @@ -37,6 +40,8 @@ module Aws::IVSRealTime | |
| 37 40 | 
             
                CreateStorageConfigurationResponse = Shapes::StructureShape.new(name: 'CreateStorageConfigurationResponse')
         | 
| 38 41 | 
             
                DeleteEncoderConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteEncoderConfigurationRequest')
         | 
| 39 42 | 
             
                DeleteEncoderConfigurationResponse = Shapes::StructureShape.new(name: 'DeleteEncoderConfigurationResponse')
         | 
| 43 | 
            +
                DeleteIngestConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteIngestConfigurationRequest')
         | 
| 44 | 
            +
                DeleteIngestConfigurationResponse = Shapes::StructureShape.new(name: 'DeleteIngestConfigurationResponse')
         | 
| 40 45 | 
             
                DeletePublicKeyRequest = Shapes::StructureShape.new(name: 'DeletePublicKeyRequest')
         | 
| 41 46 | 
             
                DeletePublicKeyResponse = Shapes::StructureShape.new(name: 'DeletePublicKeyResponse')
         | 
| 42 47 | 
             
                DeleteStageRequest = Shapes::StructureShape.new(name: 'DeleteStageRequest')
         | 
| @@ -70,6 +75,8 @@ module Aws::IVSRealTime | |
| 70 75 | 
             
                GetCompositionResponse = Shapes::StructureShape.new(name: 'GetCompositionResponse')
         | 
| 71 76 | 
             
                GetEncoderConfigurationRequest = Shapes::StructureShape.new(name: 'GetEncoderConfigurationRequest')
         | 
| 72 77 | 
             
                GetEncoderConfigurationResponse = Shapes::StructureShape.new(name: 'GetEncoderConfigurationResponse')
         | 
| 78 | 
            +
                GetIngestConfigurationRequest = Shapes::StructureShape.new(name: 'GetIngestConfigurationRequest')
         | 
| 79 | 
            +
                GetIngestConfigurationResponse = Shapes::StructureShape.new(name: 'GetIngestConfigurationResponse')
         | 
| 73 80 | 
             
                GetParticipantRequest = Shapes::StructureShape.new(name: 'GetParticipantRequest')
         | 
| 74 81 | 
             
                GetParticipantResponse = Shapes::StructureShape.new(name: 'GetParticipantResponse')
         | 
| 75 82 | 
             
                GetPublicKeyRequest = Shapes::StructureShape.new(name: 'GetPublicKeyRequest')
         | 
| @@ -85,12 +92,23 @@ module Aws::IVSRealTime | |
| 85 92 | 
             
                Height = Shapes::IntegerShape.new(name: 'Height')
         | 
| 86 93 | 
             
                ImportPublicKeyRequest = Shapes::StructureShape.new(name: 'ImportPublicKeyRequest')
         | 
| 87 94 | 
             
                ImportPublicKeyResponse = Shapes::StructureShape.new(name: 'ImportPublicKeyResponse')
         | 
| 95 | 
            +
                IngestConfiguration = Shapes::StructureShape.new(name: 'IngestConfiguration')
         | 
| 96 | 
            +
                IngestConfigurationArn = Shapes::StringShape.new(name: 'IngestConfigurationArn')
         | 
| 97 | 
            +
                IngestConfigurationList = Shapes::ListShape.new(name: 'IngestConfigurationList')
         | 
| 98 | 
            +
                IngestConfigurationName = Shapes::StringShape.new(name: 'IngestConfigurationName')
         | 
| 99 | 
            +
                IngestConfigurationStageArn = Shapes::StringShape.new(name: 'IngestConfigurationStageArn')
         | 
| 100 | 
            +
                IngestConfigurationState = Shapes::StringShape.new(name: 'IngestConfigurationState')
         | 
| 101 | 
            +
                IngestConfigurationSummary = Shapes::StructureShape.new(name: 'IngestConfigurationSummary')
         | 
| 102 | 
            +
                IngestProtocol = Shapes::StringShape.new(name: 'IngestProtocol')
         | 
| 103 | 
            +
                InsecureIngest = Shapes::BooleanShape.new(name: 'InsecureIngest')
         | 
| 88 104 | 
             
                InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
         | 
| 89 105 | 
             
                LayoutConfiguration = Shapes::StructureShape.new(name: 'LayoutConfiguration')
         | 
| 90 106 | 
             
                ListCompositionsRequest = Shapes::StructureShape.new(name: 'ListCompositionsRequest')
         | 
| 91 107 | 
             
                ListCompositionsResponse = Shapes::StructureShape.new(name: 'ListCompositionsResponse')
         | 
| 92 108 | 
             
                ListEncoderConfigurationsRequest = Shapes::StructureShape.new(name: 'ListEncoderConfigurationsRequest')
         | 
| 93 109 | 
             
                ListEncoderConfigurationsResponse = Shapes::StructureShape.new(name: 'ListEncoderConfigurationsResponse')
         | 
| 110 | 
            +
                ListIngestConfigurationsRequest = Shapes::StructureShape.new(name: 'ListIngestConfigurationsRequest')
         | 
| 111 | 
            +
                ListIngestConfigurationsResponse = Shapes::StructureShape.new(name: 'ListIngestConfigurationsResponse')
         | 
| 94 112 | 
             
                ListParticipantEventsRequest = Shapes::StructureShape.new(name: 'ListParticipantEventsRequest')
         | 
| 95 113 | 
             
                ListParticipantEventsResponse = Shapes::StructureShape.new(name: 'ListParticipantEventsResponse')
         | 
| 96 114 | 
             
                ListParticipantsRequest = Shapes::StructureShape.new(name: 'ListParticipantsRequest')
         | 
| @@ -107,6 +125,7 @@ module Aws::IVSRealTime | |
| 107 125 | 
             
                ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
         | 
| 108 126 | 
             
                MaxCompositionResults = Shapes::IntegerShape.new(name: 'MaxCompositionResults')
         | 
| 109 127 | 
             
                MaxEncoderConfigurationResults = Shapes::IntegerShape.new(name: 'MaxEncoderConfigurationResults')
         | 
| 128 | 
            +
                MaxIngestConfigurationResults = Shapes::IntegerShape.new(name: 'MaxIngestConfigurationResults')
         | 
| 110 129 | 
             
                MaxParticipantEventResults = Shapes::IntegerShape.new(name: 'MaxParticipantEventResults')
         | 
| 111 130 | 
             
                MaxParticipantResults = Shapes::IntegerShape.new(name: 'MaxParticipantResults')
         | 
| 112 131 | 
             
                MaxPublicKeyResults = Shapes::IntegerShape.new(name: 'MaxPublicKeyResults')
         | 
| @@ -120,6 +139,7 @@ module Aws::IVSRealTime | |
| 120 139 | 
             
                ParticipantClientAttribute = Shapes::StringShape.new(name: 'ParticipantClientAttribute')
         | 
| 121 140 | 
             
                ParticipantId = Shapes::StringShape.new(name: 'ParticipantId')
         | 
| 122 141 | 
             
                ParticipantList = Shapes::ListShape.new(name: 'ParticipantList')
         | 
| 142 | 
            +
                ParticipantProtocol = Shapes::StringShape.new(name: 'ParticipantProtocol')
         | 
| 123 143 | 
             
                ParticipantRecordingFilterByRecordingState = Shapes::StringShape.new(name: 'ParticipantRecordingFilterByRecordingState')
         | 
| 124 144 | 
             
                ParticipantRecordingMediaType = Shapes::StringShape.new(name: 'ParticipantRecordingMediaType')
         | 
| 125 145 | 
             
                ParticipantRecordingMediaTypeList = Shapes::ListShape.new(name: 'ParticipantRecordingMediaTypeList')
         | 
| @@ -184,6 +204,7 @@ module Aws::IVSRealTime | |
| 184 204 | 
             
                StorageConfigurationName = Shapes::StringShape.new(name: 'StorageConfigurationName')
         | 
| 185 205 | 
             
                StorageConfigurationSummary = Shapes::StructureShape.new(name: 'StorageConfigurationSummary')
         | 
| 186 206 | 
             
                StorageConfigurationSummaryList = Shapes::ListShape.new(name: 'StorageConfigurationSummaryList')
         | 
| 207 | 
            +
                StreamKey = Shapes::StringShape.new(name: 'StreamKey')
         | 
| 187 208 | 
             
                String = Shapes::StringShape.new(name: 'String')
         | 
| 188 209 | 
             
                TagKey = Shapes::StringShape.new(name: 'TagKey')
         | 
| 189 210 | 
             
                TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
         | 
| @@ -194,6 +215,8 @@ module Aws::IVSRealTime | |
| 194 215 | 
             
                Time = Shapes::TimestampShape.new(name: 'Time', timestampFormat: "iso8601")
         | 
| 195 216 | 
             
                UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
         | 
| 196 217 | 
             
                UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
         | 
| 218 | 
            +
                UpdateIngestConfigurationRequest = Shapes::StructureShape.new(name: 'UpdateIngestConfigurationRequest')
         | 
| 219 | 
            +
                UpdateIngestConfigurationResponse = Shapes::StructureShape.new(name: 'UpdateIngestConfigurationResponse')
         | 
| 197 220 | 
             
                UpdateStageRequest = Shapes::StructureShape.new(name: 'UpdateStageRequest')
         | 
| 198 221 | 
             
                UpdateStageResponse = Shapes::StructureShape.new(name: 'UpdateStageResponse')
         | 
| 199 222 | 
             
                UserId = Shapes::StringShape.new(name: 'UserId')
         | 
| @@ -247,6 +270,18 @@ module Aws::IVSRealTime | |
| 247 270 | 
             
                CreateEncoderConfigurationResponse.add_member(:encoder_configuration, Shapes::ShapeRef.new(shape: EncoderConfiguration, location_name: "encoderConfiguration"))
         | 
| 248 271 | 
             
                CreateEncoderConfigurationResponse.struct_class = Types::CreateEncoderConfigurationResponse
         | 
| 249 272 |  | 
| 273 | 
            +
                CreateIngestConfigurationRequest.add_member(:name, Shapes::ShapeRef.new(shape: IngestConfigurationName, location_name: "name"))
         | 
| 274 | 
            +
                CreateIngestConfigurationRequest.add_member(:stage_arn, Shapes::ShapeRef.new(shape: IngestConfigurationStageArn, location_name: "stageArn"))
         | 
| 275 | 
            +
                CreateIngestConfigurationRequest.add_member(:user_id, Shapes::ShapeRef.new(shape: UserId, location_name: "userId"))
         | 
| 276 | 
            +
                CreateIngestConfigurationRequest.add_member(:attributes, Shapes::ShapeRef.new(shape: ParticipantAttributes, location_name: "attributes"))
         | 
| 277 | 
            +
                CreateIngestConfigurationRequest.add_member(:ingest_protocol, Shapes::ShapeRef.new(shape: IngestProtocol, required: true, location_name: "ingestProtocol"))
         | 
| 278 | 
            +
                CreateIngestConfigurationRequest.add_member(:insecure_ingest, Shapes::ShapeRef.new(shape: InsecureIngest, location_name: "insecureIngest"))
         | 
| 279 | 
            +
                CreateIngestConfigurationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
         | 
| 280 | 
            +
                CreateIngestConfigurationRequest.struct_class = Types::CreateIngestConfigurationRequest
         | 
| 281 | 
            +
             | 
| 282 | 
            +
                CreateIngestConfigurationResponse.add_member(:ingest_configuration, Shapes::ShapeRef.new(shape: IngestConfiguration, location_name: "ingestConfiguration"))
         | 
| 283 | 
            +
                CreateIngestConfigurationResponse.struct_class = Types::CreateIngestConfigurationResponse
         | 
| 284 | 
            +
             | 
| 250 285 | 
             
                CreateParticipantTokenRequest.add_member(:stage_arn, Shapes::ShapeRef.new(shape: StageArn, required: true, location_name: "stageArn"))
         | 
| 251 286 | 
             
                CreateParticipantTokenRequest.add_member(:duration, Shapes::ShapeRef.new(shape: ParticipantTokenDurationMinutes, location_name: "duration"))
         | 
| 252 287 | 
             
                CreateParticipantTokenRequest.add_member(:user_id, Shapes::ShapeRef.new(shape: ParticipantTokenUserId, location_name: "userId"))
         | 
| @@ -280,6 +315,12 @@ module Aws::IVSRealTime | |
| 280 315 |  | 
| 281 316 | 
             
                DeleteEncoderConfigurationResponse.struct_class = Types::DeleteEncoderConfigurationResponse
         | 
| 282 317 |  | 
| 318 | 
            +
                DeleteIngestConfigurationRequest.add_member(:arn, Shapes::ShapeRef.new(shape: IngestConfigurationArn, required: true, location_name: "arn"))
         | 
| 319 | 
            +
                DeleteIngestConfigurationRequest.add_member(:force, Shapes::ShapeRef.new(shape: Boolean, location_name: "force"))
         | 
| 320 | 
            +
                DeleteIngestConfigurationRequest.struct_class = Types::DeleteIngestConfigurationRequest
         | 
| 321 | 
            +
             | 
| 322 | 
            +
                DeleteIngestConfigurationResponse.struct_class = Types::DeleteIngestConfigurationResponse
         | 
| 323 | 
            +
             | 
| 283 324 | 
             
                DeletePublicKeyRequest.add_member(:arn, Shapes::ShapeRef.new(shape: PublicKeyArn, required: true, location_name: "arn"))
         | 
| 284 325 | 
             
                DeletePublicKeyRequest.struct_class = Types::DeletePublicKeyRequest
         | 
| 285 326 |  | 
| @@ -366,6 +407,12 @@ module Aws::IVSRealTime | |
| 366 407 | 
             
                GetEncoderConfigurationResponse.add_member(:encoder_configuration, Shapes::ShapeRef.new(shape: EncoderConfiguration, location_name: "encoderConfiguration"))
         | 
| 367 408 | 
             
                GetEncoderConfigurationResponse.struct_class = Types::GetEncoderConfigurationResponse
         | 
| 368 409 |  | 
| 410 | 
            +
                GetIngestConfigurationRequest.add_member(:arn, Shapes::ShapeRef.new(shape: IngestConfigurationArn, required: true, location_name: "arn"))
         | 
| 411 | 
            +
                GetIngestConfigurationRequest.struct_class = Types::GetIngestConfigurationRequest
         | 
| 412 | 
            +
             | 
| 413 | 
            +
                GetIngestConfigurationResponse.add_member(:ingest_configuration, Shapes::ShapeRef.new(shape: IngestConfiguration, location_name: "ingestConfiguration"))
         | 
| 414 | 
            +
                GetIngestConfigurationResponse.struct_class = Types::GetIngestConfigurationResponse
         | 
| 415 | 
            +
             | 
| 369 416 | 
             
                GetParticipantRequest.add_member(:stage_arn, Shapes::ShapeRef.new(shape: StageArn, required: true, location_name: "stageArn"))
         | 
| 370 417 | 
             
                GetParticipantRequest.add_member(:session_id, Shapes::ShapeRef.new(shape: StageSessionId, required: true, location_name: "sessionId"))
         | 
| 371 418 | 
             
                GetParticipantRequest.add_member(:participant_id, Shapes::ShapeRef.new(shape: ParticipantId, required: true, location_name: "participantId"))
         | 
| @@ -414,6 +461,29 @@ module Aws::IVSRealTime | |
| 414 461 | 
             
                ImportPublicKeyResponse.add_member(:public_key, Shapes::ShapeRef.new(shape: PublicKey, location_name: "publicKey"))
         | 
| 415 462 | 
             
                ImportPublicKeyResponse.struct_class = Types::ImportPublicKeyResponse
         | 
| 416 463 |  | 
| 464 | 
            +
                IngestConfiguration.add_member(:name, Shapes::ShapeRef.new(shape: IngestConfigurationName, location_name: "name"))
         | 
| 465 | 
            +
                IngestConfiguration.add_member(:arn, Shapes::ShapeRef.new(shape: IngestConfigurationArn, required: true, location_name: "arn"))
         | 
| 466 | 
            +
                IngestConfiguration.add_member(:ingest_protocol, Shapes::ShapeRef.new(shape: IngestProtocol, required: true, location_name: "ingestProtocol"))
         | 
| 467 | 
            +
                IngestConfiguration.add_member(:stream_key, Shapes::ShapeRef.new(shape: StreamKey, required: true, location_name: "streamKey"))
         | 
| 468 | 
            +
                IngestConfiguration.add_member(:stage_arn, Shapes::ShapeRef.new(shape: IngestConfigurationStageArn, required: true, location_name: "stageArn"))
         | 
| 469 | 
            +
                IngestConfiguration.add_member(:participant_id, Shapes::ShapeRef.new(shape: ParticipantId, required: true, location_name: "participantId"))
         | 
| 470 | 
            +
                IngestConfiguration.add_member(:state, Shapes::ShapeRef.new(shape: IngestConfigurationState, required: true, location_name: "state"))
         | 
| 471 | 
            +
                IngestConfiguration.add_member(:user_id, Shapes::ShapeRef.new(shape: UserId, location_name: "userId"))
         | 
| 472 | 
            +
                IngestConfiguration.add_member(:attributes, Shapes::ShapeRef.new(shape: ParticipantAttributes, location_name: "attributes"))
         | 
| 473 | 
            +
                IngestConfiguration.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
         | 
| 474 | 
            +
                IngestConfiguration.struct_class = Types::IngestConfiguration
         | 
| 475 | 
            +
             | 
| 476 | 
            +
                IngestConfigurationList.member = Shapes::ShapeRef.new(shape: IngestConfigurationSummary)
         | 
| 477 | 
            +
             | 
| 478 | 
            +
                IngestConfigurationSummary.add_member(:name, Shapes::ShapeRef.new(shape: IngestConfigurationName, location_name: "name"))
         | 
| 479 | 
            +
                IngestConfigurationSummary.add_member(:arn, Shapes::ShapeRef.new(shape: IngestConfigurationArn, required: true, location_name: "arn"))
         | 
| 480 | 
            +
                IngestConfigurationSummary.add_member(:ingest_protocol, Shapes::ShapeRef.new(shape: IngestProtocol, required: true, location_name: "ingestProtocol"))
         | 
| 481 | 
            +
                IngestConfigurationSummary.add_member(:stage_arn, Shapes::ShapeRef.new(shape: IngestConfigurationStageArn, required: true, location_name: "stageArn"))
         | 
| 482 | 
            +
                IngestConfigurationSummary.add_member(:participant_id, Shapes::ShapeRef.new(shape: ParticipantId, required: true, location_name: "participantId"))
         | 
| 483 | 
            +
                IngestConfigurationSummary.add_member(:state, Shapes::ShapeRef.new(shape: IngestConfigurationState, required: true, location_name: "state"))
         | 
| 484 | 
            +
                IngestConfigurationSummary.add_member(:user_id, Shapes::ShapeRef.new(shape: UserId, location_name: "userId"))
         | 
| 485 | 
            +
                IngestConfigurationSummary.struct_class = Types::IngestConfigurationSummary
         | 
| 486 | 
            +
             | 
| 417 487 | 
             
                InternalServerException.add_member(:exception_message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "exceptionMessage"))
         | 
| 418 488 | 
             
                InternalServerException.struct_class = Types::InternalServerException
         | 
| 419 489 |  | 
| @@ -439,6 +509,16 @@ module Aws::IVSRealTime | |
| 439 509 | 
             
                ListEncoderConfigurationsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
         | 
| 440 510 | 
             
                ListEncoderConfigurationsResponse.struct_class = Types::ListEncoderConfigurationsResponse
         | 
| 441 511 |  | 
| 512 | 
            +
                ListIngestConfigurationsRequest.add_member(:filter_by_stage_arn, Shapes::ShapeRef.new(shape: StageArn, location_name: "filterByStageArn"))
         | 
| 513 | 
            +
                ListIngestConfigurationsRequest.add_member(:filter_by_state, Shapes::ShapeRef.new(shape: IngestConfigurationState, location_name: "filterByState"))
         | 
| 514 | 
            +
                ListIngestConfigurationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
         | 
| 515 | 
            +
                ListIngestConfigurationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxIngestConfigurationResults, location_name: "maxResults"))
         | 
| 516 | 
            +
                ListIngestConfigurationsRequest.struct_class = Types::ListIngestConfigurationsRequest
         | 
| 517 | 
            +
             | 
| 518 | 
            +
                ListIngestConfigurationsResponse.add_member(:ingest_configurations, Shapes::ShapeRef.new(shape: IngestConfigurationList, required: true, location_name: "ingestConfigurations"))
         | 
| 519 | 
            +
                ListIngestConfigurationsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
         | 
| 520 | 
            +
                ListIngestConfigurationsResponse.struct_class = Types::ListIngestConfigurationsResponse
         | 
| 521 | 
            +
             | 
| 442 522 | 
             
                ListParticipantEventsRequest.add_member(:stage_arn, Shapes::ShapeRef.new(shape: StageArn, required: true, location_name: "stageArn"))
         | 
| 443 523 | 
             
                ListParticipantEventsRequest.add_member(:session_id, Shapes::ShapeRef.new(shape: StageSessionId, required: true, location_name: "sessionId"))
         | 
| 444 524 | 
             
                ListParticipantEventsRequest.add_member(:participant_id, Shapes::ShapeRef.new(shape: ParticipantId, required: true, location_name: "participantId"))
         | 
| @@ -518,6 +598,7 @@ module Aws::IVSRealTime | |
| 518 598 | 
             
                Participant.add_member(:recording_s3_bucket_name, Shapes::ShapeRef.new(shape: ParticipantRecordingS3BucketName, location_name: "recordingS3BucketName"))
         | 
| 519 599 | 
             
                Participant.add_member(:recording_s3_prefix, Shapes::ShapeRef.new(shape: ParticipantRecordingS3Prefix, location_name: "recordingS3Prefix"))
         | 
| 520 600 | 
             
                Participant.add_member(:recording_state, Shapes::ShapeRef.new(shape: ParticipantRecordingState, location_name: "recordingState"))
         | 
| 601 | 
            +
                Participant.add_member(:protocol, Shapes::ShapeRef.new(shape: ParticipantProtocol, location_name: "protocol"))
         | 
| 521 602 | 
             
                Participant.struct_class = Types::Participant
         | 
| 522 603 |  | 
| 523 604 | 
             
                ParticipantAttributes.key = Shapes::ShapeRef.new(shape: String)
         | 
| @@ -618,6 +699,8 @@ module Aws::IVSRealTime | |
| 618 699 |  | 
| 619 700 | 
             
                StageEndpoints.add_member(:events, Shapes::ShapeRef.new(shape: StageEndpoint, location_name: "events"))
         | 
| 620 701 | 
             
                StageEndpoints.add_member(:whip, Shapes::ShapeRef.new(shape: StageEndpoint, location_name: "whip"))
         | 
| 702 | 
            +
                StageEndpoints.add_member(:rtmp, Shapes::ShapeRef.new(shape: StageEndpoint, location_name: "rtmp"))
         | 
| 703 | 
            +
                StageEndpoints.add_member(:rtmps, Shapes::ShapeRef.new(shape: StageEndpoint, location_name: "rtmps"))
         | 
| 621 704 | 
             
                StageEndpoints.struct_class = Types::StageEndpoints
         | 
| 622 705 |  | 
| 623 706 | 
             
                StageSession.add_member(:session_id, Shapes::ShapeRef.new(shape: StageSessionId, location_name: "sessionId"))
         | 
| @@ -686,6 +769,13 @@ module Aws::IVSRealTime | |
| 686 769 |  | 
| 687 770 | 
             
                UntagResourceResponse.struct_class = Types::UntagResourceResponse
         | 
| 688 771 |  | 
| 772 | 
            +
                UpdateIngestConfigurationRequest.add_member(:arn, Shapes::ShapeRef.new(shape: IngestConfigurationArn, required: true, location_name: "arn"))
         | 
| 773 | 
            +
                UpdateIngestConfigurationRequest.add_member(:stage_arn, Shapes::ShapeRef.new(shape: IngestConfigurationStageArn, location_name: "stageArn"))
         | 
| 774 | 
            +
                UpdateIngestConfigurationRequest.struct_class = Types::UpdateIngestConfigurationRequest
         | 
| 775 | 
            +
             | 
| 776 | 
            +
                UpdateIngestConfigurationResponse.add_member(:ingest_configuration, Shapes::ShapeRef.new(shape: IngestConfiguration, location_name: "ingestConfiguration"))
         | 
| 777 | 
            +
                UpdateIngestConfigurationResponse.struct_class = Types::UpdateIngestConfigurationResponse
         | 
| 778 | 
            +
             | 
| 689 779 | 
             
                UpdateStageRequest.add_member(:arn, Shapes::ShapeRef.new(shape: StageArn, required: true, location_name: "arn"))
         | 
| 690 780 | 
             
                UpdateStageRequest.add_member(:name, Shapes::ShapeRef.new(shape: StageName, location_name: "name"))
         | 
| 691 781 | 
             
                UpdateStageRequest.add_member(:auto_participant_recording_configuration, Shapes::ShapeRef.new(shape: AutoParticipantRecordingConfiguration, location_name: "autoParticipantRecordingConfiguration"))
         | 
| @@ -712,8 +802,8 @@ module Aws::IVSRealTime | |
| 712 802 | 
             
                  api.metadata = {
         | 
| 713 803 | 
             
                    "apiVersion" => "2020-07-14",
         | 
| 714 804 | 
             
                    "endpointPrefix" => "ivsrealtime",
         | 
| 805 | 
            +
                    "jsonVersion" => "1.1",
         | 
| 715 806 | 
             
                    "protocol" => "rest-json",
         | 
| 716 | 
            -
                    "protocols" => ["rest-json"],
         | 
| 717 807 | 
             
                    "serviceAbbreviation" => "ivsrealtime",
         | 
| 718 808 | 
             
                    "serviceFullName" => "Amazon Interactive Video Service RealTime",
         | 
| 719 809 | 
             
                    "serviceId" => "IVS RealTime",
         | 
| @@ -737,6 +827,18 @@ module Aws::IVSRealTime | |
| 737 827 | 
             
                    o.errors << Shapes::ShapeRef.new(shape: PendingVerification)
         | 
| 738 828 | 
             
                  end)
         | 
| 739 829 |  | 
| 830 | 
            +
                  api.add_operation(:create_ingest_configuration, Seahorse::Model::Operation.new.tap do |o|
         | 
| 831 | 
            +
                    o.name = "CreateIngestConfiguration"
         | 
| 832 | 
            +
                    o.http_method = "POST"
         | 
| 833 | 
            +
                    o.http_request_uri = "/CreateIngestConfiguration"
         | 
| 834 | 
            +
                    o.input = Shapes::ShapeRef.new(shape: CreateIngestConfigurationRequest)
         | 
| 835 | 
            +
                    o.output = Shapes::ShapeRef.new(shape: CreateIngestConfigurationResponse)
         | 
| 836 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: ValidationException)
         | 
| 837 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
         | 
| 838 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
         | 
| 839 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: PendingVerification)
         | 
| 840 | 
            +
                  end)
         | 
| 841 | 
            +
             | 
| 740 842 | 
             
                  api.add_operation(:create_participant_token, Seahorse::Model::Operation.new.tap do |o|
         | 
| 741 843 | 
             
                    o.name = "CreateParticipantToken"
         | 
| 742 844 | 
             
                    o.http_method = "POST"
         | 
| @@ -791,6 +893,19 @@ module Aws::IVSRealTime | |
| 791 893 | 
             
                    o.errors << Shapes::ShapeRef.new(shape: ConflictException)
         | 
| 792 894 | 
             
                  end)
         | 
| 793 895 |  | 
| 896 | 
            +
                  api.add_operation(:delete_ingest_configuration, Seahorse::Model::Operation.new.tap do |o|
         | 
| 897 | 
            +
                    o.name = "DeleteIngestConfiguration"
         | 
| 898 | 
            +
                    o.http_method = "POST"
         | 
| 899 | 
            +
                    o.http_request_uri = "/DeleteIngestConfiguration"
         | 
| 900 | 
            +
                    o.input = Shapes::ShapeRef.new(shape: DeleteIngestConfigurationRequest)
         | 
| 901 | 
            +
                    o.output = Shapes::ShapeRef.new(shape: DeleteIngestConfigurationResponse)
         | 
| 902 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
         | 
| 903 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: ValidationException)
         | 
| 904 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
         | 
| 905 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: ConflictException)
         | 
| 906 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: PendingVerification)
         | 
| 907 | 
            +
                  end)
         | 
| 908 | 
            +
             | 
| 794 909 | 
             
                  api.add_operation(:delete_public_key, Seahorse::Model::Operation.new.tap do |o|
         | 
| 795 910 | 
             
                    o.name = "DeletePublicKey"
         | 
| 796 911 | 
             
                    o.http_method = "POST"
         | 
| @@ -871,6 +986,17 @@ module Aws::IVSRealTime | |
| 871 986 | 
             
                    o.errors << Shapes::ShapeRef.new(shape: ConflictException)
         | 
| 872 987 | 
             
                  end)
         | 
| 873 988 |  | 
| 989 | 
            +
                  api.add_operation(:get_ingest_configuration, Seahorse::Model::Operation.new.tap do |o|
         | 
| 990 | 
            +
                    o.name = "GetIngestConfiguration"
         | 
| 991 | 
            +
                    o.http_method = "POST"
         | 
| 992 | 
            +
                    o.http_request_uri = "/GetIngestConfiguration"
         | 
| 993 | 
            +
                    o.input = Shapes::ShapeRef.new(shape: GetIngestConfigurationRequest)
         | 
| 994 | 
            +
                    o.output = Shapes::ShapeRef.new(shape: GetIngestConfigurationResponse)
         | 
| 995 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
         | 
| 996 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: ValidationException)
         | 
| 997 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
         | 
| 998 | 
            +
                  end)
         | 
| 999 | 
            +
             | 
| 874 1000 | 
             
                  api.add_operation(:get_participant, Seahorse::Model::Operation.new.tap do |o|
         | 
| 875 1001 | 
             
                    o.name = "GetParticipant"
         | 
| 876 1002 | 
             
                    o.http_method = "POST"
         | 
| @@ -980,6 +1106,22 @@ module Aws::IVSRealTime | |
| 980 1106 | 
             
                    )
         | 
| 981 1107 | 
             
                  end)
         | 
| 982 1108 |  | 
| 1109 | 
            +
                  api.add_operation(:list_ingest_configurations, Seahorse::Model::Operation.new.tap do |o|
         | 
| 1110 | 
            +
                    o.name = "ListIngestConfigurations"
         | 
| 1111 | 
            +
                    o.http_method = "POST"
         | 
| 1112 | 
            +
                    o.http_request_uri = "/ListIngestConfigurations"
         | 
| 1113 | 
            +
                    o.input = Shapes::ShapeRef.new(shape: ListIngestConfigurationsRequest)
         | 
| 1114 | 
            +
                    o.output = Shapes::ShapeRef.new(shape: ListIngestConfigurationsResponse)
         | 
| 1115 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: ValidationException)
         | 
| 1116 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
         | 
| 1117 | 
            +
                    o[:pager] = Aws::Pager.new(
         | 
| 1118 | 
            +
                      limit_key: "max_results",
         | 
| 1119 | 
            +
                      tokens: {
         | 
| 1120 | 
            +
                        "next_token" => "next_token"
         | 
| 1121 | 
            +
                      }
         | 
| 1122 | 
            +
                    )
         | 
| 1123 | 
            +
                  end)
         | 
| 1124 | 
            +
             | 
| 983 1125 | 
             
                  api.add_operation(:list_participant_events, Seahorse::Model::Operation.new.tap do |o|
         | 
| 984 1126 | 
             
                    o.name = "ListParticipantEvents"
         | 
| 985 1127 | 
             
                    o.http_method = "POST"
         | 
| @@ -1142,6 +1284,19 @@ module Aws::IVSRealTime | |
| 1142 1284 | 
             
                    o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
         | 
| 1143 1285 | 
             
                  end)
         | 
| 1144 1286 |  | 
| 1287 | 
            +
                  api.add_operation(:update_ingest_configuration, Seahorse::Model::Operation.new.tap do |o|
         | 
| 1288 | 
            +
                    o.name = "UpdateIngestConfiguration"
         | 
| 1289 | 
            +
                    o.http_method = "POST"
         | 
| 1290 | 
            +
                    o.http_request_uri = "/UpdateIngestConfiguration"
         | 
| 1291 | 
            +
                    o.input = Shapes::ShapeRef.new(shape: UpdateIngestConfigurationRequest)
         | 
| 1292 | 
            +
                    o.output = Shapes::ShapeRef.new(shape: UpdateIngestConfigurationResponse)
         | 
| 1293 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
         | 
| 1294 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: ValidationException)
         | 
| 1295 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
         | 
| 1296 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: ConflictException)
         | 
| 1297 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: PendingVerification)
         | 
| 1298 | 
            +
                  end)
         | 
| 1299 | 
            +
             | 
| 1145 1300 | 
             
                  api.add_operation(:update_stage, Seahorse::Model::Operation.new.tap do |o|
         | 
| 1146 1301 | 
             
                    o.name = "UpdateStage"
         | 
| 1147 1302 | 
             
                    o.http_method = "POST"
         | 
| @@ -26,6 +26,20 @@ module Aws::IVSRealTime | |
| 26 26 | 
             
                  end
         | 
| 27 27 | 
             
                end
         | 
| 28 28 |  | 
| 29 | 
            +
                class CreateIngestConfiguration
         | 
| 30 | 
            +
                  def self.build(context)
         | 
| 31 | 
            +
                    unless context.config.regional_endpoint
         | 
| 32 | 
            +
                      endpoint = context.config.endpoint.to_s
         | 
| 33 | 
            +
                    end
         | 
| 34 | 
            +
                    Aws::IVSRealTime::EndpointParameters.new(
         | 
| 35 | 
            +
                      region: context.config.region,
         | 
| 36 | 
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         | 
| 37 | 
            +
                      use_fips: context.config.use_fips_endpoint,
         | 
| 38 | 
            +
                      endpoint: endpoint,
         | 
| 39 | 
            +
                    )
         | 
| 40 | 
            +
                  end
         | 
| 41 | 
            +
                end
         | 
| 42 | 
            +
             | 
| 29 43 | 
             
                class CreateParticipantToken
         | 
| 30 44 | 
             
                  def self.build(context)
         | 
| 31 45 | 
             
                    unless context.config.regional_endpoint
         | 
| @@ -82,6 +96,20 @@ module Aws::IVSRealTime | |
| 82 96 | 
             
                  end
         | 
| 83 97 | 
             
                end
         | 
| 84 98 |  | 
| 99 | 
            +
                class DeleteIngestConfiguration
         | 
| 100 | 
            +
                  def self.build(context)
         | 
| 101 | 
            +
                    unless context.config.regional_endpoint
         | 
| 102 | 
            +
                      endpoint = context.config.endpoint.to_s
         | 
| 103 | 
            +
                    end
         | 
| 104 | 
            +
                    Aws::IVSRealTime::EndpointParameters.new(
         | 
| 105 | 
            +
                      region: context.config.region,
         | 
| 106 | 
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         | 
| 107 | 
            +
                      use_fips: context.config.use_fips_endpoint,
         | 
| 108 | 
            +
                      endpoint: endpoint,
         | 
| 109 | 
            +
                    )
         | 
| 110 | 
            +
                  end
         | 
| 111 | 
            +
                end
         | 
| 112 | 
            +
             | 
| 85 113 | 
             
                class DeletePublicKey
         | 
| 86 114 | 
             
                  def self.build(context)
         | 
| 87 115 | 
             
                    unless context.config.regional_endpoint
         | 
| @@ -166,6 +194,20 @@ module Aws::IVSRealTime | |
| 166 194 | 
             
                  end
         | 
| 167 195 | 
             
                end
         | 
| 168 196 |  | 
| 197 | 
            +
                class GetIngestConfiguration
         | 
| 198 | 
            +
                  def self.build(context)
         | 
| 199 | 
            +
                    unless context.config.regional_endpoint
         | 
| 200 | 
            +
                      endpoint = context.config.endpoint.to_s
         | 
| 201 | 
            +
                    end
         | 
| 202 | 
            +
                    Aws::IVSRealTime::EndpointParameters.new(
         | 
| 203 | 
            +
                      region: context.config.region,
         | 
| 204 | 
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         | 
| 205 | 
            +
                      use_fips: context.config.use_fips_endpoint,
         | 
| 206 | 
            +
                      endpoint: endpoint,
         | 
| 207 | 
            +
                    )
         | 
| 208 | 
            +
                  end
         | 
| 209 | 
            +
                end
         | 
| 210 | 
            +
             | 
| 169 211 | 
             
                class GetParticipant
         | 
| 170 212 | 
             
                  def self.build(context)
         | 
| 171 213 | 
             
                    unless context.config.regional_endpoint
         | 
| @@ -278,6 +320,20 @@ module Aws::IVSRealTime | |
| 278 320 | 
             
                  end
         | 
| 279 321 | 
             
                end
         | 
| 280 322 |  | 
| 323 | 
            +
                class ListIngestConfigurations
         | 
| 324 | 
            +
                  def self.build(context)
         | 
| 325 | 
            +
                    unless context.config.regional_endpoint
         | 
| 326 | 
            +
                      endpoint = context.config.endpoint.to_s
         | 
| 327 | 
            +
                    end
         | 
| 328 | 
            +
                    Aws::IVSRealTime::EndpointParameters.new(
         | 
| 329 | 
            +
                      region: context.config.region,
         | 
| 330 | 
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         | 
| 331 | 
            +
                      use_fips: context.config.use_fips_endpoint,
         | 
| 332 | 
            +
                      endpoint: endpoint,
         | 
| 333 | 
            +
                    )
         | 
| 334 | 
            +
                  end
         | 
| 335 | 
            +
                end
         | 
| 336 | 
            +
             | 
| 281 337 | 
             
                class ListParticipantEvents
         | 
| 282 338 | 
             
                  def self.build(context)
         | 
| 283 339 | 
             
                    unless context.config.regional_endpoint
         | 
| @@ -432,6 +488,20 @@ module Aws::IVSRealTime | |
| 432 488 | 
             
                  end
         | 
| 433 489 | 
             
                end
         | 
| 434 490 |  | 
| 491 | 
            +
                class UpdateIngestConfiguration
         | 
| 492 | 
            +
                  def self.build(context)
         | 
| 493 | 
            +
                    unless context.config.regional_endpoint
         | 
| 494 | 
            +
                      endpoint = context.config.endpoint.to_s
         | 
| 495 | 
            +
                    end
         | 
| 496 | 
            +
                    Aws::IVSRealTime::EndpointParameters.new(
         | 
| 497 | 
            +
                      region: context.config.region,
         | 
| 498 | 
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         | 
| 499 | 
            +
                      use_fips: context.config.use_fips_endpoint,
         | 
| 500 | 
            +
                      endpoint: endpoint,
         | 
| 501 | 
            +
                    )
         | 
| 502 | 
            +
                  end
         | 
| 503 | 
            +
                end
         | 
| 504 | 
            +
             | 
| 435 505 | 
             
                class UpdateStage
         | 
| 436 506 | 
             
                  def self.build(context)
         | 
| 437 507 | 
             
                    unless context.config.regional_endpoint
         | 
| @@ -60,6 +60,8 @@ module Aws::IVSRealTime | |
| 60 60 | 
             
                      case context.operation_name
         | 
| 61 61 | 
             
                      when :create_encoder_configuration
         | 
| 62 62 | 
             
                        Aws::IVSRealTime::Endpoints::CreateEncoderConfiguration.build(context)
         | 
| 63 | 
            +
                      when :create_ingest_configuration
         | 
| 64 | 
            +
                        Aws::IVSRealTime::Endpoints::CreateIngestConfiguration.build(context)
         | 
| 63 65 | 
             
                      when :create_participant_token
         | 
| 64 66 | 
             
                        Aws::IVSRealTime::Endpoints::CreateParticipantToken.build(context)
         | 
| 65 67 | 
             
                      when :create_stage
         | 
| @@ -68,6 +70,8 @@ module Aws::IVSRealTime | |
| 68 70 | 
             
                        Aws::IVSRealTime::Endpoints::CreateStorageConfiguration.build(context)
         | 
| 69 71 | 
             
                      when :delete_encoder_configuration
         | 
| 70 72 | 
             
                        Aws::IVSRealTime::Endpoints::DeleteEncoderConfiguration.build(context)
         | 
| 73 | 
            +
                      when :delete_ingest_configuration
         | 
| 74 | 
            +
                        Aws::IVSRealTime::Endpoints::DeleteIngestConfiguration.build(context)
         | 
| 71 75 | 
             
                      when :delete_public_key
         | 
| 72 76 | 
             
                        Aws::IVSRealTime::Endpoints::DeletePublicKey.build(context)
         | 
| 73 77 | 
             
                      when :delete_stage
         | 
| @@ -80,6 +84,8 @@ module Aws::IVSRealTime | |
| 80 84 | 
             
                        Aws::IVSRealTime::Endpoints::GetComposition.build(context)
         | 
| 81 85 | 
             
                      when :get_encoder_configuration
         | 
| 82 86 | 
             
                        Aws::IVSRealTime::Endpoints::GetEncoderConfiguration.build(context)
         | 
| 87 | 
            +
                      when :get_ingest_configuration
         | 
| 88 | 
            +
                        Aws::IVSRealTime::Endpoints::GetIngestConfiguration.build(context)
         | 
| 83 89 | 
             
                      when :get_participant
         | 
| 84 90 | 
             
                        Aws::IVSRealTime::Endpoints::GetParticipant.build(context)
         | 
| 85 91 | 
             
                      when :get_public_key
         | 
| @@ -96,6 +102,8 @@ module Aws::IVSRealTime | |
| 96 102 | 
             
                        Aws::IVSRealTime::Endpoints::ListCompositions.build(context)
         | 
| 97 103 | 
             
                      when :list_encoder_configurations
         | 
| 98 104 | 
             
                        Aws::IVSRealTime::Endpoints::ListEncoderConfigurations.build(context)
         | 
| 105 | 
            +
                      when :list_ingest_configurations
         | 
| 106 | 
            +
                        Aws::IVSRealTime::Endpoints::ListIngestConfigurations.build(context)
         | 
| 99 107 | 
             
                      when :list_participant_events
         | 
| 100 108 | 
             
                        Aws::IVSRealTime::Endpoints::ListParticipantEvents.build(context)
         | 
| 101 109 | 
             
                      when :list_participants
         | 
| @@ -118,6 +126,8 @@ module Aws::IVSRealTime | |
| 118 126 | 
             
                        Aws::IVSRealTime::Endpoints::TagResource.build(context)
         | 
| 119 127 | 
             
                      when :untag_resource
         | 
| 120 128 | 
             
                        Aws::IVSRealTime::Endpoints::UntagResource.build(context)
         | 
| 129 | 
            +
                      when :update_ingest_configuration
         | 
| 130 | 
            +
                        Aws::IVSRealTime::Endpoints::UpdateIngestConfiguration.build(context)
         | 
| 121 131 | 
             
                      when :update_stage
         | 
| 122 132 | 
             
                        Aws::IVSRealTime::Endpoints::UpdateStage.build(context)
         | 
| 123 133 | 
             
                      end
         |