aws-sdk-workspaces 1.31.0 → 1.32.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: 2cc1c03218ee6a991cfa3ed1d9bdecc638876928
4
- data.tar.gz: d9e587a8ee16b9250fa41ba73e5d41cf4b688509
3
+ metadata.gz: c4b11011cf1be8a309f0e91e1b5cb9641645c339
4
+ data.tar.gz: d10e61e8824612a968eca2985b05fb8a4c9fde38
5
5
  SHA512:
6
- metadata.gz: 85d6e228c00c985664055012437509c37262938325098a7f4ed11e4e3a878f3e480108dda8f91b2ea433baf1e527fbf80884a382f9e752d93734c701084c4339
7
- data.tar.gz: 365dbed2ee48a858439a337c592cb5ca1b1673904fa56a28dbfe6af400a24dfcd4e91686cbe128c2577aeab8512019e89d8d8ef845aa7c776099ef4d7b0f9ff8
6
+ metadata.gz: 2dd959699e594c27355a6d9d3b4feb4659354a435aec48bbabf72f38c24232c4061da133c70bc14028c90d16d4181c4feded34408219c5d14db7db0a13bea236
7
+ data.tar.gz: 79398b9e27d1edee375a8a5387b47631fb4bbee099e2b7de4767b7828f3271ef30f9b34ec9659ae044f35c1a61a577c88909a39fb38ae43462ccf864aa1be2ce
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-workspaces/customizations'
42
42
  # @service
43
43
  module Aws::WorkSpaces
44
44
 
45
- GEM_VERSION = '1.31.0'
45
+ GEM_VERSION = '1.32.0'
46
46
 
47
47
  end
@@ -877,9 +877,11 @@ module Aws::WorkSpaces
877
877
  # resp.bundles[0].name #=> String
878
878
  # resp.bundles[0].owner #=> String
879
879
  # resp.bundles[0].description #=> String
880
+ # resp.bundles[0].image_id #=> String
880
881
  # resp.bundles[0].root_storage.capacity #=> String
881
882
  # resp.bundles[0].user_storage.capacity #=> String
882
883
  # resp.bundles[0].compute_type.name #=> String, one of "VALUE", "STANDARD", "PERFORMANCE", "POWER", "GRAPHICS", "POWERPRO", "GRAPHICSPRO"
884
+ # resp.bundles[0].last_updated_time #=> Time
883
885
  # resp.next_token #=> String
884
886
  #
885
887
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DescribeWorkspaceBundles AWS API Documentation
@@ -1930,7 +1932,7 @@ module Aws::WorkSpaces
1930
1932
  params: params,
1931
1933
  config: config)
1932
1934
  context[:gem_name] = 'aws-sdk-workspaces'
1933
- context[:gem_version] = '1.31.0'
1935
+ context[:gem_version] = '1.32.0'
1934
1936
  Seahorse::Client::Request.new(handlers, context)
1935
1937
  end
1936
1938
 
@@ -719,9 +719,11 @@ module Aws::WorkSpaces
719
719
  WorkspaceBundle.add_member(:name, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "Name"))
720
720
  WorkspaceBundle.add_member(:owner, Shapes::ShapeRef.new(shape: BundleOwner, location_name: "Owner"))
721
721
  WorkspaceBundle.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
722
+ WorkspaceBundle.add_member(:image_id, Shapes::ShapeRef.new(shape: WorkspaceImageId, location_name: "ImageId"))
722
723
  WorkspaceBundle.add_member(:root_storage, Shapes::ShapeRef.new(shape: RootStorage, location_name: "RootStorage"))
723
724
  WorkspaceBundle.add_member(:user_storage, Shapes::ShapeRef.new(shape: UserStorage, location_name: "UserStorage"))
724
725
  WorkspaceBundle.add_member(:compute_type, Shapes::ShapeRef.new(shape: ComputeType, location_name: "ComputeType"))
726
+ WorkspaceBundle.add_member(:last_updated_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastUpdatedTime"))
725
727
  WorkspaceBundle.struct_class = Types::WorkspaceBundle
726
728
 
727
729
  WorkspaceConnectionStatus.add_member(:workspace_id, Shapes::ShapeRef.new(shape: WorkspaceId, location_name: "WorkspaceId"))
@@ -401,16 +401,16 @@ module Aws::WorkSpaces
401
401
  # @return [Boolean]
402
402
  #
403
403
  # @!attribute [rw] enable_internet_access
404
- # Specifies whether to automatically assign a public IP address to
405
- # WorkSpaces in this directory by default. If enabled, the public IP
406
- # address allows outbound internet access from your WorkSpaces when
407
- # you’re using an internet gateway in the Amazon VPC in which your
408
- # WorkSpaces are located. If you're using a Network Address
409
- # Translation (NAT) gateway for outbound internet access from your
410
- # VPC, or if your WorkSpaces are in public subnets and you manually
411
- # assign them Elastic IP addresses, you should disable this setting.
412
- # This setting applies to new WorkSpaces that you launch or to
413
- # existing WorkSpaces that you rebuild. For more information, see [
404
+ # Specifies whether to automatically assign an Elastic public IP
405
+ # address to WorkSpaces in this directory by default. If enabled, the
406
+ # Elastic public IP address allows outbound internet access from your
407
+ # WorkSpaces when you’re using an internet gateway in the Amazon VPC
408
+ # in which your WorkSpaces are located. If you're using a Network
409
+ # Address Translation (NAT) gateway for outbound internet access from
410
+ # your VPC, or if your WorkSpaces are in public subnets and you
411
+ # manually assign them Elastic IP addresses, you should disable this
412
+ # setting. This setting applies to new WorkSpaces that you launch or
413
+ # to existing WorkSpaces that you rebuild. For more information, see [
414
414
  # Configure a VPC for Amazon WorkSpaces][1].
415
415
  #
416
416
  #
@@ -2417,6 +2417,10 @@ module Aws::WorkSpaces
2417
2417
  # A description.
2418
2418
  # @return [String]
2419
2419
  #
2420
+ # @!attribute [rw] image_id
2421
+ # The image identifier of the bundle.
2422
+ # @return [String]
2423
+ #
2420
2424
  # @!attribute [rw] root_storage
2421
2425
  # The size of the root volume.
2422
2426
  # @return [Types::RootStorage]
@@ -2434,6 +2438,10 @@ module Aws::WorkSpaces
2434
2438
  # [1]: http://aws.amazon.com/workspaces/details/#Amazon_WorkSpaces_Bundles
2435
2439
  # @return [Types::ComputeType]
2436
2440
  #
2441
+ # @!attribute [rw] last_updated_time
2442
+ # The last time that the bundle was updated.
2443
+ # @return [Time]
2444
+ #
2437
2445
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/WorkspaceBundle AWS API Documentation
2438
2446
  #
2439
2447
  class WorkspaceBundle < Struct.new(
@@ -2441,9 +2449,11 @@ module Aws::WorkSpaces
2441
2449
  :name,
2442
2450
  :owner,
2443
2451
  :description,
2452
+ :image_id,
2444
2453
  :root_storage,
2445
2454
  :user_storage,
2446
- :compute_type)
2455
+ :compute_type,
2456
+ :last_updated_time)
2447
2457
  include Aws::Structure
2448
2458
  end
2449
2459
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-workspaces
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.31.0
4
+ version: 1.32.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: 2019-11-15 00:00:00.000000000 Z
11
+ date: 2019-11-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core