aws-sdk-codebuild 1.1.0 → 1.2.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
  SHA1:
3
- metadata.gz: f13b0ef309b03fa58d89ad64c42860596d9929a3
4
- data.tar.gz: 9866e303fd6323e8c94970b52fbc2ada8ea6c122
3
+ metadata.gz: 8ae9368c77a6b7f51f718d9d1f1df6f21e562e25
4
+ data.tar.gz: 1758cff9560a675be2a7bcc8c33ac17646adb0f7
5
5
  SHA512:
6
- metadata.gz: 93cc4ac694862a5496fdec32b35dadd077b30342752a47996dfc258be85867f92fd6c0f443cef6c0c6a2532cbd60d45d3fc4976df03dcf8149261a4f60e5c707
7
- data.tar.gz: 334a55317bc488029fd5189248374ed3203f1051dd8dbef3cdc90952e058ab4143820205de4d3ea4d64ab8904ebd2548d1be3162415fcd5901bfa33d3ee43968
6
+ metadata.gz: d22427daf417509f7beb9ae9f7d8e7c48e95ba5ca3f948716da8d8bf059a949db96d423384c13c999cc38b7d32b463e142ed88743ec9a0e9ea4b628530f269da
7
+ data.tar.gz: d8d4c19e1786fcb8ea2745f3fa4e7965ff6a2c971db0361e9bb09c5cf9ac50923e7a01aa563bfd1f929fddae84c8bc3ff94d44fb905b59b3e5ededf56f702409
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-codebuild/customizations'
42
42
  # @service
43
43
  module Aws::CodeBuild
44
44
 
45
- GEM_VERSION = '1.1.0'
45
+ GEM_VERSION = '1.2.0'
46
46
 
47
47
  end
@@ -491,6 +491,7 @@ module Aws::CodeBuild
491
491
  # resp.builds[0].environment.environment_variables #=> Array
492
492
  # resp.builds[0].environment.environment_variables[0].name #=> String
493
493
  # resp.builds[0].environment.environment_variables[0].value #=> String
494
+ # resp.builds[0].environment.environment_variables[0].type #=> String, one of "PLAINTEXT", "PARAMETER_STORE"
494
495
  # resp.builds[0].environment.privileged_mode #=> Boolean
495
496
  # resp.builds[0].logs.group_name #=> String
496
497
  # resp.builds[0].logs.stream_name #=> String
@@ -549,6 +550,7 @@ module Aws::CodeBuild
549
550
  # resp.projects[0].environment.environment_variables #=> Array
550
551
  # resp.projects[0].environment.environment_variables[0].name #=> String
551
552
  # resp.projects[0].environment.environment_variables[0].value #=> String
553
+ # resp.projects[0].environment.environment_variables[0].type #=> String, one of "PLAINTEXT", "PARAMETER_STORE"
552
554
  # resp.projects[0].environment.privileged_mode #=> Boolean
553
555
  # resp.projects[0].service_role #=> String
554
556
  # resp.projects[0].timeout_in_minutes #=> Integer
@@ -644,6 +646,7 @@ module Aws::CodeBuild
644
646
  # {
645
647
  # name: "NonEmptyString", # required
646
648
  # value: "String", # required
649
+ # type: "PLAINTEXT", # accepts PLAINTEXT, PARAMETER_STORE
647
650
  # },
648
651
  # ],
649
652
  # privileged_mode: false,
@@ -681,6 +684,7 @@ module Aws::CodeBuild
681
684
  # resp.project.environment.environment_variables #=> Array
682
685
  # resp.project.environment.environment_variables[0].name #=> String
683
686
  # resp.project.environment.environment_variables[0].value #=> String
687
+ # resp.project.environment.environment_variables[0].type #=> String, one of "PLAINTEXT", "PARAMETER_STORE"
684
688
  # resp.project.environment.privileged_mode #=> Boolean
685
689
  # resp.project.service_role #=> String
686
690
  # resp.project.timeout_in_minutes #=> Integer
@@ -976,6 +980,7 @@ module Aws::CodeBuild
976
980
  # {
977
981
  # name: "NonEmptyString", # required
978
982
  # value: "String", # required
983
+ # type: "PLAINTEXT", # accepts PLAINTEXT, PARAMETER_STORE
979
984
  # },
980
985
  # ],
981
986
  # buildspec_override: "String",
@@ -1015,6 +1020,7 @@ module Aws::CodeBuild
1015
1020
  # resp.build.environment.environment_variables #=> Array
1016
1021
  # resp.build.environment.environment_variables[0].name #=> String
1017
1022
  # resp.build.environment.environment_variables[0].value #=> String
1023
+ # resp.build.environment.environment_variables[0].type #=> String, one of "PLAINTEXT", "PARAMETER_STORE"
1018
1024
  # resp.build.environment.privileged_mode #=> Boolean
1019
1025
  # resp.build.logs.group_name #=> String
1020
1026
  # resp.build.logs.stream_name #=> String
@@ -1080,6 +1086,7 @@ module Aws::CodeBuild
1080
1086
  # resp.build.environment.environment_variables #=> Array
1081
1087
  # resp.build.environment.environment_variables[0].name #=> String
1082
1088
  # resp.build.environment.environment_variables[0].value #=> String
1089
+ # resp.build.environment.environment_variables[0].type #=> String, one of "PLAINTEXT", "PARAMETER_STORE"
1083
1090
  # resp.build.environment.privileged_mode #=> Boolean
1084
1091
  # resp.build.logs.group_name #=> String
1085
1092
  # resp.build.logs.stream_name #=> String
@@ -1178,6 +1185,7 @@ module Aws::CodeBuild
1178
1185
  # {
1179
1186
  # name: "NonEmptyString", # required
1180
1187
  # value: "String", # required
1188
+ # type: "PLAINTEXT", # accepts PLAINTEXT, PARAMETER_STORE
1181
1189
  # },
1182
1190
  # ],
1183
1191
  # privileged_mode: false,
@@ -1215,6 +1223,7 @@ module Aws::CodeBuild
1215
1223
  # resp.project.environment.environment_variables #=> Array
1216
1224
  # resp.project.environment.environment_variables[0].name #=> String
1217
1225
  # resp.project.environment.environment_variables[0].value #=> String
1226
+ # resp.project.environment.environment_variables[0].type #=> String, one of "PLAINTEXT", "PARAMETER_STORE"
1218
1227
  # resp.project.environment.privileged_mode #=> Boolean
1219
1228
  # resp.project.service_role #=> String
1220
1229
  # resp.project.timeout_in_minutes #=> Integer
@@ -1247,7 +1256,7 @@ module Aws::CodeBuild
1247
1256
  params: params,
1248
1257
  config: config)
1249
1258
  context[:gem_name] = 'aws-sdk-codebuild'
1250
- context[:gem_version] = '1.1.0'
1259
+ context[:gem_version] = '1.2.0'
1251
1260
  Seahorse::Client::Request.new(handlers, context)
1252
1261
  end
1253
1262
 
@@ -44,6 +44,7 @@ module Aws::CodeBuild
44
44
  EnvironmentPlatforms = Shapes::ListShape.new(name: 'EnvironmentPlatforms')
45
45
  EnvironmentType = Shapes::StringShape.new(name: 'EnvironmentType')
46
46
  EnvironmentVariable = Shapes::StructureShape.new(name: 'EnvironmentVariable')
47
+ EnvironmentVariableType = Shapes::StringShape.new(name: 'EnvironmentVariableType')
47
48
  EnvironmentVariables = Shapes::ListShape.new(name: 'EnvironmentVariables')
48
49
  InvalidInputException = Shapes::StructureShape.new(name: 'InvalidInputException')
49
50
  KeyInput = Shapes::StringShape.new(name: 'KeyInput')
@@ -196,6 +197,7 @@ module Aws::CodeBuild
196
197
 
197
198
  EnvironmentVariable.add_member(:name, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location_name: "name"))
198
199
  EnvironmentVariable.add_member(:value, Shapes::ShapeRef.new(shape: String, required: true, location_name: "value"))
200
+ EnvironmentVariable.add_member(:type, Shapes::ShapeRef.new(shape: EnvironmentVariableType, location_name: "type"))
199
201
  EnvironmentVariable.struct_class = Types::EnvironmentVariable
200
202
 
201
203
  EnvironmentVariables.member = Shapes::ShapeRef.new(shape: EnvironmentVariable)
@@ -391,6 +391,7 @@ module Aws::CodeBuild
391
391
  # {
392
392
  # name: "NonEmptyString", # required
393
393
  # value: "String", # required
394
+ # type: "PLAINTEXT", # accepts PLAINTEXT, PARAMETER_STORE
394
395
  # },
395
396
  # ],
396
397
  # privileged_mode: false,
@@ -568,6 +569,7 @@ module Aws::CodeBuild
568
569
  # {
569
570
  # name: "NonEmptyString", # required
570
571
  # value: "String", # required
572
+ # type: "PLAINTEXT", # accepts PLAINTEXT, PARAMETER_STORE
571
573
  # }
572
574
  #
573
575
  # @!attribute [rw] name
@@ -584,11 +586,21 @@ module Aws::CodeBuild
584
586
  # Interface (AWS CLI).
585
587
  # @return [String]
586
588
  #
589
+ # @!attribute [rw] type
590
+ # The type of environment variable. Valid values include:
591
+ #
592
+ # * `PARAMETER_STORE`\: An environment variable stored in Amazon EC2
593
+ # Systems Manager Parameter Store.
594
+ #
595
+ # * `PLAINTEXT`\: An environment variable in plaintext format.
596
+ # @return [String]
597
+ #
587
598
  # @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/EnvironmentVariable AWS API Documentation
588
599
  #
589
600
  class EnvironmentVariable < Struct.new(
590
601
  :name,
591
- :value)
602
+ :value,
603
+ :type)
592
604
  include Aws::Structure
593
605
  end
594
606
 
@@ -1077,6 +1089,7 @@ module Aws::CodeBuild
1077
1089
  # {
1078
1090
  # name: "NonEmptyString", # required
1079
1091
  # value: "String", # required
1092
+ # type: "PLAINTEXT", # accepts PLAINTEXT, PARAMETER_STORE
1080
1093
  # },
1081
1094
  # ],
1082
1095
  # privileged_mode: false,
@@ -1296,6 +1309,7 @@ module Aws::CodeBuild
1296
1309
  # {
1297
1310
  # name: "NonEmptyString", # required
1298
1311
  # value: "String", # required
1312
+ # type: "PLAINTEXT", # accepts PLAINTEXT, PARAMETER_STORE
1299
1313
  # },
1300
1314
  # ],
1301
1315
  # buildspec_override: "String",
@@ -1463,6 +1477,7 @@ module Aws::CodeBuild
1463
1477
  # {
1464
1478
  # name: "NonEmptyString", # required
1465
1479
  # value: "String", # required
1480
+ # type: "PLAINTEXT", # accepts PLAINTEXT, PARAMETER_STORE
1466
1481
  # },
1467
1482
  # ],
1468
1483
  # privileged_mode: false,
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-codebuild
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.2.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: 2017-08-31 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: aws-sdk-core