aws-sdk-efs 1.0.0.rc2 → 1.0.0.rc3

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: 482469d307f45f3914c2355edbab99fdce1d61d0
4
- data.tar.gz: f29d09e12970bccdf43f8517608d9cbd52be66bc
3
+ metadata.gz: 059c959e4572139b75d06957a1683875cb9af8f9
4
+ data.tar.gz: 56e5cf54578b561a64fd88a8f71be255bbdcd098
5
5
  SHA512:
6
- metadata.gz: 304ff7cc2d7209384b7cb044a6eeada0c5aa27749898c3a8de3f8a9e9157ae358292189546e539e69f6e79eb26f9616acefc6bf99891af1bef8462e2551d7870
7
- data.tar.gz: a38c6b0f352c90d18ac79d49e65b2911c0c71a6e61448b549d6fa3e4fb50d901c8d33d6bedbaac6e3cd59460e37f8212118cff303da629b6043bff79e184e10e
6
+ metadata.gz: ead7b5c1b5d12a5b370c0ec6f3c86b1ffded7cb69440e41339f9bfed83702ab18b0adaeed3e263eb3d550bb9c389a2cf92194ec18c80fb7a2796bbd3c517b7fc
7
+ data.tar.gz: 885c720d331b17f8aff9f760f4b147394889ae9eb21d5fc8d345af79fbdfe32d78343c72319df53715e8666aec164496d5e41ba8c468b0096c9be256e15f474c
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-efs/customizations'
42
42
  # @service
43
43
  module Aws::EFS
44
44
 
45
- GEM_VERSION = '1.0.0.rc1'
45
+ GEM_VERSION = '1.0.0.rc3'
46
46
 
47
47
  end
@@ -18,6 +18,7 @@ require 'aws-sdk-core/plugins/regional_endpoint.rb'
18
18
  require 'aws-sdk-core/plugins/response_paging.rb'
19
19
  require 'aws-sdk-core/plugins/stub_responses.rb'
20
20
  require 'aws-sdk-core/plugins/idempotency_token.rb'
21
+ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
21
22
  require 'aws-sdk-core/plugins/signature_v4.rb'
22
23
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
23
24
 
@@ -45,6 +46,7 @@ module Aws::EFS
45
46
  add_plugin(Aws::Plugins::ResponsePaging)
46
47
  add_plugin(Aws::Plugins::StubResponses)
47
48
  add_plugin(Aws::Plugins::IdempotencyToken)
49
+ add_plugin(Aws::Plugins::JsonvalueConverter)
48
50
  add_plugin(Aws::Plugins::SignatureV4)
49
51
  add_plugin(Aws::Plugins::Protocols::RestJson)
50
52
 
@@ -247,6 +249,8 @@ module Aws::EFS
247
249
  # resp.size_in_bytes.timestamp #=> Time
248
250
  # resp.performance_mode #=> String, one of "generalPurpose", "maxIO"
249
251
  #
252
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticfilesystem-2015-02-01/CreateFileSystem AWS API Documentation
253
+ #
250
254
  # @overload create_file_system(params = {})
251
255
  # @param [Hash] params ({})
252
256
  def create_file_system(params = {}, options = {})
@@ -412,6 +416,8 @@ module Aws::EFS
412
416
  # resp.ip_address #=> String
413
417
  # resp.network_interface_id #=> String
414
418
  #
419
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticfilesystem-2015-02-01/CreateMountTarget AWS API Documentation
420
+ #
415
421
  # @overload create_mount_target(params = {})
416
422
  # @param [Hash] params ({})
417
423
  def create_mount_target(params = {}, options = {})
@@ -450,6 +456,8 @@ module Aws::EFS
450
456
  # ],
451
457
  # })
452
458
  #
459
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticfilesystem-2015-02-01/CreateTags AWS API Documentation
460
+ #
453
461
  # @overload create_tags(params = {})
454
462
  # @param [Hash] params ({})
455
463
  def create_tags(params = {}, options = {})
@@ -488,6 +496,8 @@ module Aws::EFS
488
496
  # file_system_id: "FileSystemId", # required
489
497
  # })
490
498
  #
499
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticfilesystem-2015-02-01/DeleteFileSystem AWS API Documentation
500
+ #
491
501
  # @overload delete_file_system(params = {})
492
502
  # @param [Hash] params ({})
493
503
  def delete_file_system(params = {}, options = {})
@@ -539,6 +549,8 @@ module Aws::EFS
539
549
  # mount_target_id: "MountTargetId", # required
540
550
  # })
541
551
  #
552
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticfilesystem-2015-02-01/DeleteMountTarget AWS API Documentation
553
+ #
542
554
  # @overload delete_mount_target(params = {})
543
555
  # @param [Hash] params ({})
544
556
  def delete_mount_target(params = {}, options = {})
@@ -574,6 +586,8 @@ module Aws::EFS
574
586
  # tag_keys: ["TagKey"], # required
575
587
  # })
576
588
  #
589
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticfilesystem-2015-02-01/DeleteTags AWS API Documentation
590
+ #
577
591
  # @overload delete_tags(params = {})
578
592
  # @param [Hash] params ({})
579
593
  def delete_tags(params = {}, options = {})
@@ -662,6 +676,8 @@ module Aws::EFS
662
676
  # resp.file_systems[0].performance_mode #=> String, one of "generalPurpose", "maxIO"
663
677
  # resp.next_marker #=> String
664
678
  #
679
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticfilesystem-2015-02-01/DescribeFileSystems AWS API Documentation
680
+ #
665
681
  # @overload describe_file_systems(params = {})
666
682
  # @param [Hash] params ({})
667
683
  def describe_file_systems(params = {}, options = {})
@@ -700,6 +716,8 @@ module Aws::EFS
700
716
  # resp.security_groups #=> Array
701
717
  # resp.security_groups[0] #=> String
702
718
  #
719
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticfilesystem-2015-02-01/DescribeMountTargetSecurityGroups AWS API Documentation
720
+ #
703
721
  # @overload describe_mount_target_security_groups(params = {})
704
722
  # @param [Hash] params ({})
705
723
  def describe_mount_target_security_groups(params = {}, options = {})
@@ -764,6 +782,8 @@ module Aws::EFS
764
782
  # resp.mount_targets[0].network_interface_id #=> String
765
783
  # resp.next_marker #=> String
766
784
  #
785
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticfilesystem-2015-02-01/DescribeMountTargets AWS API Documentation
786
+ #
767
787
  # @overload describe_mount_targets(params = {})
768
788
  # @param [Hash] params ({})
769
789
  def describe_mount_targets(params = {}, options = {})
@@ -813,6 +833,8 @@ module Aws::EFS
813
833
  # resp.tags[0].value #=> String
814
834
  # resp.next_marker #=> String
815
835
  #
836
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticfilesystem-2015-02-01/DescribeTags AWS API Documentation
837
+ #
816
838
  # @overload describe_tags(params = {})
817
839
  # @param [Hash] params ({})
818
840
  def describe_tags(params = {}, options = {})
@@ -853,6 +875,8 @@ module Aws::EFS
853
875
  # security_groups: ["SecurityGroup"],
854
876
  # })
855
877
  #
878
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticfilesystem-2015-02-01/ModifyMountTargetSecurityGroups AWS API Documentation
879
+ #
856
880
  # @overload modify_mount_target_security_groups(params = {})
857
881
  # @param [Hash] params ({})
858
882
  def modify_mount_target_security_groups(params = {}, options = {})
@@ -873,7 +897,7 @@ module Aws::EFS
873
897
  params: params,
874
898
  config: config)
875
899
  context[:gem_name] = 'aws-sdk-efs'
876
- context[:gem_version] = '1.0.0.rc1'
900
+ context[:gem_version] = '1.0.0.rc3'
877
901
  Seahorse::Client::Request.new(handlers, context)
878
902
  end
879
903
 
@@ -30,6 +30,8 @@ module Aws::EFS
30
30
  # can't be changed after the file system has been created.
31
31
  # @return [String]
32
32
  #
33
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticfilesystem-2015-02-01/CreateFileSystemRequest AWS API Documentation
34
+ #
33
35
  class CreateFileSystemRequest < Struct.new(
34
36
  :creation_token,
35
37
  :performance_mode)
@@ -63,6 +65,8 @@ module Aws::EFS
63
65
  # must be for the same VPC as subnet specified.
64
66
  # @return [Array<String>]
65
67
  #
68
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticfilesystem-2015-02-01/CreateMountTargetRequest AWS API Documentation
69
+ #
66
70
  class CreateMountTargetRequest < Struct.new(
67
71
  :file_system_id,
68
72
  :subnet_id,
@@ -94,6 +98,8 @@ module Aws::EFS
94
98
  # pair.
95
99
  # @return [Array<Types::Tag>]
96
100
  #
101
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticfilesystem-2015-02-01/CreateTagsRequest AWS API Documentation
102
+ #
97
103
  class CreateTagsRequest < Struct.new(
98
104
  :file_system_id,
99
105
  :tags)
@@ -111,6 +117,8 @@ module Aws::EFS
111
117
  # ID of the file system you want to delete.
112
118
  # @return [String]
113
119
  #
120
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticfilesystem-2015-02-01/DeleteFileSystemRequest AWS API Documentation
121
+ #
114
122
  class DeleteFileSystemRequest < Struct.new(
115
123
  :file_system_id)
116
124
  include Aws::Structure
@@ -127,6 +135,8 @@ module Aws::EFS
127
135
  # ID of the mount target to delete (String).
128
136
  # @return [String]
129
137
  #
138
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticfilesystem-2015-02-01/DeleteMountTargetRequest AWS API Documentation
139
+ #
130
140
  class DeleteMountTargetRequest < Struct.new(
131
141
  :mount_target_id)
132
142
  include Aws::Structure
@@ -148,6 +158,8 @@ module Aws::EFS
148
158
  # List of tag keys to delete.
149
159
  # @return [Array<String>]
150
160
  #
161
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticfilesystem-2015-02-01/DeleteTagsRequest AWS API Documentation
162
+ #
151
163
  class DeleteTagsRequest < Struct.new(
152
164
  :file_system_id,
153
165
  :tag_keys)
@@ -189,6 +201,8 @@ module Aws::EFS
189
201
  # retrieve (String).
190
202
  # @return [String]
191
203
  #
204
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticfilesystem-2015-02-01/DescribeFileSystemsRequest AWS API Documentation
205
+ #
192
206
  class DescribeFileSystemsRequest < Struct.new(
193
207
  :max_items,
194
208
  :marker,
@@ -211,6 +225,8 @@ module Aws::EFS
211
225
  # fetch the descriptions.
212
226
  # @return [String]
213
227
  #
228
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticfilesystem-2015-02-01/DescribeFileSystemsResponse AWS API Documentation
229
+ #
214
230
  class DescribeFileSystemsResponse < Struct.new(
215
231
  :marker,
216
232
  :file_systems,
@@ -229,6 +245,8 @@ module Aws::EFS
229
245
  # ID of the mount target whose security groups you want to retrieve.
230
246
  # @return [String]
231
247
  #
248
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticfilesystem-2015-02-01/DescribeMountTargetSecurityGroupsRequest AWS API Documentation
249
+ #
232
250
  class DescribeMountTargetSecurityGroupsRequest < Struct.new(
233
251
  :mount_target_id)
234
252
  include Aws::Structure
@@ -238,6 +256,8 @@ module Aws::EFS
238
256
  # Array of security groups.
239
257
  # @return [Array<String>]
240
258
  #
259
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticfilesystem-2015-02-01/DescribeMountTargetSecurityGroupsResponse AWS API Documentation
260
+ #
241
261
  class DescribeMountTargetSecurityGroupsResponse < Struct.new(
242
262
  :security_groups)
243
263
  include Aws::Structure
@@ -277,6 +297,8 @@ module Aws::EFS
277
297
  # not included.
278
298
  # @return [String]
279
299
  #
300
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticfilesystem-2015-02-01/DescribeMountTargetsRequest AWS API Documentation
301
+ #
280
302
  class DescribeMountTargetsRequest < Struct.new(
281
303
  :max_items,
282
304
  :marker,
@@ -301,6 +323,8 @@ module Aws::EFS
301
323
  # this value to retrieve the next set of mount targets.
302
324
  # @return [String]
303
325
  #
326
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticfilesystem-2015-02-01/DescribeMountTargetsResponse AWS API Documentation
327
+ #
304
328
  class DescribeMountTargetsResponse < Struct.new(
305
329
  :marker,
306
330
  :mount_targets,
@@ -332,6 +356,8 @@ module Aws::EFS
332
356
  # ID of the file system whose tag set you want to retrieve.
333
357
  # @return [String]
334
358
  #
359
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticfilesystem-2015-02-01/DescribeTagsRequest AWS API Documentation
360
+ #
335
361
  class DescribeTagsRequest < Struct.new(
336
362
  :max_items,
337
363
  :marker,
@@ -356,6 +382,8 @@ module Aws::EFS
356
382
  # next set of tags.
357
383
  # @return [String]
358
384
  #
385
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticfilesystem-2015-02-01/DescribeTagsResponse AWS API Documentation
386
+ #
359
387
  class DescribeTagsResponse < Struct.new(
360
388
  :marker,
361
389
  :tags,
@@ -416,6 +444,8 @@ module Aws::EFS
416
444
  # The `PerformanceMode` of the file system.
417
445
  # @return [String]
418
446
  #
447
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticfilesystem-2015-02-01/FileSystemDescription AWS API Documentation
448
+ #
419
449
  class FileSystemDescription < Struct.new(
420
450
  :owner_id,
421
451
  :creation_token,
@@ -450,6 +480,8 @@ module Aws::EFS
450
480
  # 1970-01-01T00:00:00Z.
451
481
  # @return [Time]
452
482
  #
483
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticfilesystem-2015-02-01/FileSystemSize AWS API Documentation
484
+ #
453
485
  class FileSystemSize < Struct.new(
454
486
  :value,
455
487
  :timestamp)
@@ -472,6 +504,8 @@ module Aws::EFS
472
504
  # Array of up to five VPC security group IDs.
473
505
  # @return [Array<String>]
474
506
  #
507
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticfilesystem-2015-02-01/ModifyMountTargetSecurityGroupsRequest AWS API Documentation
508
+ #
475
509
  class ModifyMountTargetSecurityGroupsRequest < Struct.new(
476
510
  :mount_target_id,
477
511
  :security_groups)
@@ -510,6 +544,8 @@ module Aws::EFS
510
544
  # the mount target.
511
545
  # @return [String]
512
546
  #
547
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticfilesystem-2015-02-01/MountTargetDescription AWS API Documentation
548
+ #
513
549
  class MountTargetDescription < Struct.new(
514
550
  :owner_id,
515
551
  :mount_target_id,
@@ -541,6 +577,8 @@ module Aws::EFS
541
577
  # Value of the tag key.
542
578
  # @return [String]
543
579
  #
580
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticfilesystem-2015-02-01/Tag AWS API Documentation
581
+ #
544
582
  class Tag < Struct.new(
545
583
  :key,
546
584
  :value)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-efs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.rc2
4
+ version: 1.0.0.rc3
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-01-24 00:00:00.000000000 Z
11
+ date: 2017-04-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core