aws-sdk-lightsail 1.85.0 → 1.86.0

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
  SHA256:
3
- metadata.gz: 7f246e330b2beb78b25acc9e53635f95862ec06623853e68bf834f46e090347a
4
- data.tar.gz: e9ec415911e3f60ecff00e6d8025c6990f4371a2615fbd2fad1606ac0ac8ade0
3
+ metadata.gz: fac682ba8b11639c345c784ca42bd918db3c92406a38cd38e20f086004a70e1d
4
+ data.tar.gz: 92fb9cf025d4b1197c506720fa448a0c6df80d7b98cc4d897a2e35e7e60a44df
5
5
  SHA512:
6
- metadata.gz: 8bf91b06e35b5eb6fd5d8070b98a3c721bf729ab5543b17625908ca4b06b9103a55d7d53cb13999b044006a67870cefa2ddb912ec825be1d5816573151c49114
7
- data.tar.gz: 6c3fad1ba33e1daba91e753415308ca5d53d3f9db80edc83c95ee5f93168148ea9e6572ba02981e9bb8c0169cdc34c4de46342e11e807fa14a0e0b3ec7356189
6
+ metadata.gz: 14532955c84e8dc7340012c05ab9edef8d595a9009b9d549b2dac188f19ba73b38e9e39b7f744a348908f19835bb22be3db2f0516212a007f7d158b9e5f7a0e1
7
+ data.tar.gz: d7e9e1b694e9d1db89e9ab2ebb5f45733de6592c85ce71b993993bb7bced4f3d304f3b35f810ddd9afde6b4317d0e3ff21a5472a1f96cf708e1f0a4659169212
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.86.0 (2024-01-25)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for IPv6-only instance plans.
8
+
4
9
  1.85.0 (2024-01-04)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.85.0
1
+ 1.86.0
@@ -5918,6 +5918,7 @@ module Aws::Lightsail
5918
5918
  # resp.bundles[0].supported_platforms[0] #=> String, one of "LINUX_UNIX", "WINDOWS"
5919
5919
  # resp.bundles[0].supported_app_categories #=> Array
5920
5920
  # resp.bundles[0].supported_app_categories[0] #=> String, one of "LfR"
5921
+ # resp.bundles[0].public_ipv_4_address_count #=> Integer
5921
5922
  # resp.next_page_token #=> String
5922
5923
  #
5923
5924
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetBundles AWS API Documentation
@@ -7579,6 +7580,8 @@ module Aws::Lightsail
7579
7580
  # resp.access_details.cert_key #=> String
7580
7581
  # resp.access_details.expires_at #=> Time
7581
7582
  # resp.access_details.ip_address #=> String
7583
+ # resp.access_details.ipv6_addresses #=> Array
7584
+ # resp.access_details.ipv6_addresses[0] #=> String
7582
7585
  # resp.access_details.password #=> String
7583
7586
  # resp.access_details.password_data.ciphertext #=> String
7584
7587
  # resp.access_details.password_data.key_pair_name #=> String
@@ -12303,7 +12306,7 @@ module Aws::Lightsail
12303
12306
  params: params,
12304
12307
  config: config)
12305
12308
  context[:gem_name] = 'aws-sdk-lightsail'
12306
- context[:gem_version] = '1.85.0'
12309
+ context[:gem_version] = '1.86.0'
12307
12310
  Seahorse::Client::Request.new(handlers, context)
12308
12311
  end
12309
12312
 
@@ -898,6 +898,7 @@ module Aws::Lightsail
898
898
  Bundle.add_member(:transfer_per_month_in_gb, Shapes::ShapeRef.new(shape: integer, location_name: "transferPerMonthInGb"))
899
899
  Bundle.add_member(:supported_platforms, Shapes::ShapeRef.new(shape: InstancePlatformList, location_name: "supportedPlatforms"))
900
900
  Bundle.add_member(:supported_app_categories, Shapes::ShapeRef.new(shape: AppCategoryList, location_name: "supportedAppCategories"))
901
+ Bundle.add_member(:public_ipv_4_address_count, Shapes::ShapeRef.new(shape: integer, location_name: "publicIpv4AddressCount"))
901
902
  Bundle.struct_class = Types::Bundle
902
903
 
903
904
  BundleList.member = Shapes::ShapeRef.new(shape: Bundle)
@@ -2268,6 +2269,7 @@ module Aws::Lightsail
2268
2269
  InstanceAccessDetails.add_member(:cert_key, Shapes::ShapeRef.new(shape: string, location_name: "certKey"))
2269
2270
  InstanceAccessDetails.add_member(:expires_at, Shapes::ShapeRef.new(shape: IsoDate, location_name: "expiresAt"))
2270
2271
  InstanceAccessDetails.add_member(:ip_address, Shapes::ShapeRef.new(shape: IpAddress, location_name: "ipAddress"))
2272
+ InstanceAccessDetails.add_member(:ipv6_addresses, Shapes::ShapeRef.new(shape: Ipv6AddressList, location_name: "ipv6Addresses"))
2271
2273
  InstanceAccessDetails.add_member(:password, Shapes::ShapeRef.new(shape: string, location_name: "password"))
2272
2274
  InstanceAccessDetails.add_member(:password_data, Shapes::ShapeRef.new(shape: PasswordData, location_name: "passwordData"))
2273
2275
  InstanceAccessDetails.add_member(:private_key, Shapes::ShapeRef.new(shape: string, location_name: "privateKey"))
@@ -1368,6 +1368,11 @@ module Aws::Lightsail
1368
1368
  # This parameter only applies to Lightsail for Research resources.
1369
1369
  # @return [Array<String>]
1370
1370
  #
1371
+ # @!attribute [rw] public_ipv_4_address_count
1372
+ # An integer that indicates the public ipv4 address count included in
1373
+ # the bundle, the value is either 0 or 1.
1374
+ # @return [Integer]
1375
+ #
1371
1376
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/Bundle AWS API Documentation
1372
1377
  #
1373
1378
  class Bundle < Struct.new(
@@ -1382,7 +1387,8 @@ module Aws::Lightsail
1382
1387
  :ram_size_in_gb,
1383
1388
  :transfer_per_month_in_gb,
1384
1389
  :supported_platforms,
1385
- :supported_app_categories)
1390
+ :supported_app_categories,
1391
+ :public_ipv_4_address_count)
1386
1392
  SENSITIVE = []
1387
1393
  include Aws::Structure
1388
1394
  end
@@ -9957,6 +9963,10 @@ module Aws::Lightsail
9957
9963
  # The public IP address of the Amazon Lightsail instance.
9958
9964
  # @return [String]
9959
9965
  #
9966
+ # @!attribute [rw] ipv6_addresses
9967
+ # The IPv6 address of the Amazon Lightsail instance.
9968
+ # @return [Array<String>]
9969
+ #
9960
9970
  # @!attribute [rw] password
9961
9971
  # For RDP access, the password for your Amazon Lightsail instance.
9962
9972
  # Password will be an empty string if the password for your new
@@ -10011,6 +10021,7 @@ module Aws::Lightsail
10011
10021
  :cert_key,
10012
10022
  :expires_at,
10013
10023
  :ip_address,
10024
+ :ipv6_addresses,
10014
10025
  :password,
10015
10026
  :password_data,
10016
10027
  :private_key,
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-lightsail/customizations'
52
52
  # @!group service
53
53
  module Aws::Lightsail
54
54
 
55
- GEM_VERSION = '1.85.0'
55
+ GEM_VERSION = '1.86.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-lightsail
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.85.0
4
+ version: 1.86.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-04 00:00:00.000000000 Z
11
+ date: 2024-01-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -72,7 +72,7 @@ licenses:
72
72
  metadata:
73
73
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-lightsail
74
74
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-lightsail/CHANGELOG.md
75
- post_install_message:
75
+ post_install_message:
76
76
  rdoc_options: []
77
77
  require_paths:
78
78
  - lib
@@ -87,8 +87,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
87
  - !ruby/object:Gem::Version
88
88
  version: '0'
89
89
  requirements: []
90
- rubygems_version: 3.1.6
91
- signing_key:
90
+ rubygems_version: 3.4.10
91
+ signing_key:
92
92
  specification_version: 4
93
93
  summary: AWS SDK for Ruby - Amazon Lightsail
94
94
  test_files: []