aws-sdk-appconfig 1.82.0 → 1.83.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.
data/sig/types.rbs CHANGED
@@ -10,6 +10,7 @@ module Aws::AppConfig
10
10
 
11
11
  class AccountSettings
12
12
  attr_accessor deletion_protection: Types::DeletionProtectionSettings
13
+ attr_accessor vended_metrics: Types::VendedMetricsSettings
13
14
  SENSITIVE: []
14
15
  end
15
16
 
@@ -53,6 +54,29 @@ module Aws::AppConfig
53
54
  SENSITIVE: []
54
55
  end
55
56
 
57
+ class AttributeValue
58
+ attr_accessor string_value: ::String
59
+ attr_accessor number_value: ::Float
60
+ attr_accessor boolean_value: bool
61
+ attr_accessor string_array: ::Array[::String]
62
+ attr_accessor number_array: ::Array[::Float]
63
+ attr_accessor unknown: untyped
64
+ SENSITIVE: []
65
+
66
+ class StringValue < AttributeValue
67
+ end
68
+ class NumberValue < AttributeValue
69
+ end
70
+ class BooleanValue < AttributeValue
71
+ end
72
+ class StringArray < AttributeValue
73
+ end
74
+ class NumberArray < AttributeValue
75
+ end
76
+ class Unknown < AttributeValue
77
+ end
78
+ end
79
+
56
80
  class BadRequestDetails
57
81
  attr_accessor invalid_configuration: ::Array[Types::InvalidConfigurationDetail]
58
82
  attr_accessor unknown: untyped
@@ -154,6 +178,22 @@ module Aws::AppConfig
154
178
  SENSITIVE: []
155
179
  end
156
180
 
181
+ class CreateExperimentDefinitionRequest
182
+ attr_accessor application_identifier: ::String
183
+ attr_accessor name: ::String
184
+ attr_accessor configuration_profile_identifier: ::String
185
+ attr_accessor environment_identifier: ::String
186
+ attr_accessor flag_key: ::String
187
+ attr_accessor treatments: ::Array[Types::TreatmentInput]
188
+ attr_accessor control: Types::TreatmentInput
189
+ attr_accessor audience_rule: ::String
190
+ attr_accessor hypothesis: ::String
191
+ attr_accessor audience_description: ::String
192
+ attr_accessor launch_criteria: ::String
193
+ attr_accessor tags: ::Hash[::String, ::String]
194
+ SENSITIVE: []
195
+ end
196
+
157
197
  class CreateExtensionAssociationRequest
158
198
  attr_accessor extension_identifier: ::String
159
199
  attr_accessor extension_version_number: ::Integer
@@ -208,6 +248,13 @@ module Aws::AppConfig
208
248
  SENSITIVE: []
209
249
  end
210
250
 
251
+ class DeleteExperimentDefinitionRequest
252
+ attr_accessor application_identifier: ::String
253
+ attr_accessor experiment_definition_identifier: ::String
254
+ attr_accessor delete_type: ("ARCHIVE" | "DESTROY")
255
+ SENSITIVE: []
256
+ end
257
+
211
258
  class DeleteExtensionAssociationRequest
212
259
  attr_accessor extension_association_id: ::String
213
260
  SENSITIVE: []
@@ -267,6 +314,12 @@ module Aws::AppConfig
267
314
  SENSITIVE: []
268
315
  end
269
316
 
317
+ class DeploymentParameters
318
+ attr_accessor dynamic_extension_parameters: ::Hash[::String, ::String]
319
+ attr_accessor tags: ::Hash[::String, ::String]
320
+ SENSITIVE: [:dynamic_extension_parameters]
321
+ end
322
+
270
323
  class DeploymentStrategies
271
324
  attr_accessor items: ::Array[Types::DeploymentStrategy]
272
325
  attr_accessor next_token: ::String
@@ -287,6 +340,7 @@ module Aws::AppConfig
287
340
 
288
341
  class DeploymentSummary
289
342
  attr_accessor deployment_number: ::Integer
343
+ attr_accessor configuration_profile_id: ::String
290
344
  attr_accessor configuration_name: ::String
291
345
  attr_accessor configuration_version: ::String
292
346
  attr_accessor deployment_duration_in_minutes: ::Integer
@@ -298,6 +352,7 @@ module Aws::AppConfig
298
352
  attr_accessor started_at: ::Time
299
353
  attr_accessor completed_at: ::Time
300
354
  attr_accessor version_label: ::String
355
+ attr_accessor type: ("USER" | "MANAGED")
301
356
  SENSITIVE: []
302
357
  end
303
358
 
@@ -323,6 +378,119 @@ module Aws::AppConfig
323
378
  SENSITIVE: []
324
379
  end
325
380
 
381
+ class ExperimentDefinition
382
+ attr_accessor application_id: ::String
383
+ attr_accessor id: ::String
384
+ attr_accessor name: ::String
385
+ attr_accessor hypothesis: ::String
386
+ attr_accessor status: ("ACTIVE" | "IDLE" | "ARCHIVED")
387
+ attr_accessor configuration_profile_id: ::String
388
+ attr_accessor environment_id: ::String
389
+ attr_accessor flag_key: ::String
390
+ attr_accessor audience_rule: ::String
391
+ attr_accessor audience_description: ::String
392
+ attr_accessor launch_criteria: ::String
393
+ attr_accessor treatments: ::Array[Types::Treatment]
394
+ attr_accessor control: Types::Treatment
395
+ attr_accessor created_at: ::Time
396
+ attr_accessor updated_at: ::Time
397
+ attr_accessor kms_key_identifier: ::String
398
+ SENSITIVE: []
399
+ end
400
+
401
+ class ExperimentDefinitionSnapshot
402
+ attr_accessor application_id: ::String
403
+ attr_accessor id: ::String
404
+ attr_accessor name: ::String
405
+ attr_accessor hypothesis: ::String
406
+ attr_accessor configuration_profile_id: ::String
407
+ attr_accessor environment_id: ::String
408
+ attr_accessor flag_key: ::String
409
+ attr_accessor audience_rule: ::String
410
+ attr_accessor audience_description: ::String
411
+ attr_accessor launch_criteria: ::String
412
+ attr_accessor treatments: ::Array[Types::Treatment]
413
+ attr_accessor control: Types::Treatment
414
+ SENSITIVE: []
415
+ end
416
+
417
+ class ExperimentDefinitionSummary
418
+ attr_accessor application_id: ::String
419
+ attr_accessor id: ::String
420
+ attr_accessor name: ::String
421
+ attr_accessor hypothesis: ::String
422
+ attr_accessor status: ("ACTIVE" | "IDLE" | "ARCHIVED")
423
+ attr_accessor configuration_profile_id: ::String
424
+ attr_accessor environment_id: ::String
425
+ attr_accessor flag_key: ::String
426
+ attr_accessor created_at: ::Time
427
+ attr_accessor updated_at: ::Time
428
+ SENSITIVE: []
429
+ end
430
+
431
+ class ExperimentDefinitions
432
+ attr_accessor items: ::Array[Types::ExperimentDefinitionSummary]
433
+ attr_accessor next_token: ::String
434
+ SENSITIVE: []
435
+ end
436
+
437
+ class ExperimentRun
438
+ attr_accessor application_id: ::String
439
+ attr_accessor experiment_definition_id: ::String
440
+ attr_accessor run: ::Integer
441
+ attr_accessor description: ::String
442
+ attr_accessor status: ("RUNNING" | "DONE")
443
+ attr_accessor exposure_percentage: ::Float
444
+ attr_accessor treatment_overrides: Types::TreatmentOverrides
445
+ attr_accessor result: Types::ExperimentRunResult
446
+ attr_accessor started_at: ::Time
447
+ attr_accessor updated_at: ::Time
448
+ attr_accessor ended_at: ::Time
449
+ attr_accessor experiment_definition_snapshot: Types::ExperimentDefinitionSnapshot
450
+ SENSITIVE: []
451
+ end
452
+
453
+ class ExperimentRunEvent
454
+ attr_accessor description: ::String
455
+ attr_accessor associated_deployment: ::String
456
+ attr_accessor event_type: ("RUN_STARTED" | "EXPOSURE_UPDATED" | "OVERRIDES_UPDATED" | "RUN_STOPPED")
457
+ attr_accessor occurred_at: ::Time
458
+ attr_accessor triggered_by: ("USER" | "APPCONFIG" | "CLOUDWATCH_ALARM" | "INTERNAL_ERROR")
459
+ attr_accessor exposure_percentage: ::Float
460
+ attr_accessor treatment_overrides: Types::TreatmentOverrides
461
+ SENSITIVE: []
462
+ end
463
+
464
+ class ExperimentRunEvents
465
+ attr_accessor items: ::Array[Types::ExperimentRunEvent]
466
+ attr_accessor next_token: ::String
467
+ SENSITIVE: []
468
+ end
469
+
470
+ class ExperimentRunResult
471
+ attr_accessor executive_summary: ::String
472
+ attr_accessor reasons_to_launch: ::String
473
+ attr_accessor reasons_not_to_launch: ::String
474
+ SENSITIVE: []
475
+ end
476
+
477
+ class ExperimentRunSummary
478
+ attr_accessor experiment_definition_id: ::String
479
+ attr_accessor run: ::Integer
480
+ attr_accessor description: ::String
481
+ attr_accessor status: ("RUNNING" | "DONE")
482
+ attr_accessor started_at: ::Time
483
+ attr_accessor updated_at: ::Time
484
+ attr_accessor ended_at: ::Time
485
+ SENSITIVE: []
486
+ end
487
+
488
+ class ExperimentRuns
489
+ attr_accessor items: ::Array[Types::ExperimentRunSummary]
490
+ attr_accessor next_token: ::String
491
+ SENSITIVE: []
492
+ end
493
+
326
494
  class Extension
