aws-sdk-appregistry 1.0.0 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9ff40f368c8fc9227079eade2ff575e059eec37e6b6f6505396fdbf598815c70
4
- data.tar.gz: b100d943a239e39874ea77b951a434e525c1b604af68dc8af7d209debb4df20c
3
+ metadata.gz: db539bdf49ad04919d15e5b4877d37dbf3ebfdfb76392b0cf08e775b601ef0d3
4
+ data.tar.gz: 3bcf7b0fe74ffedc202c331e87c96c1f4d3be4ca8b77cdcd4290aef0eec26484
5
5
  SHA512:
6
- metadata.gz: 1bdc353e73b310503cbced0fd2fb24a16ea4d920b65b1c624c88531fc66862c6c2a530815564180dbf748af9dbe9bca4f8a57029614516ab2df540400e216203
7
- data.tar.gz: e475bf776352c062c5aa855a2d8fa21a5fd22abd2059733fbcdab2363a1897847e67eeb75f3d58c441d0dfe6be993feba029b5f3a3a709b0f430faeb34ec5ab5
6
+ metadata.gz: 869717df4e67462e8778cafce57e3011a5833846682e250c539aa3c52a423217de68adea8e5c0afbabf2b25aab0104c0e82366ce20effb3fc1b548a6991a5942
7
+ data.tar.gz: 7f3136b46d4a720226e6a1e472446c8be6c19252936193ced03fb50499392fde5ebd321e738d481a9f0b4543141fb1a00c14c62c449363b4874470aecc217c80
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-appregistry/customizations'
48
48
  # @!group service
49
49
  module Aws::AppRegistry
50
50
 
51
- GEM_VERSION = '1.0.0'
51
+ GEM_VERSION = '1.1.0'
52
52
 
53
53
  end
@@ -328,9 +328,9 @@ module Aws::AppRegistry
328
328
  # @!group API Operations
329
329
 
330
330
  # Associates an attribute group with an application to augment the
331
- # application's metadata with the group's attributes. This way
332
- # applications can be described with user-defined details which are
333
- # machine-readable (e.g. for third-party integrations).
331
+ # application's metadata with the group's attributes. This feature
332
+ # enables applications to be described with user-defined details that
333
+ # are machine-readable, such as third-party integrations.
334
334
  #
335
335
  # @option params [required, String] :application
336
336
  # The name or ID of the application.
@@ -356,7 +356,7 @@ module Aws::AppRegistry
356
356
  # resp.application_arn #=> String
357
357
  # resp.attribute_group_arn #=> String
358
358
  #
359
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/AssociateAttributeGroup AWS API Documentation
359
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/AssociateAttributeGroup AWS API Documentation
360
360
  #
361
361
  # @overload associate_attribute_group(params = {})
362
362
  # @param [Hash] params ({})
@@ -372,6 +372,7 @@ module Aws::AppRegistry
372
372
  # The name or ID of the application.
373
373
  #
374
374
  # @option params [required, String] :resource_type
375
+ # The type of resource of which the application will be associated.
375
376
  #
376
377
  # @option params [required, String] :resource
377
378
  # The name or ID of the resource of which the application will be
@@ -395,7 +396,7 @@ module Aws::AppRegistry
395
396
  # resp.application_arn #=> String
396
397
  # resp.resource_arn #=> String
397
398
  #
398
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/AssociateResource AWS API Documentation
399
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/AssociateResource AWS API Documentation
399
400
  #
400
401
  # @overload associate_resource(params = {})
401
402
  # @param [Hash] params ({})
@@ -418,9 +419,12 @@ module Aws::AppRegistry
418
419
  # Key-value pairs you can use to associate with the application.
419
420
  #
420
421
  # @option params [required, String] :client_token
421
- # A unique identifier that you provide to ensure idempotency. If
422
- # multiple requests differ only by the clientToken, the same response is
423
- # returned for each repeated request.
422
+ # A unique identifier that you provide to ensure idempotency. If you
423
+ # retry a request that completed successfully using the same client
424
+ # token and the same parameters, the retry succeeds without performing
425
+ # any further actions. If you retry a successful request using the same
426
+ # client token, but one or more of the parameters are different, the
427
+ # retry fails.
424
428
  #
425
429
  # **A suitable default value is auto-generated.** You should normally
426
430
  # not need to pass this option.**
@@ -451,7 +455,7 @@ module Aws::AppRegistry
451
455
  # resp.application.tags #=> Hash
452
456
  # resp.application.tags["TagKey"] #=> String
453
457
  #
454
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/CreateApplication AWS API Documentation
458
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/CreateApplication AWS API Documentation
455
459
  #
456
460
  # @overload create_application(params = {})
457
461
  # @param [Hash] params ({})
@@ -461,10 +465,9 @@ module Aws::AppRegistry
461
465
  end
462
466
 
463
467
  # Creates a new attribute group as a container for user-defined
