aws-sdk 1.29.1 → 1.30.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.
@@ -85,6 +85,19 @@
85
85
  StepIds:
86
86
  :sym: :step_ids
87
87
  :type: :string
88
+ - :name: AddTags
89
+ :method: :add_tags
90
+ :inputs:
91
+ ResourceId:
92
+ - :string
93
+ Tags:
94
+ - :list:
95
+ - :structure:
96
+ Key:
97
+ - :string
98
+ Value:
99
+ - :string
100
+ :outputs: {}
88
101
  - :name: DescribeCluster
89
102
  :method: :describe_cluster
90
103
  :inputs:
@@ -184,6 +197,16 @@
184
197
  :members:
185
198
  :sym: :map_value
186
199
  :type: :string
200
+ Tags:
201
+ :sym: :tags
202
+ :type: :hash
203
+ :members:
204
+ Key:
205
+ :sym: :key
206
+ :type: :string
207
+ Value:
208
+ :sym: :value
209
+ :type: :string
187
210
  - :name: DescribeJobFlows
188
211
  :method: :describe_job_flows
189
212
  :inputs:
@@ -768,6 +791,15 @@
768
791
  - :list:
769
792
  - :string
770
793
  :outputs: {}
794
+ - :name: RemoveTags
795
+ :method: :remove_tags
796
+ :inputs:
797
+ ResourceId:
798
+ - :string
799
+ TagKeys:
800
+ - :list:
801
+ - :string
802
+ :outputs: {}
771
803
  - :name: RunJobFlow
772
804
  :method: :run_job_flow
773
805
  :inputs:
@@ -878,6 +910,13 @@
878
910
  - :boolean
879
911
  JobFlowRole:
880
912
  - :string
913
+ Tags:
914
+ - :list:
915
+ - :structure:
916
+ Key:
917
+ - :string
918
+ Value:
919
+ - :string
881
920
  :outputs:
882
921
  JobFlowId:
883
922
  :sym: :job_flow_id
@@ -139,18 +139,26 @@
139
139
  ApplicationName:
140
140
  - :string
141
141
  - :required
142
- VersionLabel:
143
- - :string
144
142
  EnvironmentName:
145
143
  - :string
146
144
  - :required
147
- TemplateName:
148
- - :string
149
- SolutionStackName:
145
+ Description:
150
146
  - :string
151
147
  CNAMEPrefix:
152
148
  - :string
153
- Description:
149
+ Tier:
150
+ - :structure:
151
+ Name:
152
+ - :string
153
+ Type:
154
+ - :string
155
+ Version:
156
+ - :string
157
+ VersionLabel:
158
+ - :string
159
+ TemplateName:
160
+ - :string
161
+ SolutionStackName:
154
162
  - :string
155
163
  OptionSettings:
156
164
  - :membered_list:
@@ -203,6 +211,8 @@
203
211
  ApplicationName:
204
212
  - :string
205
213
  - :required
214
+ TerminateEnvByForce:
215
+ - :boolean
206
216
  :outputs:
207
217
  :children:
208
218
  DeleteApplicationResult:
@@ -426,6 +436,12 @@
426
436
  member:
427
437
  :rename: :triggers
428
438
  :list: true
439
+ Queues:
440
+ :ignore: true
441
+ :children:
442
+ member:
443
+ :rename: :queues
444
+ :list: true
429
445
  - :name: DescribeEnvironments
430
446
  :method: :describe_environments
431
447
  :inputs:
@@ -746,12 +762,20 @@
746
762
  - :string
747
763
  EnvironmentName:
748
764
  - :string
765
+ Description:
766
+ - :string
767
+ Tier:
768
+ - :structure:
769
+ Name:
770
+ - :string
771
+ Type:
772
+ - :string
773
+ Version:
774
+ - :string
749
775
  VersionLabel:
750
776
  - :string
751
777
  TemplateName:
752
778
  - :string
753
- Description:
754
- - :string
755
779
  OptionSettings:
756
780
  - :membered_list:
757
781
  - :structure:
@@ -0,0 +1,200 @@
1
+ # Copyright 2011-2013 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License"). You
4
+ # may not use this file except in compliance with the License. A copy of
5
+ # the License is located at
6
+ #
7
+ # http://aws.amazon.com/apache2.0/
8
+ #
9
+ # or in the "license" file accompanying this file. This file is
10
+ # distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
11
+ # ANY KIND, either express or implied. See the License for the specific
12
+ # language governing permissions and limitations under the License.
13
+
14
+ ---
15
+ :target_prefix: Kinesis_20131104.
16
+ :api_version: '2013-11-04'
17
+ :operations:
18
+ - :name: CreateStream
19
+ :method: :create_stream
20
+ :inputs:
21
+ StreamName:
22
+ - :string
23
+ - :required
24
+ ShardCount:
25
+ - :integer
26
+ - :required
27
+ :outputs: {}
28
+ - :name: DeleteStream
29
+ :method: :delete_stream
30
+ :inputs:
31
+ StreamName:
32
+ - :string
33
+ - :required
34
+ :outputs: {}
35
+ - :name: DescribeStream
36
+ :method: :describe_stream
37
+ :inputs:
38
+ StreamName:
39
+ - :string
40
+ - :required
41
+ Limit:
42
+ - :integer
43
+ ExclusiveStartShardId:
44
+ - :string
45
+ :outputs:
46
+ StreamDescription:
47
+ :sym: :stream_description
48
+ :type: :hash
49
+ :members:
50
+ StreamName:
51
+ :sym: :stream_name
52
+ :type: :string
53
+ StreamARN:
54
+ :sym: :stream_arn
55
+ :type: :string
56
+ StreamStatus:
57
+ :sym: :stream_status
58
+ :type: :string
59
+ Shards:
60
+ :sym: :shards
61
+ :type: :hash
62
+ :members:
63
+ ShardId:
64
+ :sym: :shard_id
65
+ :type: :string
66
+ ParentShardId:
67
+ :sym: :parent_shard_id
68
+ :type: :string
69
+ AdjacentParentShardId:
70
+ :sym: :adjacent_parent_shard_id
71
+ :type: :string
72
+ HashKeyRange:
73
+ :sym: :hash_key_range
74
+ :type: :hash
75
+ :members:
76
+ StartingHashKey:
77
+ :sym: :starting_hash_key
78
+ :type: :string
79
+ EndingHashKey:
80
+ :sym: :ending_hash_key
81
+ :type: :string
82
+ SequenceNumberRange:
83
+ :sym: :sequence_number_range
84
+ :type: :hash
85
+ :members:
86
+ StartingSequenceNumber:
87
+ :sym: :starting_sequence_number
88
+ :type: :string
89
+ EndingSequenceNumber:
90
+ :sym: :ending_sequence_number
91
+ :type: :string
92
+ IsMoreDataAvailable:
93
+ :sym: :is_more_data_available
94
+ :type: :boolean
95
+ - :name: GetNextRecords
96
+ :method: :get_next_records
97
+ :inputs:
98
+ ShardIterator:
99
+ - :string
100
+ - :required
101
+ Limit:
102
+ - :integer
103
+ :outputs:
104
+ Records:
105
+ :sym: :records
106
+ :type: :hash
107
+ :members:
108
+ SequenceNumber:
109
+ :sym: :sequence_number
110
+ :type: :string
111
+ Data:
112
+ :sym: :data
113
+ :type: :blob
114
+ PartitionKey:
115
+ :sym: :partition_key
116
+ :type: :string
117
+ NextShardIterator:
118
+ :sym: :next_shard_iterator
119
+ :type: :string
120
+ - :name: GetShardIterator
121
+ :method: :get_shard_iterator
122
+ :inputs:
123
+ StreamName:
124
+ - :string
125
+ - :required
126
+ ShardId:
127
+ - :string
128
+ - :required
129
+ ShardIteratorType:
130
+ - :string
131
+ - :required
132
+ StartingSequenceNumber:
133
+ - :string
134
+ :outputs:
135
+ ShardIterator:
136
+ :sym: :shard_iterator
137
+ :type: :string
138
+ - :name: ListStreams
139
+ :method: :list_streams
140
+ :inputs:
141
+ Limit:
142
+ - :integer
143
+ ExclusiveStartStreamName:
144
+ - :string
145
+ :outputs:
146
+ StreamNames:
147
+ :sym: :stream_names
148
+ :type: :string
149
+ IsMoreDataAvailable:
150
+ :sym: :is_more_data_available
151
+ :type: :boolean
152
+ - :name: MergeShards
153
+ :method: :merge_shards
154
+ :inputs:
155
+ StreamName:
156
+ - :string
157
+ - :required
158
+ ShardToMerge:
159
+ - :string
160
+ - :required
161
+ AdjacentShardToMerge:
162
+ - :string
163
+ - :required
164
+ :outputs: {}
165
+ - :name: PutRecord
166
+ :method: :put_record
167
+ :inputs:
168
+ StreamName:
169
+ - :string
170
+ - :required
171
+ Data:
172
+ - :blob
173
+ - :required
174
+ PartitionKey:
175
+ - :string
176
+ - :required
177
+ ExplicitHashKey:
178
+ - :string
179
+ ExclusiveMinimumSequenceNumber:
180
+ - :string
181
+ :outputs:
182
+ ShardId:
183
+ :sym: :shard_id
184
+ :type: :string
185
+ SequenceNumber:
186
+ :sym: :sequence_number
187
+ :type: :string
188
+ - :name: SplitShard
189
+ :method: :split_shard
190
+ :inputs:
191
+ StreamName:
192
+ - :string
193
+ - :required
194
+ ShardToSplit:
195
+ - :string
196
+ - :required
197
+ NewStartingHashKey:
198
+ - :string
199
+ - :required
200
+ :outputs: {}
@@ -381,6 +381,8 @@
381
381
  - :string
382
382
  SshPublicKey:
383
383
  - :string
384
+ AllowSelfManagement:
385
+ - :boolean
384
386
  :outputs:
385
387
  IamUserArn:
386
388
  :sym: :iam_user_arn
@@ -971,15 +973,33 @@
971
973
  LoadThreshold:
972
974
  :sym: :load_threshold
973
975
  :type: :float
976
+ - :name: DescribeMyUserProfile
977
+ :method: :describe_my_user_profile
978
+ :inputs: {}
979
+ :outputs:
980
+ UserProfile:
981
+ :sym: :user_profile
982
+ :type: :hash
983
+ :members:
984
+ IamUserArn:
985
+ :sym: :iam_user_arn
986
+ :type: :string
987
+ Name:
988
+ :sym: :name
989
+ :type: :string
990
+ SshUsername:
991
+ :sym: :ssh_username
992
+ :type: :string
993
+ SshPublicKey:
994
+ :sym: :ssh_public_key
995
+ :type: :string
974
996
  - :name: DescribePermissions
975
997
  :method: :describe_permissions
976
998
  :inputs:
977
999
  IamUserArn:
978
1000
  - :string
979
- - :required
980
1001
  StackId:
981
1002
  - :string
982
- - :required
983
1003
  :outputs:
984
1004
  Permissions:
985
1005
  :sym: :permissions
@@ -997,6 +1017,9 @@
997
1017
  AllowSudo:
998
1018
  :sym: :allow_sudo
999
1019
  :type: :boolean
1020
+ Level:
1021
+ :sym: :level
1022
+ :type: :string
1000
1023
  - :name: DescribeRaidArrays
1001
1024
  :method: :describe_raid_arrays
1002
1025
  :inputs:
@@ -1073,6 +1096,69 @@
1073
1096
  CreatedAt:
1074
1097
  :sym: :created_at
1075
1098
  :type: :string
1099
+ - :name: DescribeStackSummary
1100
+ :method: :describe_stack_summary
1101
+ :inputs:
1102
+ StackId:
1103
+ - :string
1104
+ - :required
1105
+ :outputs:
1106
+ StackSummary:
1107
+ :sym: :stack_summary
1108
+ :type: :hash
1109
+ :members:
1110
+ StackId:
1111
+ :sym: :stack_id
1112
+ :type: :string
1113
+ Name:
1114
+ :sym: :name
1115
+ :type: :string
1116
+ LayersCount:
1117
+ :sym: :layers_count
1118
+ :type: :integer
1119
+ AppsCount:
1120
+ :sym: :apps_count
1121
+ :type: :integer
1122
+ InstancesCount:
1123
+ :sym: :instances_count
1124
+ :type: :hash
1125
+ :members:
1126
+ Booting:
1127
+ :sym: :booting
1128
+ :type: :integer
1129
+ ConnectionLost:
1130
+ :sym: :connection_lost
1131
+ :type: :integer
1132
+ Pending:
1133
+ :sym: :pending
1134
+ :type: :integer
1135
+ Rebooting:
1136
+ :sym: :rebooting
1137
+ :type: :integer
1138
+ Requested:
1139
+ :sym: :requested
1140
+ :type: :integer
1141
+ RunningSetup:
1142
+ :sym: :running_setup
1143
+ :type: :integer
1144
+ SetupFailed:
1145
+ :sym: :setup_failed
1146
+ :type: :integer
1147
+ ShuttingDown:
1148
+ :sym: :shutting_down
1149
+ :type: :integer
1150
+ StartFailed:
1151
+ :sym: :start_failed
1152
+ :type: :integer
1153
+ Stopped:
1154
+ :sym: :stopped
1155
+ :type: :integer
1156
+ Terminated:
1157
+ :sym: :terminated
1158
+ :type: :integer
1159
+ Terminating:
1160
+ :sym: :terminating
1161
+ :type: :integer
1076
1162
  - :name: DescribeStacks
1077
1163
  :method: :describe_stacks
1078
1164
  :inputs:
@@ -1234,7 +1320,6 @@
1234
1320
  IamUserArns:
1235
1321
  - :list:
1236
1322
  - :string
1237
- - :required
1238
1323
  :outputs:
1239
1324
  UserProfiles:
1240
1325
  :sym: :user_profiles
@@ -1252,6 +1337,9 @@
1252
1337
  SshPublicKey:
1253
1338
  :sym: :ssh_public_key
1254
1339
  :type: :string
1340
+ AllowSelfManagement:
1341
+ :sym: :allow_self_management
1342
+ :type: :boolean
1255
1343
  - :name: DescribeVolumes
1256
1344
  :method: :describe_volumes
1257
1345
  :inputs:
@@ -1414,6 +1502,8 @@
1414
1502
  - :boolean
1415
1503
  AllowSudo:
1416
1504
  - :boolean
1505
+ Level:
1506
+ - :string
1417
1507
  :outputs: {}
1418
1508
  - :name: SetTimeBasedAutoScaling
1419
1509
  :method: :set_time_based_auto_scaling
@@ -1648,6 +1738,12 @@
1648
1738
  InstallUpdatesOnBoot:
1649
1739
  - :boolean
1650
1740
  :outputs: {}
1741
+ - :name: UpdateMyUserProfile
1742
+ :method: :update_my_user_profile
1743
+ :inputs:
1744
+ SshPublicKey:
1745
+ - :string
1746
+ :outputs: {}
1651
1747
  - :name: UpdateStack
1652
1748
  :method: :update_stack
1653
1749
  :inputs:
@@ -1713,6 +1809,8 @@
1713
1809
  - :string
1714
1810
  SshPublicKey:
1715
1811
  - :string
1812
+ AllowSelfManagement:
1813
+ - :boolean
1716
1814
  :outputs: {}
1717
1815
  - :name: UpdateVolume
1718
1816
  :method: :update_volume