aws-sdk-core 2.11.56 → 2.11.57

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: 19475995ef12dc1dbb64834b81fdf923c9c8220c
4
- data.tar.gz: 006743356e0453e4c5c10859431313a4cd04c86c
3
+ metadata.gz: e4ec08942656c22a60a60478a807f4f9b9a322ce
4
+ data.tar.gz: 03617a8953b3aa7055b5c3d98bcc4005dccf693d
5
5
  SHA512:
6
- metadata.gz: cd2aca71171fe6200f23d3afcf4759054892ddfde0df768394b5fc44cb6a0f52cb90c6ca3b500d08e5ff37aff69af65e4f05d93d904c43936f7d16b4c19fc47e
7
- data.tar.gz: 1e2e72a6bf461d889f17c4c2043211eebe0f7b7bcf375ab24470714e45523a90e116a074d98cd63f0b0867fbc7a47afe88a613906add301f1ac38562c1f1b173
6
+ metadata.gz: ac4234a232e550514ef1c19919d6c8c10d9efb4f3ab1b07e953604fc2ab0b3790e2cb6474f557b6541652566ac7782d42069240471e1065f4c56c8db26c801e3
7
+ data.tar.gz: 2706830f7f13d661c71adc148c53aec857577d2cb1fd6e3b60397573f3e7908c0605288397bd4089bfba4f73bc2a425e3018b3a86904aee8c98d5cd1713aaa8f
@@ -493,6 +493,16 @@
493
493
  "min":1,
494
494
  "sensitive":true
495
495
  },
496
+ "Action":{
497
+ "type":"string",
498
+ "enum":[
499
+ "CLIPBOARD_COPY_FROM_LOCAL_DEVICE",
500
+ "CLIPBOARD_COPY_TO_LOCAL_DEVICE",
501
+ "FILE_UPLOAD",
502
+ "FILE_DOWNLOAD",
503
+ "PRINTING_TO_LOCAL_DEVICE"
504
+ ]
505
+ },
496
506
  "Application":{
497
507
  "type":"structure",
498
508
  "members":{
@@ -685,7 +695,8 @@
685
695
  "DisplayName":{"shape":"DisplayName"},
686
696
  "StorageConnectors":{"shape":"StorageConnectorList"},
687
697
  "RedirectURL":{"shape":"RedirectURL"},
688
- "FeedbackURL":{"shape":"FeedbackURL"}
698
+ "FeedbackURL":{"shape":"FeedbackURL"},
699
+ "UserSettings":{"shape":"UserSettingList"}
689
700
  }
690
701
  },
691
702
  "CreateStackResult":{
@@ -1247,6 +1258,13 @@
1247
1258
  "type":"list",
1248
1259
  "member":{"shape":"OrganizationalUnitDistinguishedName"}
1249
1260
  },
1261
+ "Permission":{
1262
+ "type":"string",
1263
+ "enum":[
1264
+ "ENABLED",
1265
+ "DISABLED"
1266
+ ]
1267
+ },
1250
1268
  "PlatformType":{
1251
1269
  "type":"string",
1252
1270
  "enum":["WINDOWS"]
@@ -1362,7 +1380,8 @@
1362
1380
  "StorageConnectors":{"shape":"StorageConnectorList"},
1363
1381
  "RedirectURL":{"shape":"RedirectURL"},
1364
1382
  "FeedbackURL":{"shape":"FeedbackURL"},
1365
- "StackErrors":{"shape":"StackErrors"}
1383
+ "StackErrors":{"shape":"StackErrors"},
1384
+ "UserSettings":{"shape":"UserSettingList"}
1366
1385
  }
1367
1386
  },
1368
1387
  "StackAttribute":{
@@ -1371,7 +1390,8 @@
1371
1390
  "STORAGE_CONNECTORS",
1372
1391
  "REDIRECT_URL",
1373
1392
  "FEEDBACK_URL",
1374
- "THEME_NAME"
1393
+ "THEME_NAME",
1394
+ "USER_SETTINGS"
1375
1395
  ]
1376
1396
  },
1377
1397
  "StackAttributes":{
@@ -1600,7 +1620,8 @@
1600
1620
  },
1601
1621
  "RedirectURL":{"shape":"RedirectURL"},
1602
1622
  "FeedbackURL":{"shape":"FeedbackURL"},
1603
- "AttributesToDelete":{"shape":"StackAttributes"}
1623
+ "AttributesToDelete":{"shape":"StackAttributes"},
1624
+ "UserSettings":{"shape":"UserSettingList"}
1604
1625
  }
1605
1626
  },
1606
1627
  "UpdateStackResult":{
@@ -1614,6 +1635,22 @@
1614
1635
  "max":32,
1615
1636
  "min":2
1616
1637
  },
1638
+ "UserSetting":{
1639
+ "type":"structure",
1640
+ "required":[
1641
+ "Action",
1642
+ "Permission"
1643
+ ],
1644
+ "members":{
1645
+ "Action":{"shape":"Action"},
1646
+ "Permission":{"shape":"Permission"}
1647
+ }
1648
+ },
1649
+ "UserSettingList":{
1650
+ "type":"list",
1651
+ "member":{"shape":"UserSetting"},
1652
+ "min":1
1653
+ },
1617
1654
  "VisibilityType":{
1618
1655
  "type":"string",
1619
1656
  "enum":[
@@ -107,6 +107,18 @@
107
107
  {"shape":"InvalidParameterValueException"}
108
108
  ]
109
109
  },
110
+ "DeleteRetentionConfiguration":{
111
+ "name":"DeleteRetentionConfiguration",
112
+ "http":{
113
+ "method":"POST",
114
+ "requestUri":"/"
115
+ },
116
+ "input":{"shape":"DeleteRetentionConfigurationRequest"},
117
+ "errors":[
118
+ {"shape":"InvalidParameterValueException"},
119
+ {"shape":"NoSuchRetentionConfigurationException"}
120
+ ]
121
+ },
110
122
  "DeliverConfigSnapshot":{
111
123
  "name":"DeliverConfigSnapshot",
112
124
  "http":{
@@ -296,6 +308,20 @@
296
308
  {"shape":"InvalidLimitException"}
297
309
  ]
298
310
  },
311
+ "DescribeRetentionConfigurations":{
312
+ "name":"DescribeRetentionConfigurations",
313
+ "http":{
314
+ "method":"POST",
315
+ "requestUri":"/"
316
+ },
317
+ "input":{"shape":"DescribeRetentionConfigurationsRequest"},
318
+ "output":{"shape":"DescribeRetentionConfigurationsResponse"},
319
+ "errors":[
320
+ {"shape":"InvalidParameterValueException"},
321
+ {"shape":"NoSuchRetentionConfigurationException"},
322
+ {"shape":"InvalidNextTokenException"}
323
+ ]
324
+ },
299
325
  "GetAggregateComplianceDetailsByConfigRule":{
300
326
  "name":"GetAggregateComplianceDetailsByConfigRule",
301
327
  "http":{
@@ -507,6 +533,19 @@
507
533
  {"shape":"NoSuchConfigRuleException"}
508
534
  ]
509
535
  },
536
+ "PutRetentionConfiguration":{
537
+ "name":"PutRetentionConfiguration",
538
+ "http":{
539
+ "method":"POST",
540
+ "requestUri":"/"
541
+ },
542
+ "input":{"shape":"PutRetentionConfigurationRequest"},
543
+ "output":{"shape":"PutRetentionConfigurationResponse"},
544
+ "errors":[
545
+ {"shape":"InvalidParameterValueException"},
546
+ {"shape":"MaxNumberOfRetentionConfigurationsExceededException"}
547
+ ]
548
+ },
510
549
  "StartConfigRulesEvaluation":{
511
550
  "name":"StartConfigRulesEvaluation",
512
551
  "http":{
@@ -1081,6 +1120,13 @@
1081
1120
  "RequesterAwsRegion":{"shape":"AwsRegion"}
1082
1121
  }
1083
1122
  },
1123
+ "DeleteRetentionConfigurationRequest":{
1124
+ "type":"structure",
1125
+ "required":["RetentionConfigurationName"],
1126
+ "members":{
1127
+ "RetentionConfigurationName":{"shape":"RetentionConfigurationName"}
1128
+ }
1129
+ },
1084
1130
  "DeliverConfigSnapshotRequest":{
1085
1131
  "type":"structure",
1086
1132
  "required":["deliveryChannelName"],
@@ -1324,6 +1370,20 @@
1324
1370
  "NextToken":{"shape":"String"}
1325
1371
  }
1326
1372
  },
1373
+ "DescribeRetentionConfigurationsRequest":{
1374
+ "type":"structure",
1375
+ "members":{
1376
+ "RetentionConfigurationNames":{"shape":"RetentionConfigurationNameList"},
1377
+ "NextToken":{"shape":"NextToken"}
1378
+ }
1379
+ },
1380
+ "DescribeRetentionConfigurationsResponse":{
1381
+ "type":"structure",
1382
+ "members":{
1383
+ "RetentionConfigurations":{"shape":"RetentionConfigurationList"},
1384
+ "NextToken":{"shape":"NextToken"}
1385
+ }
1386
+ },
1327
1387
  "EarlierTime":{"type":"timestamp"},
1328
1388
  "EmptiableStringWithCharLimit256":{
1329
1389
  "type":"string",
@@ -1665,6 +1725,12 @@
1665
1725
  },
1666
1726
  "exception":true
1667
1727
  },
1728
+ "MaxNumberOfRetentionConfigurationsExceededException":{
1729
+ "type":"structure",
1730
+ "members":{
1731
+ },
1732
+ "exception":true
1733
+ },
1668
1734
  "MaximumExecutionFrequency":{
1669
1735
  "type":"string",
1670
1736
  "enum":[
@@ -1740,6 +1806,12 @@
1740
1806
  },
1741
1807
  "exception":true
1742
1808
  },
1809
+ "NoSuchRetentionConfigurationException":{
1810
+ "type":"structure",
1811
+ "members":{
1812
+ },
1813
+ "exception":true
1814
+ },
1743
1815
  "OrderingTimestamp":{"type":"timestamp"},
1744
1816
  "OrganizationAccessDeniedException":{
1745
1817
  "type":"structure",
@@ -1848,6 +1920,19 @@
1848
1920
  "FailedEvaluations":{"shape":"Evaluations"}
1849
1921
  }
1850
1922
  },
1923
+ "PutRetentionConfigurationRequest":{
1924
+ "type":"structure",
1925
+ "required":["RetentionPeriodInDays"],
1926
+ "members":{
1927
+ "RetentionPeriodInDays":{"shape":"RetentionPeriodInDays"}
1928
+ }
1929
+ },
1930
+ "PutRetentionConfigurationResponse":{
1931
+ "type":"structure",
1932
+ "members":{
1933
+ "RetentionConfiguration":{"shape":"RetentionConfiguration"}
1934
+ }
1935
+ },
1851
1936
  "RecorderName":{
1852
1937
  "type":"string",
1853
1938
  "max":256,
@@ -2028,6 +2113,38 @@
2028
2113
  "max":20,
2029
2114
  "min":0
2030
2115
  },
2116
+ "RetentionConfiguration":{
2117
+ "type":"structure",
2118
+ "required":[
2119
+ "Name",
2120
+ "RetentionPeriodInDays"
2121
+ ],
2122
+ "members":{
2123
+ "Name":{"shape":"RetentionConfigurationName"},
2124
+ "RetentionPeriodInDays":{"shape":"RetentionPeriodInDays"}
2125
+ }
2126
+ },
2127
+ "RetentionConfigurationList":{
2128
+ "type":"list",
2129
+ "member":{"shape":"RetentionConfiguration"}
2130
+ },
2131
+ "RetentionConfigurationName":{
2132
+ "type":"string",
2133
+ "max":256,
2134
+ "min":1,
2135
+ "pattern":"[\\w\\-]+"
2136
+ },
2137
+ "RetentionConfigurationNameList":{
2138
+ "type":"list",
2139
+ "member":{"shape":"RetentionConfigurationName"},
2140
+ "max":1,
2141
+ "min":0
2142
+ },
2143
+ "RetentionPeriodInDays":{
2144
+ "type":"integer",
2145
+ "max":2557,
2146
+ "min":30
2147
+ },
2031
2148
  "RuleLimit":{
2032
2149
  "type":"integer",
2033
2150
  "max":50,
@@ -1191,7 +1191,8 @@
1191
1191
  "members":{
1192
1192
  "JobName":{"shape":"NameString"},
1193
1193
  "Arguments":{"shape":"GenericMap"},
1194
- "Timeout":{"shape":"Timeout"}
1194
+ "Timeout":{"shape":"Timeout"},
1195
+ "NotificationProperty":{"shape":"NotificationProperty"}
1195
1196
  }
1196
1197
  },
1197
1198
  "ActionList":{
@@ -1844,7 +1845,8 @@
1844
1845
  "Connections":{"shape":"ConnectionsList"},
1845
1846
  "MaxRetries":{"shape":"MaxRetries"},
1846
1847
  "AllocatedCapacity":{"shape":"IntegerValue"},
1847
- "Timeout":{"shape":"Timeout"}
1848
+ "Timeout":{"shape":"Timeout"},
1849
+ "NotificationProperty":{"shape":"NotificationProperty"}
1848
1850
  }
1849
1851
  },
1850
1852
  "CreateJobResponse":{
@@ -2255,6 +2257,7 @@
2255
2257
  "MaxConcurrentRuns":{"shape":"MaxConcurrentRuns"}
2256
2258
  }
2257
2259
  },
2260
+ "ExecutionTime":{"type":"integer"},
2258
2261
  "FieldType":{"type":"string"},
2259
2262
  "FilterString":{
2260
2263
  "type":"string",
@@ -2845,7 +2848,8 @@
2845
2848
  "Connections":{"shape":"ConnectionsList"},
2846
2849
  "MaxRetries":{"shape":"MaxRetries"},
2847
2850
  "AllocatedCapacity":{"shape":"IntegerValue"},
2848
- "Timeout":{"shape":"Timeout"}
2851
+ "Timeout":{"shape":"Timeout"},
2852
+ "NotificationProperty":{"shape":"NotificationProperty"}
2849
2853
  }
2850
2854
  },
2851
2855
  "JobBookmarkEntry":{
@@ -2886,8 +2890,9 @@
2886
2890
  "ErrorMessage":{"shape":"ErrorString"},
2887
2891
  "PredecessorRuns":{"shape":"PredecessorList"},
2888
2892
  "AllocatedCapacity":{"shape":"IntegerValue"},
2889
- "ExecutionTime":{"shape":"IntegerValue"},
2890
- "Timeout":{"shape":"Timeout"}
2893
+ "ExecutionTime":{"shape":"ExecutionTime"},
2894
+ "Timeout":{"shape":"Timeout"},
2895
+ "NotificationProperty":{"shape":"NotificationProperty"}
2891
2896
  }
2892
2897
  },
2893
2898
  "JobRunList":{
@@ -2918,7 +2923,8 @@
2918
2923
  "Connections":{"shape":"ConnectionsList"},
2919
2924
  "MaxRetries":{"shape":"MaxRetries"},
2920
2925
  "AllocatedCapacity":{"shape":"IntegerValue"},
2921
- "Timeout":{"shape":"Timeout"}
2926
+ "Timeout":{"shape":"Timeout"},
2927
+ "NotificationProperty":{"shape":"NotificationProperty"}
2922
2928
  }
2923
2929
  },
2924
2930
  "JsonClassifier":{
@@ -3065,6 +3071,17 @@
3065
3071
  "type":"integer",
3066
3072
  "min":0
3067
3073
  },
3074
+ "NotificationProperty":{
3075
+ "type":"structure",
3076
+ "members":{
3077
+ "NotifyDelayAfter":{"shape":"NotifyDelayAfter"}
3078
+ }
3079
+ },
3080
+ "NotifyDelayAfter":{
3081
+ "type":"integer",
3082
+ "box":true,
3083
+ "min":1
3084
+ },
3068
3085
  "OperationTimeoutException":{
3069
3086
  "type":"structure",
3070
3087
  "members":{
@@ -3369,7 +3386,8 @@
3369
3386
  "JobRunId":{"shape":"IdString"},
3370
3387
  "Arguments":{"shape":"GenericMap"},
3371
3388
  "AllocatedCapacity":{"shape":"IntegerValue"},
3372
- "Timeout":{"shape":"Timeout"}
3389
+ "Timeout":{"shape":"Timeout"},
3390
+ "NotificationProperty":{"shape":"NotificationProperty"}
3373
3391
  }
3374
3392
  },
3375
3393
  "StartJobRunResponse":{
@@ -4164,7 +4164,8 @@
4164
4164
  "enum":[
4165
4165
  "IN_PROGRESS",
4166
4166
  "CANCELED",
4167
- "COMPLETED"
4167
+ "COMPLETED",
4168
+ "DELETION_IN_PROGRESS"
4168
4169
  ]
4169
4170
  },
4170
4171
  "JobSummary":{
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.56'
2
+ VERSION = '2.11.57'
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.11.56
4
+ version: 2.11.57
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: 2018-05-24 00:00:00.000000000 Z
11
+ date: 2018-05-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath