aws-sdk-lightsail 1.76.0 → 1.77.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: c0684f007ddfdbf3c2971eae9c2d7fba8c1546957d20543f7ac0286135ab3ff6
4
- data.tar.gz: 56dda30bdcb89b2a4afbaa90171d495d8bce390394c5425c82527576da0c9ad5
3
+ metadata.gz: fe157b52d019e6499c62127a07550ac4def69107d20c49db22bab68078a88ff1
4
+ data.tar.gz: d10147d58226f26ac24149d27cb40f2aa7bd02eec215847c88cd68040979bbe6
5
5
  SHA512:
6
- metadata.gz: b04943d9f81c6f49cfdbf3af625e4ae30037c3fbc4ecc887f8b4072887950c8edaabde9231302902097aafab44d20537eb411400c2fa03b8139c5346da670a8c
7
- data.tar.gz: 0100e6b896cede3bbcfdd11e96cd2fd7b5699b37d4eb7e549768e7b1de251448ecdd37bb4629d5732dde35d7848a8eec219b24918ae398582223977678da06ab
6
+ metadata.gz: 1807cee77e7d353c515cb8ae7b68306cafc6516f9f84d898b282303b06ec8f7174d733b81cf1f7c21c859f0270ab059686b1fd1e5b2b099990cc1152bf84252e
7
+ data.tar.gz: fdfa5aa32aba4e2ff3100f53fe5cedb9c9f1947b7554cc3de29726342cb5c42023f0c95618c6dbf6a45fe66f9280e4b0e7d3d32b53e3d06556be88022b237e6f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.77.0 (2023-06-13)
5
+ ------------------
6
+
7
+ * Feature - This release adds pagination for the Get Certificates API operation.
8
+
4
9
  1.76.0 (2023-05-31)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.76.0
1
+ 1.77.0
@@ -5921,7 +5921,7 @@ module Aws::Lightsail
5921
5921
  # Returns information about one or more Amazon Lightsail SSL/TLS
5922
5922
  # certificates.
5923
5923
  #
5924
- # <note markdown="1"> To get a summary of a certificate, ommit `includeCertificateDetails`
5924
+ # <note markdown="1"> To get a summary of a certificate, omit `includeCertificateDetails`
5925
5925
  # from your request. The response will include only the certificate
5926
5926
  # Amazon Resource Name (ARN), certificate name, domain name, and tags.
5927
5927
  #
@@ -5950,9 +5950,17 @@ module Aws::Lightsail
5950
5950
  # When omitted, the response includes all of your certificates in the
5951
5951
  # Amazon Web Services Region where the request is made.
5952
5952
  #
5953
+ # @option params [String] :page_token
5954
+ # The token to advance to the next page of results from your request.
5955
+ #
5956
+ # To get a page token, perform an initial `GetCertificates` request. If
5957
+ # your results are paginated, the response will return a next page token
5958
+ # that you can specify as the page token in a subsequent request.
5959
+ #
5953
5960
  # @return [Types::GetCertificatesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5954
5961
  #
5955
5962
  # * {Types::GetCertificatesResult#certificates #certificates} => Array&lt;Types::CertificateSummary&gt;
5963
+ # * {Types::GetCertificatesResult#next_page_token #next_page_token} => String
5956
5964
  #
5957
5965
  # @example Request syntax with placeholder values
5958
5966
  #
@@ -5960,6 +5968,7 @@ module Aws::Lightsail
5960
5968
  # certificate_statuses: ["PENDING_VALIDATION"], # accepts PENDING_VALIDATION, ISSUED, INACTIVE, EXPIRED, VALIDATION_TIMED_OUT, REVOKED, FAILED
5961
5969
  # include_certificate_details: false,
5962
5970
  # certificate_name: "CertificateName",
5971
+ # page_token: "string",
5963
5972
  # })
5964
5973
  #
5965
5974
  # @example Response structure
@@ -6012,6 +6021,7 @@ module Aws::Lightsail
6012
6021
  # resp.certificates[0].tags #=> Array
6013
6022
  # resp.certificates[0].tags[0].key #=> String
6014
6023
  # resp.certificates[0].tags[0].value #=> String
6024
+ # resp.next_page_token #=> String
6015
6025
  #
6016
6026
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetCertificates AWS API Documentation
6017
6027
  #
@@ -6629,7 +6639,7 @@ module Aws::Lightsail
6629
6639
  #
6630
6640
  # * Specified in the Unix time format.
6631
6641
  #
6632
- # For example, if you wish to use a start time of October 1, 2018, at
6642
+ # For example, if you want to use a start time of October 1, 2018, at
6633
6643
  # 8 PM UTC, specify `1538424000` as the start time.
6634
6644
  #
6635
6645
  # You can convert a human-friendly time to Unix time format using a
@@ -6648,7 +6658,7 @@ module Aws::Lightsail
6648
6658
  #
6649
6659
  # * Specified in the Unix time format.
6650
6660
  #
6651
- # For example, if you wish to use an end time of October 1, 2018, at 9
6661
+ # For example, if you want to use an end time of October 1, 2018, at 9
6652
6662
  # PM UTC, specify `1538427600` as the end time.
6653
6663
  #
6654
6664
  # You can convert a human-friendly time to Unix time format using a
@@ -12164,7 +12174,7 @@ module Aws::Lightsail
12164
12174
  params: params,
12165
12175
  config: config)
12166
12176
  context[:gem_name] = 'aws-sdk-lightsail'
12167
- context[:gem_version] = '1.76.0'
12177
+ context[:gem_version] = '1.77.0'
12168
12178
  Seahorse::Client::Request.new(handlers, context)
12169
12179
  end
12170
12180
 
@@ -1781,9 +1781,11 @@ module Aws::Lightsail
1781
1781
  GetCertificatesRequest.add_member(:certificate_statuses, Shapes::ShapeRef.new(shape: CertificateStatusList, location_name: "certificateStatuses"))
1782
1782
  GetCertificatesRequest.add_member(:include_certificate_details, Shapes::ShapeRef.new(shape: IncludeCertificateDetails, location_name: "includeCertificateDetails"))
1783
1783
  GetCertificatesRequest.add_member(:certificate_name, Shapes::ShapeRef.new(shape: CertificateName, location_name: "certificateName"))
1784
+ GetCertificatesRequest.add_member(:page_token, Shapes::ShapeRef.new(shape: string, location_name: "pageToken"))
1784
1785
  GetCertificatesRequest.struct_class = Types::GetCertificatesRequest
1785
1786
 
1786
1787
  GetCertificatesResult.add_member(:certificates, Shapes::ShapeRef.new(shape: CertificateSummaryList, location_name: "certificates"))
1788
+ GetCertificatesResult.add_member(:next_page_token, Shapes::ShapeRef.new(shape: string, location_name: "nextPageToken"))
1787
1789
  GetCertificatesResult.struct_class = Types::GetCertificatesResult
1788
1790
 
1789
1791
  GetCloudFormationStackRecordsRequest.add_member(:page_token, Shapes::ShapeRef.new(shape: string, location_name: "pageToken"))
@@ -1599,7 +1599,7 @@ module Aws::Lightsail
1599
1599
  # Describes the full details of an Amazon Lightsail SSL/TLS certificate.
1600
1600
  #
1601
1601
  # <note markdown="1"> To get a summary of a certificate, use the `GetCertificates` action
1602
- # and ommit `includeCertificateDetails` from your request. The response
1602
+ # and omit `includeCertificateDetails` from your request. The response
1603
1603
  # will include only the certificate Amazon Resource Name (ARN),
1604
1604
  # certificate name, domain name, and tags.
1605
1605
  #
@@ -6862,12 +6862,22 @@ module Aws::Lightsail
6862
6862
  # Amazon Web Services Region where the request is made.
6863
6863
  # @return [String]
6864
6864
  #
6865
+ # @!attribute [rw] page_token
6866
+ # The token to advance to the next page of results from your request.
6867
+ #
6868
+ # To get a page token, perform an initial `GetCertificates` request.
6869
+ # If your results are paginated, the response will return a next page
6870
+ # token that you can specify as the page token in a subsequent
6871
+ # request.
6872
+ # @return [String]
6873
+ #
6865
6874
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetCertificatesRequest AWS API Documentation
6866
6875
  #
6867
6876
  class GetCertificatesRequest < Struct.new(
6868
6877
  :certificate_statuses,
6869
6878
  :include_certificate_details,
6870
- :certificate_name)
6879
+ :certificate_name,
6880
+ :page_token)
6871
6881
  SENSITIVE = []
6872
6882
  include Aws::Structure
6873
6883
  end
@@ -6876,10 +6886,18 @@ module Aws::Lightsail
6876
6886
  # An object that describes certificates.
6877
6887
  # @return [Array<Types::CertificateSummary>]
6878
6888
  #
6889
+ # @!attribute [rw] next_page_token
6890
+ # If `NextPageToken` is returned there are more results available. The
6891
+ # value of `NextPageToken` is a unique pagination token for each page.
6892
+ # Make the call again using the returned token to retrieve the next
6893
+ # page. Keep all other arguments unchanged.
6894
+ # @return [String]
6895
+ #
6879
6896
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetCertificatesResult AWS API Documentation
6880
6897
  #
6881
6898
  class GetCertificatesResult < Struct.new(
6882
- :certificates)
6899
+ :certificates,
6900
+ :next_page_token)
6883
6901
  SENSITIVE = []
6884
6902
  include Aws::Structure
6885
6903
  end
@@ -7292,7 +7310,7 @@ module Aws::Lightsail
7292
7310
  #
7293
7311
  # * Specified in the Unix time format.
7294
7312
  #
7295
- # For example, if you wish to use a start time of October 1, 2018,
7313
+ # For example, if you want to use a start time of October 1, 2018,
7296
7314
  # at 8 PM UTC, specify `1538424000` as the start time.
7297
7315
  #
7298
7316
  # You can convert a human-friendly time to Unix time format using a
@@ -7312,7 +7330,7 @@ module Aws::Lightsail
7312
7330
  #
7313
7331
  # * Specified in the Unix time format.
7314
7332
  #
7315
- # For example, if you wish to use an end time of October 1, 2018, at
7333
+ # For example, if you want to use an end time of October 1, 2018, at
7316
7334
  # 9 PM UTC, specify `1538427600` as the end time.
7317
7335
  #
7318
7336
  # You can convert a human-friendly time to Unix time format using a
@@ -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.76.0'
55
+ GEM_VERSION = '1.77.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.76.0
4
+ version: 1.77.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: 2023-05-31 00:00:00.000000000 Z
11
+ date: 2023-06-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core