aws-sdk-securityagent 1.0.0 → 1.1.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.
@@ -55,7 +55,7 @@ module Aws::SecurityAgent
55
55
  autoload :EndpointProvider, 'aws-sdk-securityagent/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-securityagent/endpoints'
57
57
 
58
- GEM_VERSION = '1.0.0'
58
+ GEM_VERSION = '1.1.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -360,6 +360,7 @@ module Aws
360
360
  def target_domain_id: () -> ::String
361
361
  def domain_name: () -> ::String
362
362
  def verification_status: () -> ("PENDING" | "VERIFIED" | "FAILED" | "UNREACHABLE")
363
+ def verification_status_reason: () -> ::String
363
364
  def verification_details: () -> Types::VerificationDetails
364
365
  def created_at: () -> ::Time
365
366
  def verified_at: () -> ::Time
@@ -367,7 +368,7 @@ module Aws
367
368
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SecurityAgent/Client.html#create_target_domain-instance_method
368
369
  def create_target_domain: (
369
370
  target_domain_name: ::String,
370
- verification_method: ("DNS_TXT" | "HTTP_ROUTE"),
371
+ verification_method: ("DNS_TXT" | "HTTP_ROUTE" | "PRIVATE_VPC"),
371
372
  ?tags: Hash[::String, ::String]
372
373
  ) -> _CreateTargetDomainResponseSuccess
373
374
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTargetDomainResponseSuccess
@@ -900,6 +901,7 @@ module Aws
900
901
  def target_domain_id: () -> ::String
901
902
  def domain_name: () -> ::String
902
903
  def verification_status: () -> ("PENDING" | "VERIFIED" | "FAILED" | "UNREACHABLE")
904
+ def verification_status_reason: () -> ::String
903
905
  def verification_details: () -> Types::VerificationDetails
904
906
  def created_at: () -> ::Time
905
907
  def verified_at: () -> ::Time
@@ -907,7 +909,7 @@ module Aws
907
909
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SecurityAgent/Client.html#update_target_domain-instance_method
908
910
  def update_target_domain: (
909
911
  target_domain_id: ::String,
910
- verification_method: ("DNS_TXT" | "HTTP_ROUTE")
912
+ verification_method: ("DNS_TXT" | "HTTP_ROUTE" | "PRIVATE_VPC")
911
913
  ) -> _UpdateTargetDomainResponseSuccess
912
914
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateTargetDomainResponseSuccess
913
915
 
@@ -919,6 +921,7 @@ module Aws
919
921
  def updated_at: () -> ::Time
920
922
  def verified_at: () -> ::Time
921
923
  def status: () -> ("PENDING" | "VERIFIED" | "FAILED" | "UNREACHABLE")
924
+ def verification_status_reason: () -> ::String
922
925
  end
923
926
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SecurityAgent/Client.html#verify_target_domain-instance_method
924
927
  def verify_target_domain: (
data/sig/types.rbs CHANGED
@@ -330,7 +330,7 @@ module Aws::SecurityAgent
330
330
 
331
331
  class CreateTargetDomainInput
332
332
  attr_accessor target_domain_name: ::String
333
- attr_accessor verification_method: ("DNS_TXT" | "HTTP_ROUTE")
333
+ attr_accessor verification_method: ("DNS_TXT" | "HTTP_ROUTE" | "PRIVATE_VPC")
334
334
  attr_accessor tags: ::Hash[::String, ::String]
335
335
  SENSITIVE: []
336
336
  end
@@ -339,6 +339,7 @@ module Aws::SecurityAgent
339
339
  attr_accessor target_domain_id: ::String
340
340
  attr_accessor domain_name: ::String
341
341
  attr_accessor verification_status: ("PENDING" | "VERIFIED" | "FAILED" | "UNREACHABLE")
342
+ attr_accessor verification_status_reason: ::String
342
343
  attr_accessor verification_details: Types::VerificationDetails
343
344
  attr_accessor created_at: ::Time
344
345
  attr_accessor verified_at: ::Time
@@ -1038,6 +1039,7 @@ module Aws::SecurityAgent
1038
1039
  attr_accessor target_domain_id: ::String
1039
1040
  attr_accessor domain_name: ::String
1040
1041
  attr_accessor verification_status: ("PENDING" | "VERIFIED" | "FAILED" | "UNREACHABLE")
1042
+ attr_accessor verification_status_reason: ::String
1041
1043
  attr_accessor verification_details: Types::VerificationDetails
1042
1044
  attr_accessor created_at: ::Time
1043
1045
  attr_accessor verified_at: ::Time
@@ -1181,7 +1183,7 @@ module Aws::SecurityAgent
1181
1183
 
1182
1184
  class UpdateTargetDomainInput
1183
1185
  attr_accessor target_domain_id: ::String
1184
- attr_accessor verification_method: ("DNS_TXT" | "HTTP_ROUTE")
1186
+ attr_accessor verification_method: ("DNS_TXT" | "HTTP_ROUTE" | "PRIVATE_VPC")
1185
1187
  SENSITIVE: []
1186
1188
  end
1187
1189
 
@@ -1189,6 +1191,7 @@ module Aws::SecurityAgent
1189
1191
  attr_accessor target_domain_id: ::String
1190
1192
  attr_accessor domain_name: ::String
1191
1193
  attr_accessor verification_status: ("PENDING" | "VERIFIED" | "FAILED" | "UNREACHABLE")
1194
+ attr_accessor verification_status_reason: ::String
1192
1195
  attr_accessor verification_details: Types::VerificationDetails
1193
1196
  attr_accessor created_at: ::Time
1194
1197
  attr_accessor verified_at: ::Time
@@ -1219,7 +1222,7 @@ module Aws::SecurityAgent
1219
1222
  end
1220
1223
 
1221
1224
  class VerificationDetails
1222
- attr_accessor method: ("DNS_TXT" | "HTTP_ROUTE")
1225
+ attr_accessor method: ("DNS_TXT" | "HTTP_ROUTE" | "PRIVATE_VPC")
1223
1226
  attr_accessor dns_txt: Types::DnsVerification
1224
1227
  attr_accessor http_route: Types::HttpVerification
1225
1228
  SENSITIVE: []
@@ -1237,6 +1240,7 @@ module Aws::SecurityAgent
1237
1240
  attr_accessor updated_at: ::Time
1238
1241
  attr_accessor verified_at: ::Time
1239
1242
  attr_accessor status: ("PENDING" | "VERIFIED" | "FAILED" | "UNREACHABLE")
1243
+ attr_accessor verification_status_reason: ::String
1240
1244
  SENSITIVE: []
1241
1245
  end
1242
1246
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-securityagent
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services