327
495
  attr_accessor id: ::String
328
496
  attr_accessor name: ::String
@@ -372,6 +540,12 @@ module Aws::AppConfig
372
540
  SENSITIVE: []
373
541
  end
374
542
 
543
+ class FlagValue
544
+ attr_accessor enabled: bool
545
+ attr_accessor attribute_values: ::Hash[::String, Types::AttributeValue]
546
+ SENSITIVE: []
547
+ end
548
+
375
549
  class GetApplicationRequest
376
550
  attr_accessor application_id: ::String
377
551
  SENSITIVE: []
@@ -410,6 +584,19 @@ module Aws::AppConfig
410
584
  SENSITIVE: []
411
585
  end
412
586
 
587
+ class GetExperimentDefinitionRequest
588
+ attr_accessor application_identifier: ::String
589
+ attr_accessor experiment_definition_identifier: ::String
590
+ SENSITIVE: []
591
+ end
592
+
593
+ class GetExperimentRunRequest
594
+ attr_accessor application_identifier: ::String
595
+ attr_accessor experiment_definition_identifier: ::String
596
+ attr_accessor run: ::Integer
597
+ SENSITIVE: []
598
+ end
599
+
413
600
  class GetExtensionAssociationRequest
414
601
  attr_accessor extension_association_id: ::String
415
602
  SENSITIVE: []
@@ -506,6 +693,34 @@ module Aws::AppConfig
506
693
  SENSITIVE: []
507
694
  end
508
695
 
696
+ class ListExperimentDefinitionsRequest
697
+ attr_accessor application_identifier: ::String
698
+ attr_accessor configuration_profile_identifier: ::String
699
+ attr_accessor environment_identifier: ::String
700
+ attr_accessor status: ("ACTIVE" | "IDLE" | "ARCHIVED")
701
+ attr_accessor max_results: ::Integer
702
+ attr_accessor next_token: ::String
703
+ SENSITIVE: []
704
+ end
705
+
706
+ class ListExperimentRunEventsRequest
707
+ attr_accessor application_identifier: ::String
708
+ attr_accessor experiment_definition_identifier: ::String
709
+ attr_accessor run: ::Integer
710
+ attr_accessor max_results: ::Integer
711
+ attr_accessor next_token: ::String
712
+ SENSITIVE: []
713
+ end
714
+
715
+ class ListExperimentRunsRequest
716
+ attr_accessor application_identifier: ::String
717
+ attr_accessor experiment_definition_identifier: ::String
718
+ attr_accessor max_results: ::Integer
719
+ attr_accessor next_token: ::String
720
+ attr_accessor status: ("RUNNING" | "DONE")
721
+ SENSITIVE: []
722
+ end
723
+
509
724
  class ListExtensionAssociationsRequest
510
725
  attr_accessor resource_identifier: ::String
511
726
  attr_accessor extension_identifier: ::String
@@ -583,9 +798,21 @@ module Aws::AppConfig
583
798
  attr_accessor tags: ::Hash[::String, ::String]
584
799
  attr_accessor kms_key_identifier: ::String
585
800
  attr_accessor dynamic_extension_parameters: ::Hash[::String, ::String]
801
+ attr_accessor latest_deployment_number: ::Integer
586
802
  SENSITIVE: [:dynamic_extension_parameters]
587
803
  end
588
804
 
805
+ class StartExperimentRunRequest
806
+ attr_accessor application_identifier: ::String
807
+ attr_accessor experiment_definition_identifier: ::String
808
+ attr_accessor description: ::String
809
+ attr_accessor exposure_percentage: ::Float
810
+ attr_accessor treatment_overrides: Types::TreatmentOverrides
811
+ attr_accessor tags: ::Hash[::String, ::String]
812
+ attr_accessor deployment_parameters: Types::DeploymentParameters
813
+ SENSITIVE: []
814
+ end
815
+
589
816
  class StopDeploymentRequest
590
817
  attr_accessor application_id: ::String
591
818
  attr_accessor environment_id: ::String
@@ -594,12 +821,47 @@ module Aws::AppConfig
594
821
  SENSITIVE: []
595
822
  end
596
823
 
824
+ class StopExperimentRunRequest
825
+ attr_accessor application_identifier: ::String
826
+ attr_accessor experiment_definition_identifier: ::String
827
+ attr_accessor run: ::Integer
828
+ attr_accessor result: Types::ExperimentRunResult
829
+ attr_accessor deployment_parameters: Types::DeploymentParameters
830
+ SENSITIVE: []
831
+ end
832
+
597
833
  class TagResourceRequest
598
834
  attr_accessor resource_arn: ::String
599
835
  attr_accessor tags: ::Hash[::String, ::String]
600
836
  SENSITIVE: []
601
837
  end
602
838
 
839
+ class Treatment
840
+ attr_accessor key: ::String
841
+ attr_accessor weight: ::Float
842
+ attr_accessor description: ::String
843
+ attr_accessor flag_value: Types::FlagValue
844
+ SENSITIVE: []
845
+ end
846
+
847
+ class TreatmentInput
848
+ attr_accessor weight: ::Float
849
+ attr_accessor description: ::String
850
+ attr_accessor flag_value: Types::FlagValue
851
+ SENSITIVE: []
852
+ end
853
+
854
+ class TreatmentOverrides
855
+ attr_accessor inline: ::Hash[::String, ::String]
856
+ attr_accessor unknown: untyped
857
+ SENSITIVE: []
858
+
859
+ class Inline < TreatmentOverrides
860
+ end
861
+ class Unknown < TreatmentOverrides
862
+ end
863
+ end
864
+
603
865
  class UntagResourceRequest
604
866
  attr_accessor resource_arn: ::String
605
867
  attr_accessor tag_keys: ::Array[::String]
@@ -608,6 +870,7 @@ module Aws::AppConfig
608
870
 
609
871
  class UpdateAccountSettingsRequest
610
872
  attr_accessor deletion_protection: Types::DeletionProtectionSettings
873
+ attr_accessor vended_metrics: Types::VendedMetricsSettings
611
874
  SENSITIVE: []
612
875
  end
613
876
 
@@ -648,6 +911,29 @@ module Aws::AppConfig
648
911
  SENSITIVE: []
649
912
  end
650
913
 
914
+ class UpdateExperimentDefinitionRequest
915
+ attr_accessor application_identifier: ::String
916
+ attr_accessor experiment_definition_identifier: ::String
917
+ attr_accessor treatments: ::Array[Types::TreatmentInput]
918
+ attr_accessor control: Types::TreatmentInput
919
+ attr_accessor hypothesis: ::String
920
+ attr_accessor audience_rule: ::String
921
+ attr_accessor audience_description: ::String
922
+ attr_accessor launch_criteria: ::String
923
+ SENSITIVE: []
924
+ end
925
+
926
+ class UpdateExperimentRunRequest
927
+ attr_accessor application_identifier: ::String
928
+ attr_accessor experiment_definition_identifier: ::String
929
+ attr_accessor run: ::Integer
930
+ attr_accessor description: ::String
931
+ attr_accessor exposure_percentage: ::Float
932
+ attr_accessor treatment_overrides: Types::TreatmentOverrides
933
+ attr_accessor deployment_parameters: Types::DeploymentParameters
934
+ SENSITIVE: []
935
+ end
936
+
651
937
  class UpdateExtensionAssociationRequest
652
938
  attr_accessor extension_association_id: ::String
653
939
  attr_accessor parameters: ::Hash[::String, ::String]
@@ -675,5 +961,10 @@ module Aws::AppConfig
675
961
  attr_accessor content: ::String
676
962
  SENSITIVE: [:content]
677
963
  end
964
+
965
+ class VendedMetricsSettings
966
+ attr_accessor enabled: bool
967
+ SENSITIVE: []
968
+ end
678
969
  end
679
970
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-appconfig
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.82.0
4
+ version: 1.83.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -68,6 +68,7 @@ files:
68
68
  - lib/aws-sdk-appconfig/waiters.rb
69
69
  - sig/client.rbs
70
70
  - sig/errors.rbs
71
+ - sig/params.rbs
71
72
  - sig/resource.rbs
72
73
  - sig/types.rbs
73
74
  - sig/waiters.rbs