aws-sdk-core 2.10.45 → 2.10.46

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
  SHA1:
3
- metadata.gz: c426818ae6dc6ccc191037e49f6c93e2a5c62497
4
- data.tar.gz: fe2afaa8368e780615c7edd5925c687e68e2b059
3
+ metadata.gz: 0f6719098f23cfe6591ebc0649cc38c505767910
4
+ data.tar.gz: 02537e6e28a146a2146310dea940ee025c3c2778
5
5
  SHA512:
6
- metadata.gz: 8de5aef55ace62b87b5c7bb971a3ee47125a9c6b21cc9c0057a15c2e1c76d573834c367d4c9c8dba54745d09e0123847a04c0c21c5346ffbc0ad082fb21bc4f6
7
- data.tar.gz: 112fcae97d212c44c77f9b4da6bf3ea88d877b84ce525c498e893308e6bb69f8d6f7667734c70218cb6c430c99fcae0fb5125e2d138166bb9389b5ad7efcf472
6
+ metadata.gz: 6459190e5ca1e682abae34edffc1e3aa501a4d39d905cf0aa1f565f4efd513b879381e39d84cd1c559d1418feeca4afb10bb33f5424feaee05cf49edf73afb4a
7
+ data.tar.gz: 41c6e24875fc99f4e41a915de13d03d1a0e496ac690dd42ab6dad8994557fe3c27644896db2fb005d00d87981ecf2b80874da3767a4895d169a70fa2934cb254
@@ -403,9 +403,17 @@
403
403
  ],
404
404
  "members":{
405
405
  "name":{"shape":"NonEmptyString"},
406
- "value":{"shape":"String"}
406
+ "value":{"shape":"String"},
407
+ "type":{"shape":"EnvironmentVariableType"}
407
408
  }
408
409
  },
410
+ "EnvironmentVariableType":{
411
+ "type":"string",
412
+ "enum":[
413
+ "PLAINTEXT",
414
+ "PARAMETER_STORE"
415
+ ]
416
+ },
409
417
  "EnvironmentVariables":{
410
418
  "type":"list",
411
419
  "member":{"shape":"EnvironmentVariable"}
@@ -70,6 +70,19 @@
70
70
  {"shape":"InvalidStateException"}
71
71
  ]
72
72
  },
73
+ "CopyProduct":{
74
+ "name":"CopyProduct",
75
+ "http":{
76
+ "method":"POST",
77
+ "requestUri":"/"
78
+ },
79
+ "input":{"shape":"CopyProductInput"},
80
+ "output":{"shape":"CopyProductOutput"},
81
+ "errors":[
82
+ {"shape":"ResourceNotFoundException"},
83
+ {"shape":"InvalidParametersException"}
84
+ ]
85
+ },
73
86
  "CreateConstraint":{
74
87
  "name":"CreateConstraint",
75
88
  "http":{
@@ -236,6 +249,18 @@
236
249
  {"shape":"ResourceNotFoundException"}
237
250
  ]
238
251
  },
252
+ "DescribeCopyProductStatus":{
253
+ "name":"DescribeCopyProductStatus",
254
+ "http":{
255
+ "method":"POST",
256
+ "requestUri":"/"
257
+ },
258
+ "input":{"shape":"DescribeCopyProductStatusInput"},
259
+ "output":{"shape":"DescribeCopyProductStatusOutput"},
260
+ "errors":[
261
+ {"shape":"ResourceNotFoundException"}
262
+ ]
263
+ },
239
264
  "DescribePortfolio":{
240
265
  "name":"DescribePortfolio",
241
266
  "http":{
@@ -825,6 +850,47 @@
825
850
  "max":1024,
826
851
  "min":1
827
852
  },
853
+ "CopyOption":{
854
+ "type":"string",
855
+ "enum":["CopyTags"]
856
+ },
857
+ "CopyOptions":{
858
+ "type":"list",
859
+ "member":{"shape":"CopyOption"}
860
+ },
861
+ "CopyProductInput":{
862
+ "type":"structure",
863
+ "required":[
864
+ "SourceProductArn",
865
+ "IdempotencyToken"
866
+ ],
867
+ "members":{
868
+ "AcceptLanguage":{"shape":"AcceptLanguage"},
869
+ "SourceProductArn":{"shape":"ProductArn"},
870
+ "TargetProductId":{"shape":"Id"},
871
+ "TargetProductName":{"shape":"ProductViewName"},
872
+ "SourceProvisioningArtifactIdentifiers":{"shape":"SourceProvisioningArtifactProperties"},
873
+ "CopyOptions":{"shape":"CopyOptions"},
874
+ "IdempotencyToken":{
875
+ "shape":"IdempotencyToken",
876
+ "idempotencyToken":true
877
+ }
878
+ }
879
+ },
880
+ "CopyProductOutput":{
881
+ "type":"structure",
882
+ "members":{
883
+ "CopyProductToken":{"shape":"Id"}
884
+ }
885
+ },
886
+ "CopyProductStatus":{
887
+ "type":"string",
888
+ "enum":[
889
+ "SUCCEEDED",
890
+ "IN_PROGRESS",
891
+ "FAILED"
892
+ ]
893
+ },
828
894
  "CreateConstraintInput":{
829
895
  "type":"structure",
830
896
  "required":[
@@ -1067,6 +1133,22 @@
1067
1133
  "Status":{"shape":"Status"}
1068
1134
  }
1069
1135
  },
1136
+ "DescribeCopyProductStatusInput":{
1137
+ "type":"structure",
1138
+ "required":["CopyProductToken"],
1139
+ "members":{
1140
+ "AcceptLanguage":{"shape":"AcceptLanguage"},
1141
+ "CopyProductToken":{"shape":"Id"}
1142
+ }
1143
+ },
1144
+ "DescribeCopyProductStatusOutput":{
1145
+ "type":"structure",
1146
+ "members":{
1147
+ "CopyProductStatus":{"shape":"CopyProductStatus"},
1148
+ "TargetProductId":{"shape":"Id"},
1149
+ "StatusDetail":{"shape":"StatusDetail"}
1150
+ }
1151
+ },
1070
1152
  "DescribePortfolioInput":{
1071
1153
  "type":"structure",
1072
1154
  "required":["Id"],
@@ -1601,6 +1683,12 @@
1601
1683
  "type":"list",
1602
1684
  "member":{"shape":"Principal"}
1603
1685
  },
1686
+ "ProductArn":{
1687
+ "type":"string",
1688
+ "max":1224,
1689
+ "min":1,
1690
+ "pattern":"arn:[a-z0-9-\\.]{1,63}:[a-z0-9-\\.]{0,63}:[a-z0-9-\\.]{0,63}:[a-z0-9-\\.]{0,63}:[^/].{0,1023}"
1691
+ },
1604
1692
  "ProductSource":{
1605
1693
  "type":"string",
1606
1694
  "enum":["ACCOUNT"]
@@ -1829,6 +1917,11 @@
1829
1917
  "Type":{"shape":"ProvisioningArtifactType"}
1830
1918
  }
1831
1919
  },
1920
+ "ProvisioningArtifactPropertyName":{
1921
+ "type":"string",
1922
+ "enum":["Id"]
1923
+ },
1924
+ "ProvisioningArtifactPropertyValue":{"type":"string"},
1832
1925
  "ProvisioningArtifactSummaries":{
1833
1926
  "type":"list",
1834
1927
  "member":{"shape":"ProvisioningArtifactSummary"}
@@ -2061,6 +2154,15 @@
2061
2154
  "DESCENDING"
2062
2155
  ]
2063
2156
  },
2157
+ "SourceProvisioningArtifactProperties":{
2158
+ "type":"list",
2159
+ "member":{"shape":"SourceProvisioningArtifactPropertiesMap"}
2160
+ },
2161
+ "SourceProvisioningArtifactPropertiesMap":{
2162
+ "type":"map",
2163
+ "key":{"shape":"ProvisioningArtifactPropertyName"},
2164
+ "value":{"shape":"ProvisioningArtifactPropertyValue"}
2165
+ },
2064
2166
  "Status":{
2065
2167
  "type":"string",
2066
2168
  "enum":[
@@ -2069,6 +2171,7 @@
2069
2171
  "FAILED"
2070
2172
  ]
2071
2173
  },
2174
+ "StatusDetail":{"type":"string"},
2072
2175
  "SupportDescription":{"type":"string"},
2073
2176
  "SupportEmail":{"type":"string"},
2074
2177
  "SupportUrl":{"type":"string"},
@@ -1,5 +1,35 @@
1
1
  {
2
2
  "pagination": {
3
+ "ListAcceptedPortfolioShares": {
4
+ "input_token": "PageToken",
5
+ "output_token": "NextPageToken",
6
+ "limit_key": "PageSize"
7
+ },
8
+ "ListConstraintsForPortfolio": {
9
+ "input_token": "PageToken",
10
+ "output_token": "NextPageToken",
11
+ "limit_key": "PageSize"
12
+ },
13
+ "ListLaunchPaths": {
14
+ "input_token": "PageToken",
15
+ "output_token": "NextPageToken",
16
+ "limit_key": "PageSize"
17
+ },
18
+ "ListPortfolios": {
19
+ "input_token": "PageToken",
20
+ "output_token": "NextPageToken",
21
+ "limit_key": "PageSize"
22
+ },
23
+ "ListPortfoliosForProduct": {
24
+ "input_token": "PageToken",
25
+ "output_token": "NextPageToken",
26
+ "limit_key": "PageSize"
27
+ },
28
+ "ListPrincipalsForPortfolio": {
29
+ "input_token": "PageToken",
30
+ "output_token": "NextPageToken",
31
+ "limit_key": "PageSize"
32
+ },
3
33
  "ListResourcesForTagOption": {
4
34
  "input_token": "PageToken",
5
35
  "output_token": "PageToken",
@@ -9,6 +39,16 @@
9
39
  "input_token": "PageToken",
10
40
  "output_token": "PageToken",
11
41
  "limit_key": "PageSize"
42
+ },
43
+ "SearchProducts": {
44
+ "input_token": "PageToken",
45
+ "output_token": "NextPageToken",
46
+ "limit_key": "PageSize"
47
+ },
48
+ "SearchProductsAsAdmin": {
49
+ "input_token": "PageToken",
50
+ "output_token": "NextPageToken",
51
+ "limit_key": "PageSize"
12
52
  }
13
53
  }
14
54
  }
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.10.45'
2
+ VERSION = '2.10.46'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.10.45
4
+ version: 2.10.46
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: 2017-09-13 00:00:00.000000000 Z
11
+ date: 2017-09-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath