aws-sdk-cloud9 1.24.1 → 1.25.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: f74c6a4e734432faa27b4f48f469f86333de29a9ec33d9018b9a2eb5241fed11
4
- data.tar.gz: 33c4fa311059aa55e2428701c463e0bb485f9296a1067de5973990474313b2d8
3
+ metadata.gz: cb129bc5a414854e84982c1f982f1e2e37e11f31da0e7f26aa58d602ab0ebee9
4
+ data.tar.gz: f95fdd11b8f47b9ba4dcb1fbcda46a1fe1f7f28a8df6534bed055e82fa2b6488
5
5
  SHA512:
6
- metadata.gz: 74586037c28ab3dea2cd685b4e2ebabd91b0250693659a9abaa5da4da455589cf50c08e0a8eed40f797ff50c097c7272f6424ff93cfdf1592a653ae70c71b6a2
7
- data.tar.gz: 6761ef0e1ffc271b70a78b59d81ff3a107b9387a4d8f3d31e5e5b08e77de7fcf71dfc99c649114f45fbf81693a48ba725d052aa412679cabcc8e6cf0adb29358
6
+ metadata.gz: d9e1c9d2e0a7a86fe0bf2ea04823b3a282ee1e27269a1d52069f43b82c003d7ea3f4176ac0fcd2dcef68222276832129d07bc9b07e5f2367321fe842f5317b55
7
+ data.tar.gz: f726dc728b12b14a1fa51c8a1bfe19370f6caf72fb5865d2f65b6c21627f0ba7c417eb89d93b5abcc9877fc5c15cc2c62f32721ebcf7653eac6a971b56977211
@@ -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:
@@ -45,6 +47,6 @@ require_relative 'aws-sdk-cloud9/customizations'
45
47
  # @service
46
48
  module Aws::Cloud9
47
49
 
48
- GEM_VERSION = '1.24.1'
50
+ GEM_VERSION = '1.25.0'
49
51
 
50
52
  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:
@@ -1103,7 +1105,7 @@ module Aws::Cloud9
1103
1105
  params: params,
1104
1106
  config: config)
1105
1107
  context[:gem_name] = 'aws-sdk-cloud9'
1106
- context[:gem_version] = '1.24.1'
1108
+ context[:gem_version] = '1.25.0'
1107
1109
  Seahorse::Client::Request.new(handlers, context)
1108
1110
  end
1109
1111
 
@@ -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:
@@ -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:
@@ -98,6 +100,7 @@ module Aws::Cloud9
98
100
  :automatic_stop_time_minutes,
99
101
  :owner_arn,
100
102
  :tags)
103
+ SENSITIVE = [:description]
101
104
  include Aws::Structure
102
105
  end
103
106
 
@@ -109,6 +112,7 @@ module Aws::Cloud9
109
112
  #
110
113
  class CreateEnvironmentEC2Result < Struct.new(
111
114
  :environment_id)
115
+ SENSITIVE = []
112
116
  include Aws::Structure
113
117
  end
114
118
 
@@ -146,6 +150,7 @@ module Aws::Cloud9
146
150
  :environment_id,
147
151
  :user_arn,
148
152
  :permissions)
153
+ SENSITIVE = []
149
154
  include Aws::Structure
150
155
  end
151
156
 
@@ -157,6 +162,7 @@ module Aws::Cloud9
157
162
  #
158
163
  class CreateEnvironmentMembershipResult < Struct.new(
159
164
  :membership)
165
+ SENSITIVE = []
160
166
  include Aws::Structure
161
167
  end
162
168
 
@@ -182,6 +188,7 @@ module Aws::Cloud9
182
188
  class DeleteEnvironmentMembershipRequest < Struct.new(
183
189
  :environment_id,
184
190
  :user_arn)
191
+ SENSITIVE = []
185
192
  include Aws::Structure
186
193
  end
187
194
 
@@ -204,6 +211,7 @@ module Aws::Cloud9
204
211
  #
205
212
  class DeleteEnvironmentRequest < Struct.new(
206
213
  :environment_id)
214
+ SENSITIVE = []
207
215
  include Aws::Structure
208
216
  end
209
217
 
@@ -269,6 +277,7 @@ module Aws::Cloud9
269
277
  :permissions,
270
278
  :next_token,
271
279
  :max_results)
280
+ SENSITIVE = []
272
281
  include Aws::Structure
273
282
  end
274
283
 
@@ -288,6 +297,7 @@ module Aws::Cloud9
288
297
  class DescribeEnvironmentMembershipsResult < Struct.new(
289
298
  :memberships,
290
299
  :next_token)
300
+ SENSITIVE = []
291
301
  include Aws::Structure
292
302
  end
293
303
 
@@ -306,6 +316,7 @@ module Aws::Cloud9
306
316
  #
307
317
  class DescribeEnvironmentStatusRequest < Struct.new(
308
318
  :environment_id)
319
+ SENSITIVE = []
309
320
  include Aws::Structure
310
321
  end
311
322
 
@@ -336,6 +347,7 @@ module Aws::Cloud9
336
347
  class DescribeEnvironmentStatusResult < Struct.new(
337
348
  :status,
338
349
  :message)
350
+ SENSITIVE = []
339
351
  include Aws::Structure
340
352
  end
341
353
 
@@ -354,6 +366,7 @@ module Aws::Cloud9
354
366
  #
355
367
  class DescribeEnvironmentsRequest < Struct.new(
356
368
  :environment_ids)
369
+ SENSITIVE = []
357
370
  include Aws::Structure
358
371
  end
359
372
 
@@ -365,6 +378,7 @@ module Aws::Cloud9
365
378
  #
366
379
  class DescribeEnvironmentsResult < Struct.new(
367
380
  :environments)
381
+ SENSITIVE = []
368
382
  include Aws::Structure
369
383
  end
370
384
 
@@ -413,6 +427,7 @@ module Aws::Cloud9
413
427
  :arn,
414
428
  :owner_arn,
415
429
  :lifecycle)
430
+ SENSITIVE = [:description]
416
431
  include Aws::Structure
417
432
  end
418
433
 
@@ -449,6 +464,7 @@ module Aws::Cloud9
449
464
  :status,
450
465
  :reason,
451
466
  :failure_resource)
467
+ SENSITIVE = []
452
468
  include Aws::Structure
453
469
  end
454
470
 
@@ -492,6 +508,7 @@ module Aws::Cloud9
492
508
  :user_arn,
493
509
  :environment_id,
494
510
  :last_access)
511
+ SENSITIVE = []
495
512
  include Aws::Structure
496
513
  end
497
514
 
@@ -540,6 +557,7 @@ module Aws::Cloud9
540
557
  class ListEnvironmentsRequest < Struct.new(
541
558
  :next_token,
542
559
  :max_results)
560
+ SENSITIVE = []
543
561
  include Aws::Structure
544
562
  end
545
563
 
@@ -559,6 +577,7 @@ module Aws::Cloud9
559
577
  class ListEnvironmentsResult < Struct.new(
560
578
  :next_token,
561
579
  :environment_ids)
580
+ SENSITIVE = []
562
581
  include Aws::Structure
563
582
  end
564
583
 
@@ -578,6 +597,7 @@ module Aws::Cloud9
578
597
  #
579
598
  class ListTagsForResourceRequest < Struct.new(
580
599
  :resource_arn)
600
+ SENSITIVE = []
581
601
  include Aws::Structure
582
602
  end
583
603
 
@@ -590,6 +610,7 @@ module Aws::Cloud9
590
610
  #
591
611
  class ListTagsForResourceResponse < Struct.new(
592
612
  :tags)
613
+ SENSITIVE = []
593
614
  include Aws::Structure
594
615
  end
595
616
 
@@ -627,6 +648,7 @@ module Aws::Cloud9
627
648
  class Tag < Struct.new(
628
649
  :key,
629
650
  :value)
651
+ SENSITIVE = []
630
652
  include Aws::Structure
631
653
  end
632
654
 
@@ -658,6 +680,7 @@ module Aws::Cloud9
658
680
  class TagResourceRequest < Struct.new(
659
681
  :resource_arn,
660
682
  :tags)
683
+ SENSITIVE = []
661
684
  include Aws::Structure
662
685
  end
663
686
 
@@ -694,6 +717,7 @@ module Aws::Cloud9
694
717
  class UntagResourceRequest < Struct.new(
695
718
  :resource_arn,
696
719
  :tag_keys)
720
+ SENSITIVE = []
697
721
  include Aws::Structure
698
722
  end
699
723
 
@@ -735,6 +759,7 @@ module Aws::Cloud9
735
759
  :environment_id,
736
760
  :user_arn,
737
761
  :permissions)
762
+ SENSITIVE = []
738
763
  include Aws::Structure
739
764
  end
740
765
 
@@ -747,6 +772,7 @@ module Aws::Cloud9
747
772
  #
748
773
  class UpdateEnvironmentMembershipResult < Struct.new(
749
774
  :membership)
775
+ SENSITIVE = []
750
776
  include Aws::Structure
751
777
  end
752
778
 
@@ -777,6 +803,7 @@ module Aws::Cloud9
777
803
  :environment_id,
778
804
  :name,
779
805
  :description)
806
+ SENSITIVE = [:description]
780
807
  include Aws::Structure
781
808
  end
782
809
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cloud9
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.24.1
4
+ version: 1.25.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-06-11 00:00:00.000000000 Z
11
+ date: 2020-06-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core