aws-sdk-codestarconnections 1.14.0 → 1.15.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: e0dc34d8a0d3e3607f7a6fb8fa9851dcede28f4b0185859dd42cbafce82fc5b2
4
- data.tar.gz: 60a008cc072d8e0c70f32e8a1e2598239042e14f7a252b7bd881cfde709c2128
3
+ metadata.gz: a89870b773e0b71ed4065cf2568b4e400935882efd5dfe558ed6b3c10de9e95b
4
+ data.tar.gz: 51886e56de086746e22f25f1cef2308e09fca47258bb73a0e5abecab8d310b8e
5
5
  SHA512:
6
- metadata.gz: 7b985ddaf0132142eb13643ef9fffe01d14e4118c6c589af85543962bc7e532a2e41e3087f24dc9fc8b9c44df2f8d82df86cb371cd0765b6d2494b644975f26c
7
- data.tar.gz: d12d4aac436e5fe80ee13f58e0c65ce25b0de38c324a14e7cc5e2e0fb9ba14ad27afa851efeea7bf361a17f7ed679694e1cc34e0542222b500fc99eaab9e124d
6
+ metadata.gz: 0e740138bab17efd28d7667debf2267968f659b464ab8b582d9b282c0e242f82960f7b38f4bfb48aa85a280dfc066f3462e2d28e4692bb6b437abd12d1810884
7
+ data.tar.gz: c893475022c5d9f5c859935c58c45169ffee4073d96a72d6c67d53741947016cc7f59aa89fa758af5ea9be93b09616ae99e641600176015fa74c2375914ffbf3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.15.0 (2021-04-14)
5
+ ------------------
6
+
7
+ * Feature - This release adds tagging support for CodeStar Connections Host resources
8
+
4
9
  1.14.0 (2021-03-10)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.14.0
1
+ 1.15.0
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-codestarconnections/customizations'
48
48
  # @!group service
49
49
  module Aws::CodeStarconnections
50
50
 
51
- GEM_VERSION = '1.14.0'
51
+ GEM_VERSION = '1.15.0'
52
52
 
53
53
  end
@@ -423,9 +423,12 @@ module Aws::CodeStarconnections
423
423
  # configured and the infrastructure to be represented by the host must
424
424
  # already be connected to the VPC.
425
425
  #
426
+ # @option params [Array<Types::Tag>] :tags
427
+ #
426
428
  # @return [Types::CreateHostOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
427
429
  #
428
430
  # * {Types::CreateHostOutput#host_arn #host_arn} => String
431
+ # * {Types::CreateHostOutput#tags #tags} => Array&lt;Types::Tag&gt;
429
432
  #
430
433
  # @example Request syntax with placeholder values
431
434
  #
@@ -439,11 +442,20 @@ module Aws::CodeStarconnections
439
442
  # security_group_ids: ["SecurityGroupId"], # required
440
443
  # tls_certificate: "TlsCertificate",
441
444
  # },
445
+ # tags: [
446
+ # {
447
+ # key: "TagKey", # required
448
+ # value: "TagValue", # required
449
+ # },
450
+ # ],
442
451
  # })
443
452
  #
444
453
  # @example Response structure
445
454
  #
446
455
  # resp.host_arn #=> String
456
+ # resp.tags #=> Array
457
+ # resp.tags[0].key #=> String
458
+ # resp.tags[0].value #=> String
447
459
  #
448
460
  # @see http://docs.aws.amazon.com/goto/WebAPI/codestar-connections-2019-12-01/CreateHost AWS API Documentation
449
461
  #
@@ -831,7 +843,7 @@ module Aws::CodeStarconnections
831
843
  params: params,
832
844
  config: config)
833
845
  context[:gem_name] = 'aws-sdk-codestarconnections'
834
- context[:gem_version] = '1.14.0'
846
+ context[:gem_version] = '1.15.0'
835
847
  Seahorse::Client::Request.new(handlers, context)
836
848
  end
837
849
 
@@ -100,9 +100,11 @@ module Aws::CodeStarconnections
100
100
  CreateHostInput.add_member(:provider_type, Shapes::ShapeRef.new(shape: ProviderType, required: true, location_name: "ProviderType"))
101
101
  CreateHostInput.add_member(:provider_endpoint, Shapes::ShapeRef.new(shape: Url, required: true, location_name: "ProviderEndpoint"))
102
102
  CreateHostInput.add_member(:vpc_configuration, Shapes::ShapeRef.new(shape: VpcConfiguration, location_name: "VpcConfiguration"))
103
+ CreateHostInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
103
104
  CreateHostInput.struct_class = Types::CreateHostInput
104
105
 
105
106
  CreateHostOutput.add_member(:host_arn, Shapes::ShapeRef.new(shape: HostArn, location_name: "HostArn"))
107
+ CreateHostOutput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
106
108
  CreateHostOutput.struct_class = Types::CreateHostOutput
107
109
 
108
110
  DeleteConnectionInput.add_member(:connection_arn, Shapes::ShapeRef.new(shape: ConnectionArn, required: true, location_name: "ConnectionArn"))
@@ -159,6 +159,12 @@ module Aws::CodeStarconnections
159
159
  # security_group_ids: ["SecurityGroupId"], # required
160
160
  # tls_certificate: "TlsCertificate",
161
161
  # },
162
+ # tags: [
163
+ # {
164
+ # key: "TagKey", # required
165
+ # value: "TagValue", # required
166
+ # },
167
+ # ],
162
168
  # }
163
169
  #
164
170
  # @!attribute [rw] name
@@ -184,13 +190,17 @@ module Aws::CodeStarconnections
184
190
  # already be connected to the VPC.
185
191
  # @return [Types::VpcConfiguration]
186
192
  #
193
+ # @!attribute [rw] tags
194
+ # @return [Array<Types::Tag>]
195
+ #
187
196
  # @see http://docs.aws.amazon.com/goto/WebAPI/codestar-connections-2019-12-01/CreateHostInput AWS API Documentation
188
197
  #
189
198
  class CreateHostInput < Struct.new(
190
199
  :name,
191
200
  :provider_type,
192
201
  :provider_endpoint,
193
- :vpc_configuration)
202
+ :vpc_configuration,
203
+ :tags)
194
204
  SENSITIVE = []
195
205
  include Aws::Structure
196
206
  end
@@ -199,10 +209,14 @@ module Aws::CodeStarconnections
199
209
  # The Amazon Resource Name (ARN) of the host to be created.
200
210
  # @return [String]
201
211
  #
212
+ # @!attribute [rw] tags
213
+ # @return [Array<Types::Tag>]
214
+ #
202
215
  # @see http://docs.aws.amazon.com/goto/WebAPI/codestar-connections-2019-12-01/CreateHostOutput AWS API Documentation
203
216
  #
204
217
  class CreateHostOutput < Struct.new(
205
- :host_arn)
218
+ :host_arn,
219
+ :tags)
206
220
  SENSITIVE = []
207
221
  include Aws::Structure
208
222
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-codestarconnections
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.14.0
4
+ version: 1.15.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: 2021-03-10 00:00:00.000000000 Z
11
+ date: 2021-04-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -66,8 +66,8 @@ homepage: https://github.com/aws/aws-sdk-ruby
66
66
  licenses:
67
67
  - Apache-2.0
68
68
  metadata:
69
- source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-codestarconnections
70
- changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-codestarconnections/CHANGELOG.md
69
+ source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-codestarconnections
70
+ changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-codestarconnections/CHANGELOG.md
71
71
  post_install_message:
72
72
  rdoc_options: []
73
73
  require_paths:
@@ -84,7 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
84
84
  version: '0'
85
85
  requirements: []
86
86
  rubyforge_project:
87
- rubygems_version: 2.7.6.2
87
+ rubygems_version: 2.7.6.3
88
88
  signing_key:
89
89
  specification_version: 4
90
90
  summary: AWS SDK for Ruby - AWS CodeStar connections