464
- # attributes. This approach enables users to have full control over
465
- # their cloud application's metadata in a rich machine-readable format
466
- # to facilitate integration with automated workflows and third-party
467
- # tools.
468
+ # attributes. This feature enables users to have full control over their
469
+ # cloud application's metadata in a rich machine-readable format to
470
+ # facilitate integration with automated workflows and third-party tools.
468
471
  #
469
472
  # @option params [required, String] :name
470
473
  # The name of the attribute group.
@@ -481,9 +484,12 @@ module Aws::AppRegistry
481
484
  # Key-value pairs you can use to associate with the attribute group.
482
485
  #
483
486
  # @option params [required, String] :client_token
484
- # A unique identifier that you provide to ensure idempotency. If
485
- # multiple requests differ only by the clientToken, the same response is
486
- # returned for each repeated request.
487
+ # A unique identifier that you provide to ensure idempotency. If you
488
+ # retry a request that completed successfully using the same client
489
+ # token and the same parameters, the retry succeeds without performing
490
+ # any further actions. If you retry a successful request using the same
491
+ # client token, but one or more of the parameters are different, the
492
+ # retry fails.
487
493
  #
488
494
  # **A suitable default value is auto-generated.** You should normally
489
495
  # not need to pass this option.**
@@ -515,7 +521,7 @@ module Aws::AppRegistry
515
521
  # resp.attribute_group.tags #=> Hash
516
522
  # resp.attribute_group.tags["TagKey"] #=> String
517
523
  #
518
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/CreateAttributeGroup AWS API Documentation
524
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/CreateAttributeGroup AWS API Documentation
519
525
  #
520
526
  # @overload create_attribute_group(params = {})
521
527
  # @param [Hash] params ({})
@@ -524,7 +530,9 @@ module Aws::AppRegistry
524
530
  req.send_request(options)
525
531
  end
526
532
 
527
- # Delete an application, specified either by its application ID or name.
533
+ # Deletes an application that is specified either by its application ID
534
+ # or name. All associated attribute groups and resources must be
535
+ # disassociated from it before deleting an application.
528
536
  #
529
537
  # @option params [required, String] :application
530
538
  # The name or ID of the application.
@@ -548,7 +556,7 @@ module Aws::AppRegistry
548
556
  # resp.application.creation_time #=> Time
549
557
  # resp.application.last_update_time #=> Time
550
558
  #
551
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/DeleteApplication AWS API Documentation
559
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/DeleteApplication AWS API Documentation
552
560
  #
553
561
  # @overload delete_application(params = {})
554
562
  # @param [Hash] params ({})
@@ -583,7 +591,7 @@ module Aws::AppRegistry
583
591
  # resp.attribute_group.creation_time #=> Time
584
592
  # resp.attribute_group.last_update_time #=> Time
585
593
  #
586
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/DeleteAttributeGroup AWS API Documentation
594
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/DeleteAttributeGroup AWS API Documentation
587
595
  #
588
596
  # @overload delete_attribute_group(params = {})
589
597
  # @param [Hash] params ({})
@@ -595,7 +603,7 @@ module Aws::AppRegistry
595
603
  # Disassociates an attribute group from an application to remove the
596
604
  # extra attributes contained in the attribute group from the
597
605
  # application's metadata. This operation reverts
598
- # AssociateAttributeGroup.
606
+ # `AssociateAttributeGroup`.
599
607
  #
600
608
  # @option params [required, String] :application
601
609
  # The name or ID of the application.
@@ -621,7 +629,7 @@ module Aws::AppRegistry
621
629
  # resp.application_arn #=> String
622
630
  # resp.attribute_group_arn #=> String
623
631
  #
624
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/DisassociateAttributeGroup AWS API Documentation
632
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/DisassociateAttributeGroup AWS API Documentation
625
633
  #
626
634
  # @overload disassociate_attribute_group(params = {})
627
635
  # @param [Hash] params ({})
@@ -637,11 +645,10 @@ module Aws::AppRegistry
637
645
  # The name or ID of the application.
638
646
  #
639
647
  # @option params [required, String] :resource_type
640
- # The type of the resource that's being disassociated.
648
+ # The type of the resource that is being disassociated.
641
649
  #
642
650
  # @option params [required, String] :resource
643
- # The name or ID of the resource of which the application will be
644
- # associated.
651
+ # The name or ID of the resource.
645
652
  #
646
653
  # @return [Types::DisassociateResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
647
654
  #
@@ -661,7 +668,7 @@ module Aws::AppRegistry
661
668
  # resp.application_arn #=> String
662
669
  # resp.resource_arn #=> String
663
670
  #
664
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/DisassociateResource AWS API Documentation
671
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/DisassociateResource AWS API Documentation
665
672
  #
666
673
  # @overload disassociate_resource(params = {})
667
674
  # @param [Hash] params ({})
@@ -675,7 +682,7 @@ module Aws::AppRegistry
675
682
  # (which is unique within one account in one region at a given point in
676
683
  # time). Specify by ID in automated workflows if you want to make sure
677
684
  # that the exact same application is returned or a
678
- # ResourceNotFoundException is thrown, avoiding the ABA addressing
685
+ # `ResourceNotFoundException` is thrown, avoiding the ABA addressing
679
686
  # problem.
680
687
  #
681
688
  # @option params [required, String] :application
@@ -710,7 +717,7 @@ module Aws::AppRegistry
710
717
  # resp.tags #=> Hash
711
718
  # resp.tags["TagKey"] #=> String
712
719
  #
713
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/GetApplication AWS API Documentation
720
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/GetApplication AWS API Documentation
714
721
  #
715
722
  # @overload get_application(params = {})
716
723
  # @param [Hash] params ({})
@@ -719,7 +726,9 @@ module Aws::AppRegistry
719
726
  req.send_request(options)
720
727
  end
721
728
 
722
- # Retrieves an attribute group, either by its name or its ID.
729
+ # Retrieves an attribute group, either by its name or its ID. The
730
+ # attribute group can be specified either by its unique ID or by its
731
+ # name.
723
732
  #
724
733
  # @option params [required, String] :attribute_group
725
734
  # The name or ID of the attribute group that holds the attributes to
@@ -754,7 +763,7 @@ module Aws::AppRegistry
754
763
  # resp.tags #=> Hash
755
764
  # resp.tags["TagKey"] #=> String
756
765
  #
757
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/GetAttributeGroup AWS API Documentation
766
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/GetAttributeGroup AWS API Documentation
758
767
  #
759
768
  # @overload get_attribute_group(params = {})
760
769
  # @param [Hash] params ({})
@@ -799,7 +808,7 @@ module Aws::AppRegistry
799
808
  # resp.applications[0].last_update_time #=> Time
800
809
  # resp.next_token #=> String
801
810
  #
802
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/ListApplications AWS API Documentation
811
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ListApplications AWS API Documentation
803
812
  #
804
813
  # @overload list_applications(params = {})
805
814
  # @param [Hash] params ({})
@@ -844,7 +853,7 @@ module Aws::AppRegistry
844
853
  # resp.attribute_groups[0] #=> String
845
854
  # resp.next_token #=> String
846
855
  #
847
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/ListAssociatedAttributeGroups AWS API Documentation
856
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ListAssociatedAttributeGroups AWS API Documentation
848
857
  #
849
858
  # @overload list_associated_attribute_groups(params = {})
850
859
  # @param [Hash] params ({})
@@ -890,7 +899,7 @@ module Aws::AppRegistry
890
899
  # resp.resources[0].arn #=> String
891
900
  # resp.next_token #=> String
892
901
  #
893
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/ListAssociatedResources AWS API Documentation
902
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ListAssociatedResources AWS API Documentation
894
903
  #
895
904
  # @overload list_associated_resources(params = {})
896
905
  # @param [Hash] params ({})
@@ -936,7 +945,7 @@ module Aws::AppRegistry
936
945
  # resp.attribute_groups[0].last_update_time #=> Time
937
946
  # resp.next_token #=> String
938
947
  #
939
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/ListAttributeGroups AWS API Documentation
948
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ListAttributeGroups AWS API Documentation
940
949
  #
941
950
  # @overload list_attribute_groups(params = {})
942
951
  # @param [Hash] params ({})
@@ -948,15 +957,14 @@ module Aws::AppRegistry
948
957
  # Updates an existing application with new attributes.
949
958
  #
950
959
  # @option params [required, String] :application
951
- # The name or ID of the application. The name must be unique in the
952
- # region in which you are updating the attribute group.
960
+ # The name or ID of the application that will be updated.
953
961
  #
954
962
  # @option params [String] :name
955
- # The anme of the application. The name must be unique in the region in
956
- # which you are creating the application.
963
+ # The new name of the application. The name must be unique in the region
964
+ # in which you are updating the application.
957
965
  #
958
966
  # @option params [String] :description
959
- # The description of the application.
967
+ # The new description of the application.
960
968
  #
961
969
  # @return [Types::UpdateApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
962
970
  #
@@ -981,7 +989,7 @@ module Aws::AppRegistry
981
989
  # resp.application.tags #=> Hash
982
990
  # resp.application.tags["TagKey"] #=> String
983
991
  #
984
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/UpdateApplication AWS API Documentation
992
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/UpdateApplication AWS API Documentation
985
993
  #
986
994
  # @overload update_application(params = {})
987
995
  # @param [Hash] params ({})
@@ -1032,7 +1040,7 @@ module Aws::AppRegistry
1032
1040
  # resp.attribute_group.tags #=> Hash
1033
1041
  # resp.attribute_group.tags["TagKey"] #=> String
1034
1042
  #
1035
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/UpdateAttributeGroup AWS API Documentation
1043
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/UpdateAttributeGroup AWS API Documentation
1036
1044
  #
1037
1045
  # @overload update_attribute_group(params = {})
1038
1046
  # @param [Hash] params ({})
@@ -1054,7 +1062,7 @@ module Aws::AppRegistry
1054
1062
  params: params,
1055
1063
  config: config)
1056
1064
  context[:gem_name] = 'aws-sdk-appregistry'
1057
- context[:gem_version] = '1.0.0'
1065
+ context[:gem_version] = '1.1.0'
1058
1066
  Seahorse::Client::Request.new(handlers, context)
1059
1067
  end
1060
1068
 
@@ -304,7 +304,7 @@ module Aws::AppRegistry
304
304
  "serviceId" => "Service Catalog AppRegistry",
305
305
  "signatureVersion" => "v4",
306
306
  "signingName" => "servicecatalog",
307
- "uid" => "AWS242AppRegistry",
307
+ "uid" => "AWS242AppRegistry-2020-06-24",
308
308
  }
309
309
 
310
310
  api.add_operation(:associate_attribute_group, Seahorse::Model::Operation.new.tap do |o|
@@ -45,7 +45,7 @@ module Aws::AppRegistry
45
45
  # Key-value pairs you can use to associate with the application.
46
46
  # @return [Hash<String,String>]
47
47
  #
48
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/Application AWS API Documentation
48
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/Application AWS API Documentation
49
49
  #
50
50
  class Application < Struct.new(
51
51
  :id,
@@ -89,7 +89,7 @@ module Aws::AppRegistry
89
89
  # was last updated.
90
90
  # @return [Time]
91
91
  #
92
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/ApplicationSummary AWS API Documentation
92
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ApplicationSummary AWS API Documentation
93
93
  #
94
94
  class ApplicationSummary < Struct.new(
95
95
  :id,
@@ -119,7 +119,7 @@ module Aws::AppRegistry
119
119
  # describe the application.
120
120
  # @return [String]
121
121
  #
122
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/AssociateAttributeGroupRequest AWS API Documentation
122
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/AssociateAttributeGroupRequest AWS API Documentation
123
123
  #
124
124
  class AssociateAttributeGroupRequest < Struct.new(
125
125
  :application,
@@ -138,7 +138,7 @@ module Aws::AppRegistry
138
138
  # the application's new attributes.
139
139
  # @return [String]
140
140
  #
141
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/AssociateAttributeGroupResponse AWS API Documentation
141
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/AssociateAttributeGroupResponse AWS API Documentation
142
142
  #
143
143
  class AssociateAttributeGroupResponse < Struct.new(
144
144
  :application_arn,
@@ -161,6 +161,7 @@ module Aws::AppRegistry
161
161
  # @return [String]
162
162
  #
163
163
  # @!attribute [rw] resource_type
164
+ # The type of resource of which the application will be associated.
164
165
  # @return [String]
165
166
  #
166
167
  # @!attribute [rw] resource
@@ -168,7 +169,7 @@ module Aws::AppRegistry
168
169
  # associated.
169
170
  # @return [String]
170
171
  #
171
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/AssociateResourceRequest AWS API Documentation
172
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/AssociateResourceRequest AWS API Documentation
172
173
  #
173
174
  class AssociateResourceRequest < Struct.new(
174
175
  :application,
@@ -187,7 +188,7 @@ module Aws::AppRegistry
187
188
  # The Amazon resource name (ARN) that specifies the resource.
188
189
  # @return [String]
189
190
  #
190
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/AssociateResourceResponse AWS API Documentation
191
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/AssociateResourceResponse AWS API Documentation
191
192
  #
192
193
  class AssociateResourceResponse < Struct.new(
193
194
  :application_arn,
@@ -205,8 +206,8 @@ module Aws::AppRegistry
205
206
  # @return [String]
206
207
  #
207
208
  # @!attribute [rw] arn
208
- # The Amazon resource name (ARN) that specifies the application across
209
- # services.
209
+ # The Amazon resource name (ARN) that specifies the attribute group
210
+ # across services.
210
211
  # @return [String]
211
212
  #
212
213
  # @!attribute [rw] name
@@ -232,7 +233,7 @@ module Aws::AppRegistry
232
233
  # Key-value pairs you can use to associate with the attribute group.
233
234
  # @return [Hash<String,String>]
234
235
  #
235
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/AttributeGroup AWS API Documentation
236
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/AttributeGroup AWS API Documentation
236
237
  #
237
238
  class AttributeGroup < Struct.new(
238
239
  :id,
@@ -254,8 +255,8 @@ module Aws::AppRegistry
254
255
  # @return [String]
255
256
  #
256
257
  # @!attribute [rw] arn
257
- # The Amazon resource name (ARN) that specifies the application across
258
- # services.
258
+ # The Amazon resource name (ARN) that specifies the attribute group
259
+ # across services.
259
260
  # @return [String]
260
261
  #
261
262
  # @!attribute [rw] name
@@ -277,7 +278,7 @@ module Aws::AppRegistry
277
278
  # newly created attribute group.
278
279
  # @return [Time]
279
280
  #
280
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/AttributeGroupSummary AWS API Documentation
281
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/AttributeGroupSummary AWS API Documentation
281
282
  #
282
283
  class AttributeGroupSummary < Struct.new(
283
284
  :id,
@@ -296,7 +297,7 @@ module Aws::AppRegistry
296
297
  # @!attribute [rw] message
297
298
  # @return [String]
298
299
  #
299
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/ConflictException AWS API Documentation
300
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ConflictException AWS API Documentation
300
301
  #
301
302
  class ConflictException < Struct.new(
302
303
  :message)
@@ -330,15 +331,18 @@ module Aws::AppRegistry
330
331
  # @return [Hash<String,String>]
331
332
  #
332
333
  # @!attribute [rw] client_token
333
- # A unique identifier that you provide to ensure idempotency. If
334
- # multiple requests differ only by the clientToken, the same response
335
- # is returned for each repeated request.
334
+ # A unique identifier that you provide to ensure idempotency. If you
335
+ # retry a request that completed successfully using the same client
336
+ # token and the same parameters, the retry succeeds without performing
337
+ # any further actions. If you retry a successful request using the
338
+ # same client token, but one or more of the parameters are different,
339
+ # the retry fails.
336
340
  #
337
341
  # **A suitable default value is auto-generated.** You should normally
338
342
  # not need to pass this option.
339
343
  # @return [String]
340
344
  #
341
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/CreateApplicationRequest AWS API Documentation
345
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/CreateApplicationRequest AWS API Documentation
342
346
  #
343
347
  class CreateApplicationRequest < Struct.new(
344
348
  :name,
@@ -350,10 +354,10 @@ module Aws::AppRegistry
350
354
  end
351
355
 
352
356
  # @!attribute [rw] application
353
- # The name or ID of the application.
357
+ # Information about the application.
354
358
  # @return [Types::Application]
355
359
  #
356
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/CreateApplicationResponse AWS API Documentation
360
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/CreateApplicationResponse AWS API Documentation
357
361
  #
358
362
  class CreateApplicationResponse < Struct.new(
359
363
  :application)
@@ -393,15 +397,18 @@ module Aws::AppRegistry
393
397
  # @return [Hash<String,String>]
394
398
  #
395
399
  # @!attribute [rw] client_token
396
- # A unique identifier that you provide to ensure idempotency. If
397
- # multiple requests differ only by the clientToken, the same response
398
- # is returned for each repeated request.
400
+ # A unique identifier that you provide to ensure idempotency. If you
401
+ # retry a request that completed successfully using the same client
402
+ # token and the same parameters, the retry succeeds without performing
403
+ # any further actions. If you retry a successful request using the
404
+ # same client token, but one or more of the parameters are different,
405
+ # the retry fails.
399
406
  #
400
407
  # **A suitable default value is auto-generated.** You should normally
401
408
  # not need to pass this option.
402
409
  # @return [String]
403
410
  #
404
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/CreateAttributeGroupRequest AWS API Documentation
411
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/CreateAttributeGroupRequest AWS API Documentation
405
412
  #
406
413
  class CreateAttributeGroupRequest < Struct.new(
407
414
  :name,
@@ -414,11 +421,10 @@ module Aws::AppRegistry
414
421
  end
415
422
 
416
423
  # @!attribute [rw] attribute_group
417
- # The name or ID of the attribute group that holds the attributes to
418
- # describe the application.
424
+ # Information about the attribute group.
419
425
  # @return [Types::AttributeGroup]
420
426
  #
421
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/CreateAttributeGroupResponse AWS API Documentation
427
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/CreateAttributeGroupResponse AWS API Documentation
422
428
  #
423
429
  class CreateAttributeGroupResponse < Struct.new(
424
430
  :attribute_group)
@@ -437,7 +443,7 @@ module Aws::AppRegistry
437
443
  # The name or ID of the application.
438
444
  # @return [String]
439
445
  #
440
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/DeleteApplicationRequest AWS API Documentation
446
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/DeleteApplicationRequest AWS API Documentation
441
447
  #
442
448
  class DeleteApplicationRequest < Struct.new(
443
449
  :application)
@@ -446,10 +452,10 @@ module Aws::AppRegistry
446
452
  end
447
453
 
448
454
  # @!attribute [rw] application
449
- # The name or ID of the application.
455
+ # Information about the deleted application.
450
456
  # @return [Types::ApplicationSummary]
451
457
  #
452
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/DeleteApplicationResponse AWS API Documentation
458
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/DeleteApplicationResponse AWS API Documentation
453
459
  #
454
460
  class DeleteApplicationResponse < Struct.new(
455
461
  :application)
@@ -469,7 +475,7 @@ module Aws::AppRegistry
469
475
  # describe the application.
470
476
  # @return [String]
471
477
  #
472
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/DeleteAttributeGroupRequest AWS API Documentation
478
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/DeleteAttributeGroupRequest AWS API Documentation
473
479
  #
474
480
  class DeleteAttributeGroupRequest < Struct.new(
475
481
  :attribute_group)
@@ -478,11 +484,10 @@ module Aws::AppRegistry
478
484
  end
479
485
 
480
486
  # @!attribute [rw] attribute_group
481
- # The name or ID of the attribute group that holds the attributes to
482
- # describe the application.
487
+ # Information about the deleted attribute group.
483
488
  # @return [Types::AttributeGroupSummary]
484
489
  #
485
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/DeleteAttributeGroupResponse AWS API Documentation
490
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/DeleteAttributeGroupResponse AWS API Documentation
486
491
  #
487
492
  class DeleteAttributeGroupResponse < Struct.new(
488
493
  :attribute_group)
@@ -507,7 +512,7 @@ module Aws::AppRegistry
507
512
  # describe the application.
508
513
  # @return [String]
509
514
  #
510
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/DisassociateAttributeGroupRequest AWS API Documentation
515
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/DisassociateAttributeGroupRequest AWS API Documentation
511
516
  #
512
517
  class DisassociateAttributeGroupRequest < Struct.new(
513
518
  :application,
@@ -517,16 +522,14 @@ module Aws::AppRegistry
517
522
  end
518
523
 
519
524
  # @!attribute [rw] application_arn
520
- # The Amazon resource name (ARN) of the application that was augmented
521
- # with attributes.
525
+ # The Amazon resource name (ARN) that specifies the application.
522
526
  # @return [String]
523
527
  #
524
528
  # @!attribute [rw] attribute_group_arn
525
- # The Amazon resource name (ARN) of the attribute group that contains
526
- # the application's new attributes.
529
+ # The Amazon resource name (ARN) that specifies the attribute group.
527
530
  # @return [String]
528
531
  #
529
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/DisassociateAttributeGroupResponse AWS API Documentation
532
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/DisassociateAttributeGroupResponse AWS API Documentation
530
533
  #
531
534
  class DisassociateAttributeGroupResponse < Struct.new(
532
535
  :application_arn,
@@ -549,15 +552,14 @@ module Aws::AppRegistry
549
552
  # @return [String]
550
553
  #
551
554
  # @!attribute [rw] resource_type
552
- # The type of the resource that's being disassociated.
555
+ # The type of the resource that is being disassociated.
553
556
  # @return [String]
554
557
  #
555
558
  # @!attribute [rw] resource
556
- # The name or ID of the resource of which the application will be
557
- # associated.
559
+ # The name or ID of the resource.
558
560
  # @return [String]
559
561
  #
560
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/DisassociateResourceRequest AWS API Documentation
562
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/DisassociateResourceRequest AWS API Documentation
561
563
  #
562
564
  class DisassociateResourceRequest < Struct.new(
563
565
  :application,
@@ -568,15 +570,14 @@ module Aws::AppRegistry
568
570
  end
569
571
 
570
572
  # @!attribute [rw] application_arn
571
- # The Amazon resource name (ARN) of the application that was augmented
572
- # with attributes.
573
+ # The Amazon resource name (ARN) that specifies the application.
573
574
  # @return [String]
574
575
  #
575
576
  # @!attribute [rw] resource_arn
576
577
  # The Amazon resource name (ARN) that specifies the resource.
577
578
  # @return [String]
578
579
  #
579
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/DisassociateResourceResponse AWS API Documentation
580
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/DisassociateResourceResponse AWS API Documentation
580
581
  #
581
582
  class DisassociateResourceResponse < Struct.new(
582
583
  :application_arn,
@@ -596,7 +597,7 @@ module Aws::AppRegistry
596
597
  # The name or ID of the application.
597
598
  # @return [String]
598
599
  #
599
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/GetApplicationRequest AWS API Documentation
600
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/GetApplicationRequest AWS API Documentation
600
601
  #
601
602
  class GetApplicationRequest < Struct.new(
602
603
  :application)
@@ -638,10 +639,10 @@ module Aws::AppRegistry
638
639
  # @return [Integer]
639
640
  #
640
641
  # @!attribute [rw] tags
641
- # Key-value pairs you can use to associate with the application.
642
+ # Key-value pairs associated with the application.
642
643
  # @return [Hash<String,String>]
643
644
  #
644
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/GetApplicationResponse AWS API Documentation
645
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/GetApplicationResponse AWS API Documentation
645
646
  #
646
647
  class GetApplicationResponse < Struct.new(
647
648
  :id,
@@ -668,7 +669,7 @@ module Aws::AppRegistry
668
669
  # describe the application.
669
670
  # @return [String]
670
671
  #
671
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/GetAttributeGroupRequest AWS API Documentation
672
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/GetAttributeGroupRequest AWS API Documentation
672
673
  #
673
674
  class GetAttributeGroupRequest < Struct.new(
674
675
  :attribute_group)
@@ -677,12 +678,12 @@ module Aws::AppRegistry
677
678
  end
678
679
 
679
680
  # @!attribute [rw] id
680
- # The identifier of the application.
681
+ # The identifier of the attribute group.
681
682
  # @return [String]
682
683
  #
683
684
  # @!attribute [rw] arn
684
- # The Amazon resource name (ARN) that specifies the application across
685
- # services.
685
+ # The Amazon resource name (ARN) that specifies the attribute group
686
+ # across services.
686
687
  # @return [String]
687
688
  #
688
689
  # @!attribute [rw] name
@@ -711,10 +712,10 @@ module Aws::AppRegistry
711
712
  # @return [Time]
712
713
  #
713
714
  # @!attribute [rw] tags
714
- # Key-value pairs you can use to associate with the attribute group.
715
+ # Key-value pairs associated with the attribute group.
715
716
  # @return [Hash<String,String>]
716
717
  #
717
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/GetAttributeGroupResponse AWS API Documentation
718
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/GetAttributeGroupResponse AWS API Documentation
718
719
  #
719
720
  class GetAttributeGroupResponse < Struct.new(
720
721
  :id,
@@ -734,7 +735,7 @@ module Aws::AppRegistry
734
735
  # @!attribute [rw] message
735
736
  # @return [String]
736
737
  #
737
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/InternalServerException AWS API Documentation
738
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/InternalServerException AWS API Documentation
738
739
  #
739
740
  class InternalServerException < Struct.new(
740
741
  :message)
@@ -761,7 +762,7 @@ module Aws::AppRegistry
761
762
  # optional.
762
763
  # @return [Integer]
763
764
  #
764
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/ListApplicationsRequest AWS API Documentation
765
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ListApplicationsRequest AWS API Documentation
765
766
  #
766
767
  class ListApplicationsRequest < Struct.new(
767
768
  :next_token,
@@ -771,7 +772,7 @@ module Aws::AppRegistry
771
772
  end
772
773
 
773
774
  # @!attribute [rw] applications
774
- # The name or ID of the application.
775
+ # This list of applications.
775
776
  # @return [Array<Types::ApplicationSummary>]
776
777
  #
777
778
  # @!attribute [rw] next_token
@@ -779,7 +780,7 @@ module Aws::AppRegistry
779
780
  # API call.
780
781
  # @return [String]
781
782
  #
782
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/ListApplicationsResponse AWS API Documentation
783
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ListApplicationsResponse AWS API Documentation
783
784
  #
784
785
  class ListApplicationsResponse < Struct.new(
785
786
  :applications,
@@ -812,7 +813,7 @@ module Aws::AppRegistry
812
813
  # optional.
813
814
  # @return [Integer]
814
815
  #
815
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/ListAssociatedAttributeGroupsRequest AWS API Documentation
816
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ListAssociatedAttributeGroupsRequest AWS API Documentation
816
817
  #
817
818
  class ListAssociatedAttributeGroupsRequest < Struct.new(
818
819
  :application,
@@ -831,7 +832,7 @@ module Aws::AppRegistry
831
832
  # API call.
832
833
  # @return [String]
833
834
  #
834
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/ListAssociatedAttributeGroupsResponse AWS API Documentation
835
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ListAssociatedAttributeGroupsResponse AWS API Documentation
835
836
  #
836
837
  class ListAssociatedAttributeGroupsResponse < Struct.new(
837
838
  :attribute_groups,
@@ -864,7 +865,7 @@ module Aws::AppRegistry
864
865
  # optional.
865
866
  # @return [Integer]
866
867
  #
867
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/ListAssociatedResourcesRequest AWS API Documentation
868
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ListAssociatedResourcesRequest AWS API Documentation
868
869
  #
869
870
  class ListAssociatedResourcesRequest < Struct.new(
870
871
  :application,
@@ -875,8 +876,7 @@ module Aws::AppRegistry
875
876
  end
876
877
 
877
878
  # @!attribute [rw] resources
878
- # The name or ID of the resource of which the application will be
879
- # associated.
879
+ # Information about the resources.
880
880
  # @return [Array<Types::ResourceInfo>]
881
881
  #
882
882
  # @!attribute [rw] next_token
@@ -884,7 +884,7 @@ module Aws::AppRegistry
884
884
  # API call.
885
885
  # @return [String]
886
886
  #
887
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/ListAssociatedResourcesResponse AWS API Documentation
887
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ListAssociatedResourcesResponse AWS API Documentation
888
888
  #
889
889
  class ListAssociatedResourcesResponse < Struct.new(
890
890
  :resources,
@@ -912,7 +912,7 @@ module Aws::AppRegistry
912
912
  # optional.
913
913
  # @return [Integer]
914
914
  #
915
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/ListAttributeGroupsRequest AWS API Documentation
915
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ListAttributeGroupsRequest AWS API Documentation
916
916
  #
917
917
  class ListAttributeGroupsRequest < Struct.new(
918
918
  :next_token,
@@ -922,7 +922,7 @@ module Aws::AppRegistry
922
922
  end
923
923
 
924
924
  # @!attribute [rw] attribute_groups
925
- # A list of attribute group IDs.
925
+ # This list of attribute groups.
926
926
  # @return [Array<Types::AttributeGroupSummary>]
927
927
  #
928
928
  # @!attribute [rw] next_token
@@ -930,7 +930,7 @@ module Aws::AppRegistry
930
930
  # API call.
931
931
  # @return [String]
932
932
  #
933
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/ListAttributeGroupsResponse AWS API Documentation
933
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ListAttributeGroupsResponse AWS API Documentation
934
934
  #
935
935
  class ListAttributeGroupsResponse < Struct.new(
936
936
  :attribute_groups,
@@ -946,11 +946,11 @@ module Aws::AppRegistry
946
946
  # @return [String]
947
947
  #
948
948
  # @!attribute [rw] arn
949
- # The Amazon resource name (ARN) that specifies the application across
949
+ # The Amazon resource name (ARN) that specifies the resource across
950
950
  # services.
951
951
  # @return [String]
952
952
  #
953
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/ResourceInfo AWS API Documentation
953
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ResourceInfo AWS API Documentation
954
954
  #
955
955
  class ResourceInfo < Struct.new(
956
956
  :name,
@@ -964,7 +964,7 @@ module Aws::AppRegistry
964
964
  # @!attribute [rw] message
965
965
  # @return [String]
966
966
  #
967
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/ResourceNotFoundException AWS API Documentation
967
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ResourceNotFoundException AWS API Documentation
968
968
  #
969
969
  class ResourceNotFoundException < Struct.new(
970
970
  :message)
@@ -977,7 +977,7 @@ module Aws::AppRegistry
977
977
  # @!attribute [rw] message
978
978
  # @return [String]
979
979
  #
980
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/ServiceQuotaExceededException AWS API Documentation
980
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ServiceQuotaExceededException AWS API Documentation
981
981
  #
982
982
  class ServiceQuotaExceededException < Struct.new(
983
983
  :message)
@@ -995,20 +995,19 @@ module Aws::AppRegistry
995
995
  # }
996
996
  #
997
997
  # @!attribute [rw] application
998
- # The name or ID of the application. The name must be unique in the
999
- # region in which you are updating the attribute group.
998
+ # The name or ID of the application that will be updated.
1000
999
  # @return [String]
1001
1000
  #
1002
1001
  # @!attribute [rw] name
1003
- # The anme of the application. The name must be unique in the region
1004
- # in which you are creating the application.
1002
+ # The new name of the application. The name must be unique in the
1003
+ # region in which you are updating the application.
1005
1004
  # @return [String]
1006
1005
  #
1007
1006
  # @!attribute [rw] description
1008
- # The description of the application.
1007
+ # The new description of the application.
1009
1008
  # @return [String]
1010
1009
  #
1011
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/UpdateApplicationRequest AWS API Documentation
1010
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/UpdateApplicationRequest AWS API Documentation
1012
1011
  #
1013
1012
  class UpdateApplicationRequest < Struct.new(
1014
1013
  :application,
@@ -1019,10 +1018,10 @@ module Aws::AppRegistry
1019
1018
  end
1020
1019
 
1021
1020
  # @!attribute [rw] application
1022
- # The name or ID of the application.
1021
+ # The updated information of the application.
1023
1022
  # @return [Types::Application]
1024
1023
  #
1025
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/UpdateApplicationResponse AWS API Documentation
1024
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/UpdateApplicationResponse AWS API Documentation
1026
1025
  #
1027
1026
  class UpdateApplicationResponse < Struct.new(
1028
1027
  :application)
@@ -1060,7 +1059,7 @@ module Aws::AppRegistry
1060
1059
  # components.
1061
1060
  # @return [String]
1062
1061
  #
1063
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/UpdateAttributeGroupRequest AWS API Documentation
1062
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/UpdateAttributeGroupRequest AWS API Documentation
1064
1063
  #
1065
1064
  class UpdateAttributeGroupRequest < Struct.new(
1066
1065
  :attribute_group,
@@ -1072,11 +1071,10 @@ module Aws::AppRegistry
1072
1071
  end
1073
1072
 
1074
1073
  # @!attribute [rw] attribute_group
1075
- # The name or ID of the attribute group that holds the attributes to
1076
- # describe the application.
1074
+ # The updated information of the attribute group.
1077
1075
  # @return [Types::AttributeGroup]
1078
1076
  #
1079
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/UpdateAttributeGroupResponse AWS API Documentation
1077
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/UpdateAttributeGroupResponse AWS API Documentation
1080
1078
  #
1081
1079
  class UpdateAttributeGroupResponse < Struct.new(
1082
1080
  :attribute_group)
@@ -1089,7 +1087,7 @@ module Aws::AppRegistry
1089
1087
  # @!attribute [rw] message
1090
1088
  # @return [String]
1091
1089
  #
1092
- # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/ValidationException AWS API Documentation
1090
+ # @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ValidationException AWS API Documentation
1093
1091
  #
1094
1092
  class ValidationException < Struct.new(
1095
1093
  :message)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-appregistry
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-11-12 00:00:00.000000000 Z
11
+ date: 2020-11-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core