aws-sdk-marketplacecatalog 1.2.0 → 1.7.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 78be920c6e97f7128acdad86ccf08aefde5ff82a91ef4fff30e4f31f4ad19fe4
4
- data.tar.gz: bc587c3b83d9911c40a00a25841c1cdacd9f605701c19830c71b7f008a730c0d
3
+ metadata.gz: d9b4696ba4ce7fcd0ce134b42b607cbfe3630156522e87bf21960b9aa4f529d0
4
+ data.tar.gz: fbd38795ced447d984526065204afc6115283ef265457edc7ed4d396c942f892
5
5
  SHA512:
6
- metadata.gz: d58efc534e2322d7ea318a00a3c984190d6edb6b93f3b0a79adc0011bcb9a37ea4d95026f6d1a891f4eadc92405e0f5ecbcd0c3dd220e38efd31c8f21ac07370
7
- data.tar.gz: 5222f064206eb0e970f06fadef809781bfe8920a80d5279f8a2655506f0c649fd29e3bd03856d49bb3fda4f46210f8618f9a217867ed9cb05f5f46995d16d670
6
+ metadata.gz: ef5a1257da43eb869cf8f6dcdd65c47d11bbef7340ba882329f2f65d97f8d129d3a992c5a69001317437ac77af49f2a222a53cb8666a137304e2626a6dfd47dc
7
+ data.tar.gz: 3b3988e2b0bae760cc8347b6058625e23aea58b1d840cd9a22af472a8e6ff63395e0c0e079c05c4712e39b7de8cf8d513cf08ff1a0eba6fe13fe4f24b7859ebb
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -5,6 +7,7 @@
5
7
  #
6
8
  # WARNING ABOUT GENERATED CODE
7
9
 
10
+
8
11
  require 'aws-sdk-core'
9
12
  require 'aws-sigv4'
10
13
 
@@ -42,9 +45,9 @@ require_relative 'aws-sdk-marketplacecatalog/customizations'
42
45
  #
43
46
  # See {Errors} for more information.
44
47
  #
45
- # @service
48
+ # @!group service
46
49
  module Aws::MarketplaceCatalog
47
50
 
48
- GEM_VERSION = '1.2.0'
51
+ GEM_VERSION = '1.7.0'
49
52
 
50
53
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
24
26
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
25
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
26
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
+ require 'aws-sdk-core/plugins/http_checksum.rb'
27
30
  require 'aws-sdk-core/plugins/signature_v4.rb'
28
31
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
29
32
 
@@ -69,6 +72,7 @@ module Aws::MarketplaceCatalog
69
72
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
70
73
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
71
74
  add_plugin(Aws::Plugins::TransferEncoding)
75
+ add_plugin(Aws::Plugins::HttpChecksum)
72
76
  add_plugin(Aws::Plugins::SignatureV4)
73
77
  add_plugin(Aws::Plugins::Protocols::RestJson)
74
78
 
@@ -81,13 +85,28 @@ module Aws::MarketplaceCatalog
81
85
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
82
86
  # credentials.
83
87
  #
88
+ # * `Aws::SharedCredentials` - Used for loading static credentials from a
89
+ # shared file, such as `~/.aws/config`.
90
+ #
91
+ # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
92
+ #
93
+ # * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
94
+ # assume a role after providing credentials via the web.
95
+ #
96
+ # * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
97
+ # access token generated from `aws login`.
98
+ #
99
+ # * `Aws::ProcessCredentials` - Used for loading credentials from a
100
+ # process that outputs to stdout.
101
+ #
84
102
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
85
103
  # from an EC2 IMDS on an EC2 instance.
86
104
  #
87
- # * `Aws::SharedCredentials` - Used for loading credentials from a
88
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
89
107
  #
90
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
108
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
109
+ # from the Cognito Identity service.
91
110
  #
92
111
  # When `:credentials` are not configured directly, the following
93
112
  # locations will be searched for credentials:
@@ -97,10 +116,10 @@ module Aws::MarketplaceCatalog
97
116
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
98
117
  # * `~/.aws/credentials`
99
118
  # * `~/.aws/config`
100
- # * EC2 IMDS instance profile - When used by default, the timeouts are
101
- # very aggressive. Construct and pass an instance of
102
- # `Aws::InstanceProfileCredentails` to enable retries and extended
103
- # timeouts.
119
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
+ # are very aggressive. Construct and pass an instance of
121
+ # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
+ # enable retries and extended timeouts.
104
123
  #
105
124
  # @option options [required, String] :region
106
125
  # The AWS region to connect to. The configured `:region` is
@@ -161,7 +180,7 @@ module Aws::MarketplaceCatalog
161
180
  # @option options [String] :endpoint
162
181
  # The client endpoint is normally constructed from the `:region`
163
182
  # option. You should only configure an `:endpoint` when connecting
164
- # to test endpoints. This should be a valid HTTP(S) URI.
183
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
165
184
  #
166
185
  # @option options [Integer] :endpoint_cache_max_entries (1000)
167
186
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -176,7 +195,7 @@ module Aws::MarketplaceCatalog
176
195
  # requests fetching endpoints information. Defaults to 60 sec.
177
196
  #
178
197
  # @option options [Boolean] :endpoint_discovery (false)
179
- # When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
198
+ # When set to `true`, endpoint discovery will be enabled for operations when available.
180
199
  #
181
200
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
182
201
  # The log formatter.
@@ -388,6 +407,7 @@ module Aws::MarketplaceCatalog
388
407
  # resp.change_set[0].change_type #=> String
389
408
  # resp.change_set[0].entity.type #=> String
390
409
  # resp.change_set[0].entity.identifier #=> String
410
+ # resp.change_set[0].details #=> String
391
411
  # resp.change_set[0].error_detail_list #=> Array
392
412
  # resp.change_set[0].error_detail_list[0].error_code #=> String
393
413
  # resp.change_set[0].error_detail_list[0].error_message #=> String
@@ -458,7 +478,7 @@ module Aws::MarketplaceCatalog
458
478
  # An array of filter objects.
459
479
  #
460
480
  # @option params [Types::Sort] :sort
461
- # An object that contains two attributes, `sortBy` and `sortOrder`.
481
+ # An object that contains two attributes, `SortBy` and `SortOrder`.
462
482
  #
463
483
  # @option params [Integer] :max_results
464
484
  # The maximum number of results returned by a single call. This value
@@ -529,7 +549,7 @@ module Aws::MarketplaceCatalog
529
549
  # attributes, `filterName` and `filterValues`.
530
550
  #
531
551
  # @option params [Types::Sort] :sort
532
- # An object that contains two attributes, `sortBy` and `sortOrder`.
552
+ # An object that contains two attributes, `SortBy` and `SortOrder`.
533
553
  #
534
554
  # @option params [String] :next_token
535
555
  # The value of the next token, if it exists. Null if there are no more
@@ -585,7 +605,21 @@ module Aws::MarketplaceCatalog
585
605
  req.send_request(options)
586
606
  end
587
607
 
588
- # This operation allows you to request changes in your entities.
608
+ # This operation allows you to request changes for your entities. Within
609
+ # a single ChangeSet, you cannot start the same change type against the
610
+ # same entity multiple times. Additionally, when a ChangeSet is running,
611
+ # all the entities targeted by the different changes are locked until
612
+ # the ChangeSet has completed (either succeeded, cancelled, or failed).
613
+ # If you try to start a ChangeSet containing a change against an entity
614
+ # that is already locked, you will receive a `ResourceInUseException`.
615
+ #
616
+ # For example, you cannot start the ChangeSet described in the
617
+ # [example][1] below because it contains two changes to execute the same
618
+ # change type (`AddRevisions`) against the same entity (`entity-id@1)`.
619
+ #
620
+ #
621
+ #
622
+ # [1]: https://docs.aws.amazon.com/marketplace-catalog/latest/api-reference/API_StartChangeSet.html#API_StartChangeSet_Examples
589
623
  #
590
624
  # @option params [required, String] :catalog
591
625
  # The catalog related to the request. Fixed value: `AWSMarketplace`
@@ -650,7 +684,7 @@ module Aws::MarketplaceCatalog
650
684
  params: params,
651
685
  config: config)
652
686
  context[:gem_name] = 'aws-sdk-marketplacecatalog'
653
- context[:gem_version] = '1.2.0'
687
+ context[:gem_version] = '1.7.0'
654
688
  Seahorse::Client::Request.new(handlers, context)
655
689
  end
656
690
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -96,6 +98,7 @@ module Aws::MarketplaceCatalog
96
98
 
97
99
  ChangeSummary.add_member(:change_type, Shapes::ShapeRef.new(shape: ChangeType, location_name: "ChangeType"))
98
100
  ChangeSummary.add_member(:entity, Shapes::ShapeRef.new(shape: Entity, location_name: "Entity"))
101
+ ChangeSummary.add_member(:details, Shapes::ShapeRef.new(shape: Json, location_name: "Details"))
99
102
  ChangeSummary.add_member(:error_detail_list, Shapes::ShapeRef.new(shape: ErrorDetailList, location_name: "ErrorDetailList"))
100
103
  ChangeSummary.struct_class = Types::ChangeSummary
101
104
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -17,6 +19,7 @@ module Aws::MarketplaceCatalog
17
19
  #
18
20
  class AccessDeniedException < Struct.new(
19
21
  :message)
22
+ SENSITIVE = []
20
23
  include Aws::Structure
21
24
  end
22
25
 
@@ -43,6 +46,7 @@ module Aws::MarketplaceCatalog
43
46
  class CancelChangeSetRequest < Struct.new(
44
47
  :catalog,
45
48
  :change_set_id)
49
+ SENSITIVE = []
46
50
  include Aws::Structure
47
51
  end
48
52
 
@@ -59,6 +63,7 @@ module Aws::MarketplaceCatalog
59
63
  class CancelChangeSetResponse < Struct.new(
60
64
  :change_set_id,
61
65
  :change_set_arn)
66
+ SENSITIVE = []
62
67
  include Aws::Structure
63
68
  end
64
69
 
@@ -97,6 +102,7 @@ module Aws::MarketplaceCatalog
97
102
  :change_type,
98
103
  :entity,
99
104
  :details)
105
+ SENSITIVE = []
100
106
  include Aws::Structure
101
107
  end
102
108
 
@@ -146,6 +152,7 @@ module Aws::MarketplaceCatalog
146
152
  :end_time,
147
153
  :status,
148
154
  :entity_id_list)
155
+ SENSITIVE = []
149
156
  include Aws::Structure
150
157
  end
151
158
 
@@ -160,6 +167,11 @@ module Aws::MarketplaceCatalog
160
167
  # The entity to be changed.
161
168
  # @return [Types::Entity]
162
169
  #
170
+ # @!attribute [rw] details
171
+ # This object contains details specific to the change type of the
172
+ # requested change.
173
+ # @return [String]
174
+ #
163
175
  # @!attribute [rw] error_detail_list
164
176
  # An array of `ErrorDetail` objects associated with the change.
165
177
  # @return [Array<Types::ErrorDetail>]
@@ -169,7 +181,9 @@ module Aws::MarketplaceCatalog
169
181
  class ChangeSummary < Struct.new(
170
182
  :change_type,
171
183
  :entity,
184
+ :details,
172
185
  :error_detail_list)
186
+ SENSITIVE = []
173
187
  include Aws::Structure
174
188
  end
175
189
 
@@ -196,6 +210,7 @@ module Aws::MarketplaceCatalog
196
210
  class DescribeChangeSetRequest < Struct.new(
197
211
  :catalog,
198
212
  :change_set_id)
213
+ SENSITIVE = []
199
214
  include Aws::Structure
200
215
  end
201
216
 
@@ -250,6 +265,7 @@ module Aws::MarketplaceCatalog
250
265
  :status,
251
266
  :failure_description,
252
267
  :change_set)
268
+ SENSITIVE = []
253
269
  include Aws::Structure
254
270
  end
255
271
 
@@ -275,6 +291,7 @@ module Aws::MarketplaceCatalog
275
291
  class DescribeEntityRequest < Struct.new(
276
292
  :catalog,
277
293
  :entity_id)
294
+ SENSITIVE = []
278
295
  include Aws::Structure
279
296
  end
280
297
 
@@ -309,6 +326,7 @@ module Aws::MarketplaceCatalog
309
326
  :entity_arn,
310
327
  :last_modified_date,
311
328
  :details)
329
+ SENSITIVE = []
312
330
  include Aws::Structure
313
331
  end
314
332
 
@@ -337,6 +355,7 @@ module Aws::MarketplaceCatalog
337
355
  class Entity < Struct.new(
338
356
  :type,
339
357
  :identifier)
358
+ SENSITIVE = []
340
359
  include Aws::Structure
341
360
  end
342
361
 
@@ -346,7 +365,7 @@ module Aws::MarketplaceCatalog
346
365
  #
347
366
  # @!attribute [rw] name
348
367
  # The name for the entity. This value is not unique. It is defined by
349
- # the provider.
368
+ # the seller.
350
369
  # @return [String]
351
370
  #
352
371
  # @!attribute [rw] entity_type
@@ -367,11 +386,11 @@ module Aws::MarketplaceCatalog
367
386
  # @return [String]
368
387
  #
369
388
  # @!attribute [rw] visibility
370
- # The visibility status of the entity to subscribers. This value can
371
- # be `Public` (everyone can view the entity), `Limited` (the entity is
389
+ # The visibility status of the entity to buyers. This value can be
390
+ # `Public` (everyone can view the entity), `Limited` (the entity is
372
391
  # visible to limited accounts only), or `Restricted` (the entity was
373
- # published and then unpublished and only existing subscribers can
374
- # view it).
392
+ # published and then unpublished and only existing buyers can view
393
+ # it).
375
394
  # @return [String]
376
395
  #
377
396
  # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/EntitySummary AWS API Documentation
@@ -383,6 +402,7 @@ module Aws::MarketplaceCatalog
383
402
  :entity_arn,
384
403
  :last_modified_date,
385
404
  :visibility)
405
+ SENSITIVE = []
386
406
  include Aws::Structure
387
407
  end
388
408
 
@@ -401,6 +421,7 @@ module Aws::MarketplaceCatalog
401
421
  class ErrorDetail < Struct.new(
402
422
  :error_code,
403
423
  :error_message)
424
+ SENSITIVE = []
404
425
  include Aws::Structure
405
426
  end
406
427
 
@@ -455,6 +476,7 @@ module Aws::MarketplaceCatalog
455
476
  class Filter < Struct.new(
456
477
  :name,
457
478
  :value_list)
479
+ SENSITIVE = []
458
480
  include Aws::Structure
459
481
  end
460
482
 
@@ -467,6 +489,7 @@ module Aws::MarketplaceCatalog
467
489
  #
468
490
  class InternalServiceException < Struct.new(
469
491
  :message)
492
+ SENSITIVE = []
470
493
  include Aws::Structure
471
494
  end
472
495
 
@@ -498,7 +521,7 @@ module Aws::MarketplaceCatalog
498
521
  # @return [Array<Types::Filter>]
499
522
  #
500
523
  # @!attribute [rw] sort
501
- # An object that contains two attributes, `sortBy` and `sortOrder`.
524
+ # An object that contains two attributes, `SortBy` and `SortOrder`.
502
525
  # @return [Types::Sort]
503
526
  #
504
527
  # @!attribute [rw] max_results
@@ -520,6 +543,7 @@ module Aws::MarketplaceCatalog
520
543
  :sort,
521
544
  :max_results,
522
545
  :next_token)
546
+ SENSITIVE = []
523
547
  include Aws::Structure
524
548
  end
525
549
 
@@ -537,6 +561,7 @@ module Aws::MarketplaceCatalog
537
561
  class ListChangeSetsResponse < Struct.new(
538
562
  :change_set_summary_list,
539
563
  :next_token)
564
+ SENSITIVE = []
540
565
  include Aws::Structure
541
566
  end
542
567
 
@@ -574,7 +599,7 @@ module Aws::MarketplaceCatalog
574
599
  # @return [Array<Types::Filter>]
575
600
  #
576
601
  # @!attribute [rw] sort
577
- # An object that contains two attributes, `sortBy` and `sortOrder`.
602
+ # An object that contains two attributes, `SortBy` and `SortOrder`.
578
603
  # @return [Types::Sort]
579
604
  #
580
605
  # @!attribute [rw] next_token
@@ -596,6 +621,7 @@ module Aws::MarketplaceCatalog
596
621
  :sort,
597
622
  :next_token,
598
623
  :max_results)
624
+ SENSITIVE = []
599
625
  include Aws::Structure
600
626
  end
601
627
 
@@ -613,6 +639,7 @@ module Aws::MarketplaceCatalog
613
639
  class ListEntitiesResponse < Struct.new(
614
640
  :entity_summary_list,
615
641
  :next_token)
642
+ SENSITIVE = []
616
643
  include Aws::Structure
617
644
  end
618
645
 
@@ -625,6 +652,7 @@ module Aws::MarketplaceCatalog
625
652
  #
626
653
  class ResourceInUseException < Struct.new(
627
654
  :message)
655
+ SENSITIVE = []
628
656
  include Aws::Structure
629
657
  end
630
658
 
@@ -637,6 +665,7 @@ module Aws::MarketplaceCatalog
637
665
  #
638
666
  class ResourceNotFoundException < Struct.new(
639
667
  :message)
668
+ SENSITIVE = []
640
669
  include Aws::Structure
641
670
  end
642
671
 
@@ -649,6 +678,7 @@ module Aws::MarketplaceCatalog
649
678
  #
650
679
  class ResourceNotSupportedException < Struct.new(
651
680
  :message)
681
+ SENSITIVE = []
652
682
  include Aws::Structure
653
683
  end
654
684
 
@@ -661,10 +691,11 @@ module Aws::MarketplaceCatalog
661
691
  #
662
692
  class ServiceQuotaExceededException < Struct.new(
663
693
  :message)
694
+ SENSITIVE = []
664
695
  include Aws::Structure
665
696
  end
666
697
 
667
- # An object that contains two attributes, `sortBy` and `sortOrder`.
698
+ # An object that contains two attributes, `SortBy` and `SortOrder`.
668
699
  #
669
700
  # @note When making an API call, you may pass Sort
670
701
  # data as a hash:
@@ -692,6 +723,7 @@ module Aws::MarketplaceCatalog
692
723
  class Sort < Struct.new(
693
724
  :sort_by,
694
725
  :sort_order)
726
+ SENSITIVE = []
695
727
  include Aws::Structure
696
728
  end
697
729
 
@@ -738,6 +770,7 @@ module Aws::MarketplaceCatalog
738
770
  :change_set,
739
771
  :change_set_name,
740
772
  :client_request_token)
773
+ SENSITIVE = []
741
774
  include Aws::Structure
742
775
  end
743
776
 
@@ -755,6 +788,7 @@ module Aws::MarketplaceCatalog
755
788
  class StartChangeSetResponse < Struct.new(
756
789
  :change_set_id,
757
790
  :change_set_arn)
791
+ SENSITIVE = []
758
792
  include Aws::Structure
759
793
  end
760
794
 
@@ -767,6 +801,7 @@ module Aws::MarketplaceCatalog
767
801
  #
768
802
  class ThrottlingException < Struct.new(
769
803
  :message)
804
+ SENSITIVE = []
770
805
  include Aws::Structure
771
806
  end
772
807
 
@@ -779,6 +814,7 @@ module Aws::MarketplaceCatalog
779
814
  #
780
815
  class ValidationException < Struct.new(
781
816
  :message)
817
+ SENSITIVE = []
782
818
  include Aws::Structure
783
819
  end
784
820
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-marketplacecatalog
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.7.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-05-07 00:00:00.000000000 Z
11
+ date: 2020-09-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.71.0
22
+ version: 3.99.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.71.0
32
+ version: 3.99.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement