aws-sdk-lightsail 1.113.0 → 1.114.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-lightsail/client.rb +136 -136
- data/lib/aws-sdk-lightsail/client_api.rb +157 -0
- data/lib/aws-sdk-lightsail/errors.rb +31 -0
- data/lib/aws-sdk-lightsail/types.rb +33 -0
- data/lib/aws-sdk-lightsail.rb +1 -1
- data/sig/client.rbs +3 -3
- data/sig/errors.rbs +6 -0
- data/sig/types.rbs +13 -5
- metadata +1 -1
@@ -553,6 +553,7 @@ module Aws::Lightsail
|
|
553
553
|
Region = Shapes::StructureShape.new(name: 'Region')
|
554
554
|
RegionList = Shapes::ListShape.new(name: 'RegionList')
|
555
555
|
RegionName = Shapes::StringShape.new(name: 'RegionName')
|
556
|
+
RegionSetupInProgressException = Shapes::StructureShape.new(name: 'RegionSetupInProgressException')
|
556
557
|
RegisterContainerImageRequest = Shapes::StructureShape.new(name: 'RegisterContainerImageRequest')
|
557
558
|
RegisterContainerImageResult = Shapes::StructureShape.new(name: 'RegisterContainerImageResult')
|
558
559
|
RegisteredDomainDelegationInfo = Shapes::StructureShape.new(name: 'RegisteredDomainDelegationInfo')
|
@@ -2688,6 +2689,12 @@ module Aws::Lightsail
|
|
2688
2689
|
|
2689
2690
|
RegionList.member = Shapes::ShapeRef.new(shape: Region)
|
2690
2691
|
|
2692
|
+
RegionSetupInProgressException.add_member(:code, Shapes::ShapeRef.new(shape: string, location_name: "code"))
|
2693
|
+
RegionSetupInProgressException.add_member(:docs, Shapes::ShapeRef.new(shape: string, location_name: "docs"))
|
2694
|
+
RegionSetupInProgressException.add_member(:message, Shapes::ShapeRef.new(shape: string, location_name: "message"))
|
2695
|
+
RegionSetupInProgressException.add_member(:tip, Shapes::ShapeRef.new(shape: string, location_name: "tip"))
|
2696
|
+
RegionSetupInProgressException.struct_class = Types::RegionSetupInProgressException
|
2697
|
+
|
2691
2698
|
RegisterContainerImageRequest.add_member(:service_name, Shapes::ShapeRef.new(shape: ContainerServiceName, required: true, location_name: "serviceName"))
|
2692
2699
|
RegisterContainerImageRequest.add_member(:label, Shapes::ShapeRef.new(shape: ContainerLabel, required: true, location_name: "label"))
|
2693
2700
|
RegisterContainerImageRequest.add_member(:digest, Shapes::ShapeRef.new(shape: string, required: true, location_name: "digest"))
|
@@ -3159,6 +3166,7 @@ module Aws::Lightsail
|
|
3159
3166
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3160
3167
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3161
3168
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
3169
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3162
3170
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3163
3171
|
end)
|
3164
3172
|
|
@@ -3188,6 +3196,7 @@ module Aws::Lightsail
|
|
3188
3196
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3189
3197
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3190
3198
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
3199
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3191
3200
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3192
3201
|
end)
|
3193
3202
|
|
@@ -3203,6 +3212,7 @@ module Aws::Lightsail
|
|
3203
3212
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3204
3213
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3205
3214
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
3215
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3206
3216
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3207
3217
|
end)
|
3208
3218
|
|
@@ -3218,6 +3228,7 @@ module Aws::Lightsail
|
|
3218
3228
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3219
3229
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3220
3230
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
3231
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3221
3232
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3222
3233
|
end)
|
3223
3234
|
|
@@ -3233,6 +3244,7 @@ module Aws::Lightsail
|
|
3233
3244
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3234
3245
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3235
3246
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
3247
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3236
3248
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3237
3249
|
end)
|
3238
3250
|
|
@@ -3248,6 +3260,7 @@ module Aws::Lightsail
|
|
3248
3260
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3249
3261
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3250
3262
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
3263
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3251
3264
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3252
3265
|
end)
|
3253
3266
|
|
@@ -3263,6 +3276,7 @@ module Aws::Lightsail
|
|
3263
3276
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3264
3277
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3265
3278
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
3279
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3266
3280
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3267
3281
|
end)
|
3268
3282
|
|
@@ -3276,6 +3290,7 @@ module Aws::Lightsail
|
|
3276
3290
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
3277
3291
|
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
3278
3292
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3293
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3279
3294
|
end)
|
3280
3295
|
|
3281
3296
|
api.add_operation(:create_bucket_access_key, Seahorse::Model::Operation.new.tap do |o|
|
@@ -3289,6 +3304,7 @@ module Aws::Lightsail
|
|
3289
3304
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
3290
3305
|
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
3291
3306
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3307
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3292
3308
|
end)
|
3293
3309
|
|
3294
3310
|
api.add_operation(:create_certificate, Seahorse::Model::Operation.new.tap do |o|
|
@@ -3302,6 +3318,7 @@ module Aws::Lightsail
|
|
3302
3318
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
3303
3319
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3304
3320
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3321
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3305
3322
|
end)
|
3306
3323
|
|
3307
3324
|
api.add_operation(:create_cloud_formation_stack, Seahorse::Model::Operation.new.tap do |o|
|
@@ -3316,6 +3333,7 @@ module Aws::Lightsail
|
|
3316
3333
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3317
3334
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3318
3335
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
3336
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3319
3337
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3320
3338
|
end)
|
3321
3339
|
|
@@ -3331,6 +3349,7 @@ module Aws::Lightsail
|
|
3331
3349
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3332
3350
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3333
3351
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3352
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3334
3353
|
end)
|
3335
3354
|
|
3336
3355
|
api.add_operation(:create_container_service, Seahorse::Model::Operation.new.tap do |o|
|
@@ -3344,6 +3363,7 @@ module Aws::Lightsail
|
|
3344
3363
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
3345
3364
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3346
3365
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3366
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3347
3367
|
end)
|
3348
3368
|
|
3349
3369
|
api.add_operation(:create_container_service_deployment, Seahorse::Model::Operation.new.tap do |o|
|
@@ -3357,6 +3377,7 @@ module Aws::Lightsail
|
|
3357
3377
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
3358
3378
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3359
3379
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3380
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3360
3381
|
end)
|
3361
3382
|
|
3362
3383
|
api.add_operation(:create_container_service_registry_login, Seahorse::Model::Operation.new.tap do |o|
|
@@ -3370,6 +3391,7 @@ module Aws::Lightsail
|
|
3370
3391
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
3371
3392
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3372
3393
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3394
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3373
3395
|
end)
|
3374
3396
|
|
3375
3397
|
api.add_operation(:create_disk, Seahorse::Model::Operation.new.tap do |o|
|
@@ -3384,6 +3406,7 @@ module Aws::Lightsail
|
|
3384
3406
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3385
3407
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3386
3408
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
3409
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3387
3410
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3388
3411
|
end)
|
3389
3412
|
|
@@ -3399,6 +3422,7 @@ module Aws::Lightsail
|
|
3399
3422
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3400
3423
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3401
3424
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
3425
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3402
3426
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3403
3427
|
end)
|
3404
3428
|
|
@@ -3414,6 +3438,7 @@ module Aws::Lightsail
|
|
3414
3438
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3415
3439
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3416
3440
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
3441
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3417
3442
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3418
3443
|
end)
|
3419
3444
|
|
@@ -3443,6 +3468,7 @@ module Aws::Lightsail
|
|
3443
3468
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3444
3469
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3445
3470
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
3471
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3446
3472
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3447
3473
|
end)
|
3448
3474
|
|
@@ -3458,6 +3484,7 @@ module Aws::Lightsail
|
|
3458
3484
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3459
3485
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3460
3486
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
3487
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3461
3488
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3462
3489
|
end)
|
3463
3490
|
|
@@ -3472,6 +3499,7 @@ module Aws::Lightsail
|
|
3472
3499
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
3473
3500
|
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
3474
3501
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3502
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3475
3503
|
end)
|
3476
3504
|
|
3477
3505
|
api.add_operation(:create_instance_snapshot, Seahorse::Model::Operation.new.tap do |o|
|
@@ -3486,6 +3514,7 @@ module Aws::Lightsail
|
|
3486
3514
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3487
3515
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3488
3516
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
3517
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3489
3518
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3490
3519
|
end)
|
3491
3520
|
|
@@ -3501,6 +3530,7 @@ module Aws::Lightsail
|
|
3501
3530
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3502
3531
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3503
3532
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
3533
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3504
3534
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3505
3535
|
end)
|
3506
3536
|
|
@@ -3516,6 +3546,7 @@ module Aws::Lightsail
|
|
3516
3546
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3517
3547
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3518
3548
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
3549
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3519
3550
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3520
3551
|
end)
|
3521
3552
|
|
@@ -3531,6 +3562,7 @@ module Aws::Lightsail
|
|
3531
3562
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3532
3563
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3533
3564
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
3565
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3534
3566
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3535
3567
|
end)
|
3536
3568
|
|
@@ -3546,6 +3578,7 @@ module Aws::Lightsail
|
|
3546
3578
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3547
3579
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3548
3580
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
3581
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3549
3582
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3550
3583
|
end)
|
3551
3584
|
|
@@ -3561,6 +3594,7 @@ module Aws::Lightsail
|
|
3561
3594
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3562
3595
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3563
3596
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
3597
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3564
3598
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3565
3599
|
end)
|
3566
3600
|
|
@@ -3576,6 +3610,7 @@ module Aws::Lightsail
|
|
3576
3610
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3577
3611
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3578
3612
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
3613
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3579
3614
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3580
3615
|
end)
|
3581
3616
|
|
@@ -3591,6 +3626,7 @@ module Aws::Lightsail
|
|
3591
3626
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3592
3627
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3593
3628
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
3629
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3594
3630
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3595
3631
|
end)
|
3596
3632
|
|
@@ -3606,6 +3642,7 @@ module Aws::Lightsail
|
|
3606
3642
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3607
3643
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3608
3644
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
3645
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3609
3646
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3610
3647
|
end)
|
3611
3648
|
|
@@ -3621,6 +3658,7 @@ module Aws::Lightsail
|
|
3621
3658
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3622
3659
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3623
3660
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
3661
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3624
3662
|
end)
|
3625
3663
|
|
3626
3664
|
api.add_operation(:delete_auto_snapshot, Seahorse::Model::Operation.new.tap do |o|
|
@@ -3635,6 +3673,7 @@ module Aws::Lightsail
|
|
3635
3673
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3636
3674
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3637
3675
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3676
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3638
3677
|
end)
|
3639
3678
|
|
3640
3679
|
api.add_operation(:delete_bucket, Seahorse::Model::Operation.new.tap do |o|
|
@@ -3648,6 +3687,7 @@ module Aws::Lightsail
|
|
3648
3687
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
3649
3688
|
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
3650
3689
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3690
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3651
3691
|
end)
|
3652
3692
|
|
3653
3693
|
api.add_operation(:delete_bucket_access_key, Seahorse::Model::Operation.new.tap do |o|
|
@@ -3661,6 +3701,7 @@ module Aws::Lightsail
|
|
3661
3701
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
3662
3702
|
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
3663
3703
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3704
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3664
3705
|
end)
|
3665
3706
|
|
3666
3707
|
api.add_operation(:delete_certificate, Seahorse::Model::Operation.new.tap do |o|
|
@@ -3674,6 +3715,7 @@ module Aws::Lightsail
|
|
3674
3715
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3675
3716
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
3676
3717
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3718
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3677
3719
|
end)
|
3678
3720
|
|
3679
3721
|
api.add_operation(:delete_contact_method, Seahorse::Model::Operation.new.tap do |o|
|
@@ -3688,6 +3730,7 @@ module Aws::Lightsail
|
|
3688
3730
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3689
3731
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3690
3732
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
3733
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3691
3734
|
end)
|
3692
3735
|
|
3693
3736
|
api.add_operation(:delete_container_image, Seahorse::Model::Operation.new.tap do |o|
|
@@ -3701,6 +3744,7 @@ module Aws::Lightsail
|
|
3701
3744
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
3702
3745
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3703
3746
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3747
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3704
3748
|
end)
|
3705
3749
|
|
3706
3750
|
api.add_operation(:delete_container_service, Seahorse::Model::Operation.new.tap do |o|
|
@@ -3714,6 +3758,7 @@ module Aws::Lightsail
|
|
3714
3758
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
3715
3759
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3716
3760
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3761
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3717
3762
|
end)
|
3718
3763
|
|
3719
3764
|
api.add_operation(:delete_disk, Seahorse::Model::Operation.new.tap do |o|
|
@@ -3728,6 +3773,7 @@ module Aws::Lightsail
|
|
3728
3773
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3729
3774
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3730
3775
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
3776
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3731
3777
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3732
3778
|
end)
|
3733
3779
|
|
@@ -3743,6 +3789,7 @@ module Aws::Lightsail
|
|
3743
3789
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3744
3790
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3745
3791
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
3792
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3746
3793
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3747
3794
|
end)
|
3748
3795
|
|
@@ -3772,6 +3819,7 @@ module Aws::Lightsail
|
|
3772
3819
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3773
3820
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3774
3821
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
3822
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3775
3823
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3776
3824
|
end)
|
3777
3825
|
|
@@ -3787,6 +3835,7 @@ module Aws::Lightsail
|
|
3787
3835
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3788
3836
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3789
3837
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
3838
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3790
3839
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3791
3840
|
end)
|
3792
3841
|
|
@@ -3802,6 +3851,7 @@ module Aws::Lightsail
|
|
3802
3851
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3803
3852
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3804
3853
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
3854
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3805
3855
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3806
3856
|
end)
|
3807
3857
|
|
@@ -3817,6 +3867,7 @@ module Aws::Lightsail
|
|
3817
3867
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3818
3868
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3819
3869
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
3870
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3820
3871
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3821
3872
|
end)
|
3822
3873
|
|
@@ -3832,6 +3883,7 @@ module Aws::Lightsail
|
|
3832
3883
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3833
3884
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3834
3885
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
3886
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3835
3887
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3836
3888
|
end)
|
3837
3889
|
|
@@ -3847,6 +3899,7 @@ module Aws::Lightsail
|
|
3847
3899
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3848
3900
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3849
3901
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
3902
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3850
3903
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3851
3904
|
end)
|
3852
3905
|
|
@@ -3862,6 +3915,7 @@ module Aws::Lightsail
|
|
3862
3915
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3863
3916
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3864
3917
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
3918
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3865
3919
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3866
3920
|
end)
|
3867
3921
|
|
@@ -3877,6 +3931,7 @@ module Aws::Lightsail
|
|
3877
3931
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3878
3932
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3879
3933
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
3934
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3880
3935
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3881
3936
|
end)
|
3882
3937
|
|
@@ -3892,6 +3947,7 @@ module Aws::Lightsail
|
|
3892
3947
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3893
3948
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3894
3949
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
3950
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3895
3951
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3896
3952
|
end)
|
3897
3953
|
|
@@ -3907,6 +3963,7 @@ module Aws::Lightsail
|
|
3907
3963
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3908
3964
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3909
3965
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
3966
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3910
3967
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3911
3968
|
end)
|
3912
3969
|
|
@@ -3936,6 +3993,7 @@ module Aws::Lightsail
|
|
3936
3993
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3937
3994
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3938
3995
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
3996
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3939
3997
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3940
3998
|
end)
|
3941
3999
|
|
@@ -3951,6 +4009,7 @@ module Aws::Lightsail
|
|
3951
4009
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3952
4010
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3953
4011
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4012
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3954
4013
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3955
4014
|
end)
|
3956
4015
|
|
@@ -3966,6 +4025,7 @@ module Aws::Lightsail
|
|
3966
4025
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3967
4026
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3968
4027
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4028
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3969
4029
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3970
4030
|
end)
|
3971
4031
|
|
@@ -3981,6 +4041,7 @@ module Aws::Lightsail
|
|
3981
4041
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3982
4042
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3983
4043
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4044
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3984
4045
|
end)
|
3985
4046
|
|
3986
4047
|
api.add_operation(:download_default_key_pair, Seahorse::Model::Operation.new.tap do |o|
|
@@ -3995,6 +4056,7 @@ module Aws::Lightsail
|
|
3995
4056
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
3996
4057
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3997
4058
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4059
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
3998
4060
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
3999
4061
|
end)
|
4000
4062
|
|
@@ -4010,6 +4072,7 @@ module Aws::Lightsail
|
|
4010
4072
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4011
4073
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4012
4074
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4075
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4013
4076
|
end)
|
4014
4077
|
|
4015
4078
|
api.add_operation(:export_snapshot, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4024,6 +4087,7 @@ module Aws::Lightsail
|
|
4024
4087
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4025
4088
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4026
4089
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4090
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4027
4091
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4028
4092
|
end)
|
4029
4093
|
|
@@ -4039,6 +4103,7 @@ module Aws::Lightsail
|
|
4039
4103
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4040
4104
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4041
4105
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4106
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4042
4107
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4043
4108
|
end)
|
4044
4109
|
|
@@ -4054,6 +4119,7 @@ module Aws::Lightsail
|
|
4054
4119
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4055
4120
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4056
4121
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
4122
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4057
4123
|
end)
|
4058
4124
|
|
4059
4125
|
api.add_operation(:get_auto_snapshots, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4068,6 +4134,7 @@ module Aws::Lightsail
|
|
4068
4134
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4069
4135
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4070
4136
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4137
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4071
4138
|
end)
|
4072
4139
|
|
4073
4140
|
api.add_operation(:get_blueprints, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4082,6 +4149,7 @@ module Aws::Lightsail
|
|
4082
4149
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4083
4150
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4084
4151
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4152
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4085
4153
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4086
4154
|
end)
|
4087
4155
|
|
@@ -4096,6 +4164,7 @@ module Aws::Lightsail
|
|
4096
4164
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
4097
4165
|
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
4098
4166
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4167
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4099
4168
|
end)
|
4100
4169
|
|
4101
4170
|
api.add_operation(:get_bucket_bundles, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4108,6 +4177,7 @@ module Aws::Lightsail
|
|
4108
4177
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
4109
4178
|
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
4110
4179
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4180
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4111
4181
|
end)
|
4112
4182
|
|
4113
4183
|
api.add_operation(:get_bucket_metric_data, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4121,6 +4191,7 @@ module Aws::Lightsail
|
|
4121
4191
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
4122
4192
|
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
4123
4193
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4194
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4124
4195
|
end)
|
4125
4196
|
|
4126
4197
|
api.add_operation(:get_buckets, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4134,6 +4205,7 @@ module Aws::Lightsail
|
|
4134
4205
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
4135
4206
|
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
4136
4207
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4208
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4137
4209
|
end)
|
4138
4210
|
|
4139
4211
|
api.add_operation(:get_bundles, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4148,6 +4220,7 @@ module Aws::Lightsail
|
|
4148
4220
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4149
4221
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4150
4222
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4223
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4151
4224
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4152
4225
|
end)
|
4153
4226
|
|
@@ -4162,6 +4235,7 @@ module Aws::Lightsail
|
|
4162
4235
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
4163
4236
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4164
4237
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4238
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4165
4239
|
end)
|
4166
4240
|
|
4167
4241
|
api.add_operation(:get_cloud_formation_stack_records, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4176,6 +4250,7 @@ module Aws::Lightsail
|
|
4176
4250
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4177
4251
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4178
4252
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4253
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4179
4254
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4180
4255
|
end)
|
4181
4256
|
|
@@ -4191,6 +4266,7 @@ module Aws::Lightsail
|
|
4191
4266
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4192
4267
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4193
4268
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4269
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4194
4270
|
end)
|
4195
4271
|
|
4196
4272
|
api.add_operation(:get_container_api_metadata, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4202,6 +4278,7 @@ module Aws::Lightsail
|
|
4202
4278
|
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
4203
4279
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4204
4280
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4281
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4205
4282
|
end)
|
4206
4283
|
|
4207
4284
|
api.add_operation(:get_container_images, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4215,6 +4292,7 @@ module Aws::Lightsail
|
|
4215
4292
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
4216
4293
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4217
4294
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4295
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4218
4296
|
end)
|
4219
4297
|
|
4220
4298
|
api.add_operation(:get_container_log, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4228,6 +4306,7 @@ module Aws::Lightsail
|
|
4228
4306
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
4229
4307
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4230
4308
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4309
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4231
4310
|
end)
|
4232
4311
|
|
4233
4312
|
api.add_operation(:get_container_service_deployments, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4241,6 +4320,7 @@ module Aws::Lightsail
|
|
4241
4320
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
4242
4321
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4243
4322
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4323
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4244
4324
|
end)
|
4245
4325
|
|
4246
4326
|
api.add_operation(:get_container_service_metric_data, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4254,6 +4334,7 @@ module Aws::Lightsail
|
|
4254
4334
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
4255
4335
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4256
4336
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4337
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4257
4338
|
end)
|
4258
4339
|
|
4259
4340
|
api.add_operation(:get_container_service_powers, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4267,6 +4348,7 @@ module Aws::Lightsail
|
|
4267
4348
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
4268
4349
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4269
4350
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4351
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4270
4352
|
end)
|
4271
4353
|
|
4272
4354
|
api.add_operation(:get_container_services, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4280,6 +4362,7 @@ module Aws::Lightsail
|
|
4280
4362
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
4281
4363
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4282
4364
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4365
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4283
4366
|
end)
|
4284
4367
|
|
4285
4368
|
api.add_operation(:get_cost_estimate, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4293,6 +4376,7 @@ module Aws::Lightsail
|
|
4293
4376
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
4294
4377
|
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
4295
4378
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4379
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4296
4380
|
end)
|
4297
4381
|
|
4298
4382
|
api.add_operation(:get_disk, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4307,6 +4391,7 @@ module Aws::Lightsail
|
|
4307
4391
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4308
4392
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4309
4393
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4394
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4310
4395
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4311
4396
|
end)
|
4312
4397
|
|
@@ -4322,6 +4407,7 @@ module Aws::Lightsail
|
|
4322
4407
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4323
4408
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4324
4409
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4410
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4325
4411
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4326
4412
|
end)
|
4327
4413
|
|
@@ -4337,6 +4423,7 @@ module Aws::Lightsail
|
|
4337
4423
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4338
4424
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4339
4425
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4426
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4340
4427
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4341
4428
|
end)
|
4342
4429
|
|
@@ -4352,6 +4439,7 @@ module Aws::Lightsail
|
|
4352
4439
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4353
4440
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4354
4441
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4442
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4355
4443
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4356
4444
|
end)
|
4357
4445
|
|
@@ -4423,6 +4511,7 @@ module Aws::Lightsail
|
|
4423
4511
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4424
4512
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4425
4513
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4514
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4426
4515
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4427
4516
|
end)
|
4428
4517
|
|
@@ -4438,6 +4527,7 @@ module Aws::Lightsail
|
|
4438
4527
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4439
4528
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4440
4529
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4530
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4441
4531
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4442
4532
|
end)
|
4443
4533
|
|
@@ -4453,6 +4543,7 @@ module Aws::Lightsail
|
|
4453
4543
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4454
4544
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4455
4545
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4546
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4456
4547
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4457
4548
|
end)
|
4458
4549
|
|
@@ -4468,6 +4559,7 @@ module Aws::Lightsail
|
|
4468
4559
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4469
4560
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4470
4561
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4562
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4471
4563
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4472
4564
|
end)
|
4473
4565
|
|
@@ -4483,6 +4575,7 @@ module Aws::Lightsail
|
|
4483
4575
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4484
4576
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4485
4577
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4578
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4486
4579
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4487
4580
|
end)
|
4488
4581
|
|
@@ -4498,6 +4591,7 @@ module Aws::Lightsail
|
|
4498
4591
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4499
4592
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4500
4593
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4594
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4501
4595
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4502
4596
|
end)
|
4503
4597
|
|
@@ -4513,6 +4607,7 @@ module Aws::Lightsail
|
|
4513
4607
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4514
4608
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4515
4609
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4610
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4516
4611
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4517
4612
|
end)
|
4518
4613
|
|
@@ -4528,6 +4623,7 @@ module Aws::Lightsail
|
|
4528
4623
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4529
4624
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4530
4625
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4626
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4531
4627
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4532
4628
|
end)
|
4533
4629
|
|
@@ -4543,6 +4639,7 @@ module Aws::Lightsail
|
|
4543
4639
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4544
4640
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4545
4641
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4642
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4546
4643
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4547
4644
|
end)
|
4548
4645
|
|
@@ -4558,6 +4655,7 @@ module Aws::Lightsail
|
|
4558
4655
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4559
4656
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4560
4657
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4658
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4561
4659
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4562
4660
|
end)
|
4563
4661
|
|
@@ -4573,6 +4671,7 @@ module Aws::Lightsail
|
|
4573
4671
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4574
4672
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4575
4673
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4674
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4576
4675
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4577
4676
|
end)
|
4578
4677
|
|
@@ -4588,6 +4687,7 @@ module Aws::Lightsail
|
|
4588
4687
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4589
4688
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4590
4689
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4690
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4591
4691
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4592
4692
|
end)
|
4593
4693
|
|
@@ -4603,6 +4703,7 @@ module Aws::Lightsail
|
|
4603
4703
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4604
4704
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4605
4705
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4706
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4606
4707
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4607
4708
|
end)
|
4608
4709
|
|
@@ -4618,6 +4719,7 @@ module Aws::Lightsail
|
|
4618
4719
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4619
4720
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4620
4721
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4722
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4621
4723
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4622
4724
|
end)
|
4623
4725
|
|
@@ -4633,6 +4735,7 @@ module Aws::Lightsail
|
|
4633
4735
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4634
4736
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4635
4737
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4738
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4636
4739
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4637
4740
|
end)
|
4638
4741
|
|
@@ -4648,6 +4751,7 @@ module Aws::Lightsail
|
|
4648
4751
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4649
4752
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4650
4753
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4754
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4651
4755
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4652
4756
|
end)
|
4653
4757
|
|
@@ -4660,6 +4764,7 @@ module Aws::Lightsail
|
|
4660
4764
|
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
4661
4765
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4662
4766
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4767
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4663
4768
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4664
4769
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
4665
4770
|
end)
|
@@ -4676,6 +4781,7 @@ module Aws::Lightsail
|
|
4676
4781
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4677
4782
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4678
4783
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4784
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4679
4785
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4680
4786
|
end)
|
4681
4787
|
|
@@ -4691,6 +4797,7 @@ module Aws::Lightsail
|
|
4691
4797
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4692
4798
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4693
4799
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4800
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4694
4801
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4695
4802
|
end)
|
4696
4803
|
|
@@ -4706,6 +4813,7 @@ module Aws::Lightsail
|
|
4706
4813
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4707
4814
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4708
4815
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4816
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4709
4817
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4710
4818
|
end)
|
4711
4819
|
|
@@ -4721,6 +4829,7 @@ module Aws::Lightsail
|
|
4721
4829
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4722
4830
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4723
4831
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4832
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4724
4833
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4725
4834
|
end)
|
4726
4835
|
|
@@ -4736,6 +4845,7 @@ module Aws::Lightsail
|
|
4736
4845
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4737
4846
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4738
4847
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4848
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4739
4849
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4740
4850
|
end)
|
4741
4851
|
|
@@ -4751,6 +4861,7 @@ module Aws::Lightsail
|
|
4751
4861
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4752
4862
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4753
4863
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4864
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4754
4865
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4755
4866
|
end)
|
4756
4867
|
|
@@ -4766,6 +4877,7 @@ module Aws::Lightsail
|
|
4766
4877
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4767
4878
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4768
4879
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4880
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4769
4881
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4770
4882
|
end)
|
4771
4883
|
|
@@ -4781,6 +4893,7 @@ module Aws::Lightsail
|
|
4781
4893
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4782
4894
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4783
4895
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4896
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4784
4897
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4785
4898
|
end)
|
4786
4899
|
|
@@ -4796,6 +4909,7 @@ module Aws::Lightsail
|
|
4796
4909
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4797
4910
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4798
4911
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4912
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4799
4913
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4800
4914
|
end)
|
4801
4915
|
|
@@ -4811,6 +4925,7 @@ module Aws::Lightsail
|
|
4811
4925
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4812
4926
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4813
4927
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4928
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4814
4929
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4815
4930
|
end)
|
4816
4931
|
|
@@ -4826,6 +4941,7 @@ module Aws::Lightsail
|
|
4826
4941
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4827
4942
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4828
4943
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4944
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4829
4945
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4830
4946
|
end)
|
4831
4947
|
|
@@ -4841,6 +4957,7 @@ module Aws::Lightsail
|
|
4841
4957
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4842
4958
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4843
4959
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4960
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4844
4961
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4845
4962
|
end)
|
4846
4963
|
|
@@ -4856,6 +4973,7 @@ module Aws::Lightsail
|
|
4856
4973
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4857
4974
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4858
4975
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4976
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4859
4977
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4860
4978
|
end)
|
4861
4979
|
|
@@ -4871,6 +4989,7 @@ module Aws::Lightsail
|
|
4871
4989
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4872
4990
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4873
4991
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
4992
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4874
4993
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4875
4994
|
end)
|
4876
4995
|
|
@@ -4886,6 +5005,7 @@ module Aws::Lightsail
|
|
4886
5005
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4887
5006
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4888
5007
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
5008
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4889
5009
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4890
5010
|
end)
|
4891
5011
|
|
@@ -4901,6 +5021,7 @@ module Aws::Lightsail
|
|
4901
5021
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4902
5022
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4903
5023
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
5024
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4904
5025
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4905
5026
|
end)
|
4906
5027
|
|
@@ -4916,6 +5037,7 @@ module Aws::Lightsail
|
|
4916
5037
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4917
5038
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4918
5039
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
5040
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4919
5041
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4920
5042
|
end)
|
4921
5043
|
|
@@ -4930,6 +5052,7 @@ module Aws::Lightsail
|
|
4930
5052
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
4931
5053
|
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
4932
5054
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
5055
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4933
5056
|
end)
|
4934
5057
|
|
4935
5058
|
api.add_operation(:get_static_ip, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4944,6 +5067,7 @@ module Aws::Lightsail
|
|
4944
5067
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4945
5068
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4946
5069
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
5070
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4947
5071
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4948
5072
|
end)
|
4949
5073
|
|
@@ -4959,6 +5083,7 @@ module Aws::Lightsail
|
|
4959
5083
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4960
5084
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4961
5085
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
5086
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4962
5087
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4963
5088
|
end)
|
4964
5089
|
|
@@ -4974,6 +5099,7 @@ module Aws::Lightsail
|
|
4974
5099
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4975
5100
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4976
5101
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
5102
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4977
5103
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4978
5104
|
end)
|
4979
5105
|
|
@@ -4989,6 +5115,7 @@ module Aws::Lightsail
|
|
4989
5115
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
4990
5116
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4991
5117
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
5118
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
4992
5119
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
4993
5120
|
end)
|
4994
5121
|
|
@@ -5004,6 +5131,7 @@ module Aws::Lightsail
|
|
5004
5131
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
5005
5132
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
5006
5133
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
5134
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
5007
5135
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
5008
5136
|
end)
|
5009
5137
|
|
@@ -5019,6 +5147,7 @@ module Aws::Lightsail
|
|
5019
5147
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
5020
5148
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
5021
5149
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
5150
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
5022
5151
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
5023
5152
|
end)
|
5024
5153
|
|
@@ -5034,6 +5163,7 @@ module Aws::Lightsail
|
|
5034
5163
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
5035
5164
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
5036
5165
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
5166
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
5037
5167
|
end)
|
5038
5168
|
|
5039
5169
|
api.add_operation(:put_instance_public_ports, Seahorse::Model::Operation.new.tap do |o|
|
@@ -5048,6 +5178,7 @@ module Aws::Lightsail
|
|
5048
5178
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
5049
5179
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
5050
5180
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
5181
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
5051
5182
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
5052
5183
|
end)
|
5053
5184
|
|
@@ -5063,6 +5194,7 @@ module Aws::Lightsail
|
|
5063
5194
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
5064
5195
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
5065
5196
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
5197
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
5066
5198
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
5067
5199
|
end)
|
5068
5200
|
|
@@ -5078,6 +5210,7 @@ module Aws::Lightsail
|
|
5078
5210
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
5079
5211
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
5080
5212
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
5213
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
5081
5214
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
5082
5215
|
end)
|
5083
5216
|
|
@@ -5092,6 +5225,7 @@ module Aws::Lightsail
|
|
5092
5225
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
5093
5226
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
5094
5227
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
5228
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
5095
5229
|
end)
|
5096
5230
|
|
5097
5231
|
api.add_operation(:release_static_ip, Seahorse::Model::Operation.new.tap do |o|
|
@@ -5106,6 +5240,7 @@ module Aws::Lightsail
|
|
5106
5240
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
5107
5241
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
5108
5242
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
5243
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
5109
5244
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
5110
5245
|
end)
|
5111
5246
|
|
@@ -5135,6 +5270,7 @@ module Aws::Lightsail
|
|
5135
5270
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
5136
5271
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
5137
5272
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
5273
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
5138
5274
|
end)
|
5139
5275
|
|
5140
5276
|
api.add_operation(:set_ip_address_type, Seahorse::Model::Operation.new.tap do |o|
|
@@ -5149,6 +5285,7 @@ module Aws::Lightsail
|
|
5149
5285
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
5150
5286
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
5151
5287
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
5288
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
5152
5289
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
5153
5290
|
end)
|
5154
5291
|
|
@@ -5163,6 +5300,7 @@ module Aws::Lightsail
|
|
5163
5300
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
5164
5301
|
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
5165
5302
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
5303
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
5166
5304
|
end)
|
5167
5305
|
|
5168
5306
|
api.add_operation(:setup_instance_https, Seahorse::Model::Operation.new.tap do |o|
|
@@ -5176,6 +5314,7 @@ module Aws::Lightsail
|
|
5176
5314
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
5177
5315
|
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
5178
5316
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
5317
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
5179
5318
|
end)
|
5180
5319
|
|
5181
5320
|
api.add_operation(:start_gui_session, Seahorse::Model::Operation.new.tap do |o|
|
@@ -5189,6 +5328,7 @@ module Aws::Lightsail
|
|
5189
5328
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
5190
5329
|
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
5191
5330
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
5331
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
5192
5332
|
end)
|
5193
5333
|
|
5194
5334
|
api.add_operation(:start_instance, Seahorse::Model::Operation.new.tap do |o|
|
@@ -5203,6 +5343,7 @@ module Aws::Lightsail
|
|
5203
5343
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
5204
5344
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
5205
5345
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
5346
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
5206
5347
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
5207
5348
|
end)
|
5208
5349
|
|
@@ -5218,6 +5359,7 @@ module Aws::Lightsail
|
|
5218
5359
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
5219
5360
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
5220
5361
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
5362
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
5221
5363
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
5222
5364
|
end)
|
5223
5365
|
|
@@ -5232,6 +5374,7 @@ module Aws::Lightsail
|
|
5232
5374
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
5233
5375
|
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
5234
5376
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
5377
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
5235
5378
|
end)
|
5236
5379
|
|
5237
5380
|
api.add_operation(:stop_instance, Seahorse::Model::Operation.new.tap do |o|
|
@@ -5246,6 +5389,7 @@ module Aws::Lightsail
|
|
5246
5389
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
5247
5390
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
5248
5391
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
5392
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
5249
5393
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
5250
5394
|
end)
|
5251
5395
|
|
@@ -5261,6 +5405,7 @@ module Aws::Lightsail
|
|
5261
5405
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
5262
5406
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
5263
5407
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
5408
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
5264
5409
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
5265
5410
|
end)
|
5266
5411
|
|
@@ -5276,6 +5421,7 @@ module Aws::Lightsail
|
|
5276
5421
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
5277
5422
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
5278
5423
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
5424
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
5279
5425
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
5280
5426
|
end)
|
5281
5427
|
|
@@ -5291,6 +5437,7 @@ module Aws::Lightsail
|
|
5291
5437
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
5292
5438
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
5293
5439
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
5440
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
5294
5441
|
end)
|
5295
5442
|
|
5296
5443
|
api.add_operation(:unpeer_vpc, Seahorse::Model::Operation.new.tap do |o|
|
@@ -5305,6 +5452,7 @@ module Aws::Lightsail
|
|
5305
5452
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
5306
5453
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
5307
5454
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
5455
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
5308
5456
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
5309
5457
|
end)
|
5310
5458
|
|
@@ -5320,6 +5468,7 @@ module Aws::Lightsail
|
|
5320
5468
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
5321
5469
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
5322
5470
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
5471
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
5323
5472
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
5324
5473
|
end)
|
5325
5474
|
|
@@ -5334,6 +5483,7 @@ module Aws::Lightsail
|
|
5334
5483
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
5335
5484
|
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
5336
5485
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
5486
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
5337
5487
|
end)
|
5338
5488
|
|
5339
5489
|
api.add_operation(:update_bucket_bundle, Seahorse::Model::Operation.new.tap do |o|
|
@@ -5347,6 +5497,7 @@ module Aws::Lightsail
|
|
5347
5497
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
5348
5498
|
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
5349
5499
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
5500
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
5350
5501
|
end)
|
5351
5502
|
|
5352
5503
|
api.add_operation(:update_container_service, Seahorse::Model::Operation.new.tap do |o|
|
@@ -5360,6 +5511,7 @@ module Aws::Lightsail
|
|
5360
5511
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
5361
5512
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
5362
5513
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
5514
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
5363
5515
|
end)
|
5364
5516
|
|
5365
5517
|
api.add_operation(:update_distribution, Seahorse::Model::Operation.new.tap do |o|
|
@@ -5402,6 +5554,7 @@ module Aws::Lightsail
|
|
5402
5554
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
5403
5555
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
5404
5556
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
5557
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
5405
5558
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
5406
5559
|
end)
|
5407
5560
|
|
@@ -5417,6 +5570,7 @@ module Aws::Lightsail
|
|
5417
5570
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
5418
5571
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
5419
5572
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
5573
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
5420
5574
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
5421
5575
|
end)
|
5422
5576
|
|
@@ -5432,6 +5586,7 @@ module Aws::Lightsail
|
|
5432
5586
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
5433
5587
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
5434
5588
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
5589
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
5435
5590
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
5436
5591
|
end)
|
5437
5592
|
|
@@ -5447,6 +5602,7 @@ module Aws::Lightsail
|
|
5447
5602
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
5448
5603
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
5449
5604
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
5605
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
5450
5606
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
5451
5607
|
end)
|
5452
5608
|
|
@@ -5462,6 +5618,7 @@ module Aws::Lightsail
|
|
5462
5618
|
o.errors << Shapes::ShapeRef.new(shape: OperationFailureException)
|
5463
5619
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
5464
5620
|
o.errors << Shapes::ShapeRef.new(shape: AccountSetupInProgressException)
|
5621
|
+
o.errors << Shapes::ShapeRef.new(shape: RegionSetupInProgressException)
|
5465
5622
|
o.errors << Shapes::ShapeRef.new(shape: UnauthenticatedException)
|
5466
5623
|
end)
|
5467
5624
|
end
|