aws-sdk-sagemaker 1.105.0 → 1.109.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: 309e5046a944d0337c59af75f056bd81c8878fc269128a7e9bd9be3572ea1700
4
- data.tar.gz: d371d7f593d09a8ff0ef3097cb92f6456e755205290dc62c58cae48b2ff68b91
3
+ metadata.gz: 6c4da8556c498048616864799dae2a4e77ff1210fba856684c80d4d35005aea0
4
+ data.tar.gz: 3f21362ae9d0c9c14665acae95f8c67df339a8f9b50776a40823c9f4a153c183
5
5
  SHA512:
6
- metadata.gz: eba4a07ffa818c27f25b02c822ced11d69e14496e565ae392d2c1ce05dc8e0d61501ee860f19c1a2d18734086540bd59c22493566754706200b3110844145610
7
- data.tar.gz: c54933b4ac4e7896275cdb1d8761c7bf51156d6116b880cc426d4929159c97689a91358f12e154a011a396f7e4a6517bf205ee8ca657e098716174c07e8df07d
6
+ metadata.gz: ab044cb3ab5b23b22c86b6c671b965a2afef50cd42742f74eebffb7d9ebae54fe9113c91c376f71380021914e5312bb131d5beee5ac3895c048d564a20df176a
7
+ data.tar.gz: 6c21cfd78ed0aed2e444f815e4b2801af1ddbc7044c4a445c11959811c502d0c2d08186582413273f4c0b71c5a89d0fda80745f0b2081751789694c340beeb55
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.109.0 (2021-11-30)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.108.0 (2021-11-08)
10
+ ------------------
11
+
12
+ * Feature - SageMaker CreateEndpoint and UpdateEndpoint APIs now support additional deployment configuration to manage traffic shifting options and automatic rollback monitoring. DescribeEndpoint now shows new in-progress deployment details with stage status.
13
+
14
+ 1.107.0 (2021-11-04)
15
+ ------------------
16
+
17
+ * Feature - ListDevices and DescribeDevice now show Edge Manager agent version.
18
+
19
+ 1.106.0 (2021-10-28)
20
+ ------------------
21
+
22
+ * Feature - This release adds support for RStudio on SageMaker.
23
+
4
24
  1.105.0 (2021-10-27)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.105.0
1
+ 1.109.0
@@ -119,7 +119,9 @@ module Aws::SageMaker
119
119
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
120
  # are very aggressive. Construct and pass an instance of
121
121
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
122
+ # enable retries and extended timeouts. Instance profile credential
123
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
124
+ # to true.
123
125
  #
124
126
  # @option options [required, String] :region
125
127
  # The AWS region to connect to. The configured `:region` is
@@ -285,6 +287,15 @@ module Aws::SageMaker
285
287
  # ** Please note ** When response stubbing is enabled, no HTTP
286
288
  # requests are made, and retries are disabled.
287
289
  #
290
+ # @option options [Boolean] :use_dualstack_endpoint
291
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
292
+ # will be used if available.
293
+ #
294
+ # @option options [Boolean] :use_fips_endpoint
295
+ # When set to `true`, fips compatible endpoints will be used if available.
296
+ # When a `fips` region is used, the region is normalized and this config
297
+ # is set to `true`.
298
+ #
288
299
  # @option options [Boolean] :validate_params (true)
289
300
  # When `true`, request parameters are validated before
290
301
  # sending the request.
@@ -934,7 +945,7 @@ module Aws::SageMaker
934
945
  # resp = client.create_app({
935
946
  # domain_id: "DomainId", # required
936
947
  # user_profile_name: "UserProfileName", # required
937
- # app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, TensorBoard
948
+ # app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, TensorBoard, RStudioServerPro, RSessionGateway
938
949
  # app_name: "AppName", # required
939
950
  # tags: [
940
951
  # {
@@ -1812,6 +1823,16 @@ module Aws::SageMaker
1812
1823
  # attached to the domain with an Amazon Web Services managed key by
1813
1824
  # default. For more control, specify a customer managed key.
1814
1825
  #
1826
+ # @option params [String] :app_security_group_management
1827
+ # The entity that creates and manages the required security groups for
1828
+ # inter-app communication in `VPCOnly` mode. Required when
1829
+ # `CreateDomain.AppNetworkAccessType` is `VPCOnly` and
1830
+ # `DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn`
1831
+ # is provided.
1832
+ #
1833
+ # @option params [Types::DomainSettings] :domain_settings
1834
+ # A collection of `Domain` settings.
1835
+ #
1815
1836
  # @return [Types::CreateDomainResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1816
1837
  #
1817
1838
  # * {Types::CreateDomainResponse#domain_arn #domain_arn} => String
@@ -1863,6 +1884,12 @@ module Aws::SageMaker
1863
1884
  # lifecycle_config_arn: "StudioLifecycleConfigArn",
1864
1885
  # },
1865
1886
  # },
1887
+ # r_studio_server_pro_app_settings: {
1888
+ # access_status: "ENABLED", # accepts ENABLED, DISABLED
1889
+ # user_group: "R_STUDIO_ADMIN", # accepts R_STUDIO_ADMIN, R_STUDIO_USER
1890
+ # },
1891
+ # r_session_app_settings: {
1892
+ # },
1866
1893
  # },
1867
1894
  # subnet_ids: ["SubnetId"], # required
1868
1895
  # vpc_id: "VpcId", # required
@@ -1875,6 +1902,21 @@ module Aws::SageMaker
1875
1902
  # app_network_access_type: "PublicInternetOnly", # accepts PublicInternetOnly, VpcOnly
1876
1903
  # home_efs_file_system_kms_key_id: "KmsKeyId",
1877
1904
  # kms_key_id: "KmsKeyId",
1905
+ # app_security_group_management: "Service", # accepts Service, Customer
1906
+ # domain_settings: {
1907
+ # security_group_ids: ["SecurityGroupId"],
1908
+ # r_studio_server_pro_domain_settings: {
1909
+ # domain_execution_role_arn: "RoleArn", # required
1910
+ # r_studio_connect_url: "String",
1911
+ # r_studio_package_manager_url: "String",
1912
+ # default_resource_spec: {
1913
+ # sage_maker_image_arn: "ImageArn",
1914
+ # sage_maker_image_version_arn: "ImageVersionArn",
1915
+ # instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
1916
+ # lifecycle_config_arn: "StudioLifecycleConfigArn",
1917
+ # },
1918
+ # },
1919
+ # },
1878
1920
  # })
1879
1921
  #
1880
1922
  # @example Response structure
@@ -2060,6 +2102,10 @@ module Aws::SageMaker
2060
2102
  # The name of an endpoint configuration. For more information, see
2061
2103
  # CreateEndpointConfig.
2062
2104
  #
2105
+ # @option params [Types::DeploymentConfig] :deployment_config
2106
+ # The deployment configuration for an endpoint, which contains the
2107
+ # desired deployment strategy and rollback configurations.
2108
+ #
2063
2109
  # @option params [Array<Types::Tag>] :tags
2064
2110
  # An array of key-value pairs. You can use tags to categorize your
2065
2111
  # Amazon Web Services resources in different ways, for example, by
@@ -2079,6 +2125,31 @@ module Aws::SageMaker
2079
2125
  # resp = client.create_endpoint({
2080
2126
  # endpoint_name: "EndpointName", # required
2081
2127
  # endpoint_config_name: "EndpointConfigName", # required
2128
+ # deployment_config: {
2129
+ # blue_green_update_policy: { # required
2130
+ # traffic_routing_configuration: { # required
2131
+ # type: "ALL_AT_ONCE", # required, accepts ALL_AT_ONCE, CANARY, LINEAR
2132
+ # wait_interval_in_seconds: 1, # required
2133
+ # canary_size: {
2134
+ # type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENT
2135
+ # value: 1, # required
2136
+ # },
2137
+ # linear_step_size: {
2138
+ # type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENT
2139
+ # value: 1, # required
2140
+ # },
2141
+ # },
2142
+ # termination_wait_in_seconds: 1,
2143
+ # maximum_execution_timeout_in_seconds: 1,
2144
+ # },
2145
+ # auto_rollback_configuration: {
2146
+ # alarms: [
2147
+ # {
2148
+ # alarm_name: "AlarmName",
2149
+ # },
2150
+ # ],
2151
+ # },
2152
+ # },
2082
2153
  # tags: [
2083
2154
  # {
2084
2155
  # key: "TagKey", # required
@@ -6129,6 +6200,12 @@ module Aws::SageMaker
6129
6200
  # lifecycle_config_arn: "StudioLifecycleConfigArn",
6130
6201
  # },
6131
6202
  # },
6203
+ # r_studio_server_pro_app_settings: {
6204
+ # access_status: "ENABLED", # accepts ENABLED, DISABLED
6205
+ # user_group: "R_STUDIO_ADMIN", # accepts R_STUDIO_ADMIN, R_STUDIO_USER
6206
+ # },
6207
+ # r_session_app_settings: {
6208
+ # },
6132
6209
  # },
6133
6210
  # })
6134
6211
  #
@@ -6426,7 +6503,7 @@ module Aws::SageMaker
6426
6503
  # resp = client.delete_app({
6427
6504
  # domain_id: "DomainId", # required
6428
6505
  # user_profile_name: "UserProfileName", # required
6429
- # app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, TensorBoard
6506
+ # app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, TensorBoard, RStudioServerPro, RSessionGateway
6430
6507
  # app_name: "AppName", # required
6431
6508
  # })
6432
6509
  #
@@ -7671,14 +7748,14 @@ module Aws::SageMaker
7671
7748
  # resp = client.describe_app({
7672
7749
  # domain_id: "DomainId", # required
7673
7750
  # user_profile_name: "UserProfileName", # required
7674
- # app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, TensorBoard
7751
+ # app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, TensorBoard, RStudioServerPro, RSessionGateway
7675
7752
  # app_name: "AppName", # required
7676
7753
  # })
7677
7754
  #
7678
7755
  # @example Response structure
7679
7756
  #
7680
7757
  # resp.app_arn #=> String
7681
- # resp.app_type #=> String, one of "JupyterServer", "KernelGateway", "TensorBoard"
7758
+ # resp.app_type #=> String, one of "JupyterServer", "KernelGateway", "TensorBoard", "RStudioServerPro", "RSessionGateway"
7682
7759
  # resp.app_name #=> String
7683
7760
  # resp.domain_id #=> String
7684
7761
  # resp.user_profile_name #=> String
@@ -8178,6 +8255,7 @@ module Aws::SageMaker
8178
8255
  # * {Types::DescribeDeviceResponse#models #models} => Array&lt;Types::EdgeModel&gt;
8179
8256
  # * {Types::DescribeDeviceResponse#max_models #max_models} => Integer
8180
8257
  # * {Types::DescribeDeviceResponse#next_token #next_token} => String
8258
+ # * {Types::DescribeDeviceResponse#agent_version #agent_version} => String
8181
8259
  #
8182
8260
  # @example Request syntax with placeholder values
8183
8261
  #
@@ -8203,6 +8281,7 @@ module Aws::SageMaker
8203
8281
  # resp.models[0].latest_inference #=> Time
8204
8282
  # resp.max_models #=> Integer
8205
8283
  # resp.next_token #=> String
8284
+ # resp.agent_version #=> String
8206
8285
  #
8207
8286
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeDevice AWS API Documentation
8208
8287
  #
@@ -8282,6 +8361,9 @@ module Aws::SageMaker
8282
8361
  # * {Types::DescribeDomainResponse#url #url} => String
8283
8362
  # * {Types::DescribeDomainResponse#vpc_id #vpc_id} => String
8284
8363
  # * {Types::DescribeDomainResponse#kms_key_id #kms_key_id} => String
8364
+ # * {Types::DescribeDomainResponse#domain_settings #domain_settings} => Types::DomainSettings
8365
+ # * {Types::DescribeDomainResponse#app_security_group_management #app_security_group_management} => String
8366
+ # * {Types::DescribeDomainResponse#security_group_id_for_domain_boundary #security_group_id_for_domain_boundary} => String
8285
8367
  #
8286
8368
  # @example Request syntax with placeholder values
8287
8369
  #
@@ -8327,6 +8409,8 @@ module Aws::SageMaker
8327
8409
  # resp.default_user_settings.tensor_board_app_settings.default_resource_spec.sage_maker_image_version_arn #=> String
8328
8410
  # resp.default_user_settings.tensor_board_app_settings.default_resource_spec.instance_type #=> String, one of "system", "ml.t3.micro", "ml.t3.small", "ml.t3.medium", "ml.t3.large", "ml.t3.xlarge", "ml.t3.2xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.8xlarge", "ml.m5.12xlarge", "ml.m5.16xlarge", "ml.m5.24xlarge", "ml.m5d.large", "ml.m5d.xlarge", "ml.m5d.2xlarge", "ml.m5d.4xlarge", "ml.m5d.8xlarge", "ml.m5d.12xlarge", "ml.m5d.16xlarge", "ml.m5d.24xlarge", "ml.c5.large", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.12xlarge", "ml.c5.18xlarge", "ml.c5.24xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.p3dn.24xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.r5.large", "ml.r5.xlarge", "ml.r5.2xlarge", "ml.r5.4xlarge", "ml.r5.8xlarge", "ml.r5.12xlarge", "ml.r5.16xlarge", "ml.r5.24xlarge"
8329
8411
  # resp.default_user_settings.tensor_board_app_settings.default_resource_spec.lifecycle_config_arn #=> String
8412
+ # resp.default_user_settings.r_studio_server_pro_app_settings.access_status #=> String, one of "ENABLED", "DISABLED"
8413
+ # resp.default_user_settings.r_studio_server_pro_app_settings.user_group #=> String, one of "R_STUDIO_ADMIN", "R_STUDIO_USER"
8330
8414
  # resp.app_network_access_type #=> String, one of "PublicInternetOnly", "VpcOnly"
8331
8415
  # resp.home_efs_file_system_kms_key_id #=> String
8332
8416
  # resp.subnet_ids #=> Array
@@ -8334,6 +8418,17 @@ module Aws::SageMaker
8334
8418
  # resp.url #=> String
8335
8419
  # resp.vpc_id #=> String
8336
8420
  # resp.kms_key_id #=> String
8421
+ # resp.domain_settings.security_group_ids #=> Array
8422
+ # resp.domain_settings.security_group_ids[0] #=> String
8423
+ # resp.domain_settings.r_studio_server_pro_domain_settings.domain_execution_role_arn #=> String
8424
+ # resp.domain_settings.r_studio_server_pro_domain_settings.r_studio_connect_url #=> String
8425
+ # resp.domain_settings.r_studio_server_pro_domain_settings.r_studio_package_manager_url #=> String
8426
+ # resp.domain_settings.r_studio_server_pro_domain_settings.default_resource_spec.sage_maker_image_arn #=> String
8427
+ # resp.domain_settings.r_studio_server_pro_domain_settings.default_resource_spec.sage_maker_image_version_arn #=> String
8428
+ # resp.domain_settings.r_studio_server_pro_domain_settings.default_resource_spec.instance_type #=> String, one of "system", "ml.t3.micro", "ml.t3.small", "ml.t3.medium", "ml.t3.large", "ml.t3.xlarge", "ml.t3.2xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.8xlarge", "ml.m5.12xlarge", "ml.m5.16xlarge", "ml.m5.24xlarge", "ml.m5d.large", "ml.m5d.xlarge", "ml.m5d.2xlarge", "ml.m5d.4xlarge", "ml.m5d.8xlarge", "ml.m5d.12xlarge", "ml.m5d.16xlarge", "ml.m5d.24xlarge", "ml.c5.large", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.12xlarge", "ml.c5.18xlarge", "ml.c5.24xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.p3dn.24xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.r5.large", "ml.r5.xlarge", "ml.r5.2xlarge", "ml.r5.4xlarge", "ml.r5.8xlarge", "ml.r5.12xlarge", "ml.r5.16xlarge", "ml.r5.24xlarge"
8429
+ # resp.domain_settings.r_studio_server_pro_domain_settings.default_resource_spec.lifecycle_config_arn #=> String
8430
+ # resp.app_security_group_management #=> String, one of "Service", "Customer"
8431
+ # resp.security_group_id_for_domain_boundary #=> String
8337
8432
  #
8338
8433
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeDomain AWS API Documentation
8339
8434
  #
@@ -8424,6 +8519,7 @@ module Aws::SageMaker
8424
8519
  # * {Types::DescribeEndpointOutput#last_modified_time #last_modified_time} => Time
8425
8520
  # * {Types::DescribeEndpointOutput#last_deployment_config #last_deployment_config} => Types::DeploymentConfig
8426
8521
  # * {Types::DescribeEndpointOutput#async_inference_config #async_inference_config} => Types::AsyncInferenceConfig
8522
+ # * {Types::DescribeEndpointOutput#pending_deployment_summary #pending_deployment_summary} => Types::PendingDeploymentSummary
8427
8523
  #
8428
8524
  # @example Request syntax with placeholder values
8429
8525
  #
@@ -8446,6 +8542,10 @@ module Aws::SageMaker
8446
8542
  # resp.production_variants[0].desired_weight #=> Float
8447
8543
  # resp.production_variants[0].current_instance_count #=> Integer
8448
8544
  # resp.production_variants[0].desired_instance_count #=> Integer
8545
+ # resp.production_variants[0].variant_status #=> Array
8546
+ # resp.production_variants[0].variant_status[0].status #=> String, one of "Creating", "Updating", "Deleting", "ActivatingTraffic", "Baking"
8547
+ # resp.production_variants[0].variant_status[0].status_message #=> String
8548
+ # resp.production_variants[0].variant_status[0].start_time #=> Time
8449
8549
  # resp.data_capture_config.enable_capture #=> Boolean
8450
8550
  # resp.data_capture_config.capture_status #=> String, one of "Started", "Stopped"
8451
8551
  # resp.data_capture_config.current_sampling_percentage #=> Integer
@@ -8455,10 +8555,12 @@ module Aws::SageMaker
8455
8555
  # resp.failure_reason #=> String
8456
8556
  # resp.creation_time #=> Time
8457
8557
  # resp.last_modified_time #=> Time
8458
- # resp.last_deployment_config.blue_green_update_policy.traffic_routing_configuration.type #=> String, one of "ALL_AT_ONCE", "CANARY"
8558
+ # resp.last_deployment_config.blue_green_update_policy.traffic_routing_configuration.type #=> String, one of "ALL_AT_ONCE", "CANARY", "LINEAR"
8459
8559
  # resp.last_deployment_config.blue_green_update_policy.traffic_routing_configuration.wait_interval_in_seconds #=> Integer
8460
8560
  # resp.last_deployment_config.blue_green_update_policy.traffic_routing_configuration.canary_size.type #=> String, one of "INSTANCE_COUNT", "CAPACITY_PERCENT"
8461
8561
  # resp.last_deployment_config.blue_green_update_policy.traffic_routing_configuration.canary_size.value #=> Integer
8562
+ # resp.last_deployment_config.blue_green_update_policy.traffic_routing_configuration.linear_step_size.type #=> String, one of "INSTANCE_COUNT", "CAPACITY_PERCENT"
8563
+ # resp.last_deployment_config.blue_green_update_policy.traffic_routing_configuration.linear_step_size.value #=> Integer
8462
8564
  # resp.last_deployment_config.blue_green_update_policy.termination_wait_in_seconds #=> Integer
8463
8565
  # resp.last_deployment_config.blue_green_update_policy.maximum_execution_timeout_in_seconds #=> Integer
8464
8566
  # resp.last_deployment_config.auto_rollback_configuration.alarms #=> Array
@@ -8468,6 +8570,24 @@ module Aws::SageMaker
8468
8570
  # resp.async_inference_config.output_config.s3_output_path #=> String
8469
8571
  # resp.async_inference_config.output_config.notification_config.success_topic #=> String
8470
8572
  # resp.async_inference_config.output_config.notification_config.error_topic #=> String
8573
+ # resp.pending_deployment_summary.endpoint_config_name #=> String
8574
+ # resp.pending_deployment_summary.production_variants #=> Array
8575
+ # resp.pending_deployment_summary.production_variants[0].variant_name #=> String
8576
+ # resp.pending_deployment_summary.production_variants[0].deployed_images #=> Array
8577
+ # resp.pending_deployment_summary.production_variants[0].deployed_images[0].specified_image #=> String
8578
+ # resp.pending_deployment_summary.production_variants[0].deployed_images[0].resolved_image #=> String
8579
+ # resp.pending_deployment_summary.production_variants[0].deployed_images[0].resolution_time #=> Time
8580
+ # resp.pending_deployment_summary.production_variants[0].current_weight #=> Float
8581
+ # resp.pending_deployment_summary.production_variants[0].desired_weight #=> Float
8582
+ # resp.pending_deployment_summary.production_variants[0].current_instance_count #=> Integer
8583
+ # resp.pending_deployment_summary.production_variants[0].desired_instance_count #=> Integer
8584
+ # resp.pending_deployment_summary.production_variants[0].instance_type #=> String, one of "ml.t2.medium", "ml.t2.large", "ml.t2.xlarge", "ml.t2.2xlarge", "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.m5d.large", "ml.m5d.xlarge", "ml.m5d.2xlarge", "ml.m5d.4xlarge", "ml.m5d.12xlarge", "ml.m5d.24xlarge", "ml.c4.large", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.c5.large", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5d.large", "ml.c5d.xlarge", "ml.c5d.2xlarge", "ml.c5d.4xlarge", "ml.c5d.9xlarge", "ml.c5d.18xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.r5.large", "ml.r5.xlarge", "ml.r5.2xlarge", "ml.r5.4xlarge", "ml.r5.12xlarge", "ml.r5.24xlarge", "ml.r5d.large", "ml.r5d.xlarge", "ml.r5d.2xlarge", "ml.r5d.4xlarge", "ml.r5d.12xlarge", "ml.r5d.24xlarge", "ml.inf1.xlarge", "ml.inf1.2xlarge", "ml.inf1.6xlarge", "ml.inf1.24xlarge"
8585
+ # resp.pending_deployment_summary.production_variants[0].accelerator_type #=> String, one of "ml.eia1.medium", "ml.eia1.large", "ml.eia1.xlarge", "ml.eia2.medium", "ml.eia2.large", "ml.eia2.xlarge"
8586
+ # resp.pending_deployment_summary.production_variants[0].variant_status #=> Array
8587
+ # resp.pending_deployment_summary.production_variants[0].variant_status[0].status #=> String, one of "Creating", "Updating", "Deleting", "ActivatingTraffic", "Baking"
8588
+ # resp.pending_deployment_summary.production_variants[0].variant_status[0].status_message #=> String
8589
+ # resp.pending_deployment_summary.production_variants[0].variant_status[0].start_time #=> Time
8590
+ # resp.pending_deployment_summary.start_time #=> Time
8471
8591
  #
8472
8592
  #
8473
8593
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -10772,6 +10892,8 @@ module Aws::SageMaker
10772
10892
  # resp.user_settings.tensor_board_app_settings.default_resource_spec.sage_maker_image_version_arn #=> String
10773
10893
  # resp.user_settings.tensor_board_app_settings.default_resource_spec.instance_type #=> String, one of "system", "ml.t3.micro", "ml.t3.small", "ml.t3.medium", "ml.t3.large", "ml.t3.xlarge", "ml.t3.2xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.8xlarge", "ml.m5.12xlarge", "ml.m5.16xlarge", "ml.m5.24xlarge", "ml.m5d.large", "ml.m5d.xlarge", "ml.m5d.2xlarge", "ml.m5d.4xlarge", "ml.m5d.8xlarge", "ml.m5d.12xlarge", "ml.m5d.16xlarge", "ml.m5d.24xlarge", "ml.c5.large", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.12xlarge", "ml.c5.18xlarge", "ml.c5.24xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.p3dn.24xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.r5.large", "ml.r5.xlarge", "ml.r5.2xlarge", "ml.r5.4xlarge", "ml.r5.8xlarge", "ml.r5.12xlarge", "ml.r5.16xlarge", "ml.r5.24xlarge"
10774
10894
  # resp.user_settings.tensor_board_app_settings.default_resource_spec.lifecycle_config_arn #=> String
10895
+ # resp.user_settings.r_studio_server_pro_app_settings.access_status #=> String, one of "ENABLED", "DISABLED"
10896
+ # resp.user_settings.r_studio_server_pro_app_settings.user_group #=> String, one of "R_STUDIO_ADMIN", "R_STUDIO_USER"
10775
10897
  #
10776
10898
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeUserProfile AWS API Documentation
10777
10899
  #
@@ -11372,7 +11494,7 @@ module Aws::SageMaker
11372
11494
  # resp.apps #=> Array
11373
11495
  # resp.apps[0].domain_id #=> String
11374
11496
  # resp.apps[0].user_profile_name #=> String
11375
- # resp.apps[0].app_type #=> String, one of "JupyterServer", "KernelGateway", "TensorBoard"
11497
+ # resp.apps[0].app_type #=> String, one of "JupyterServer", "KernelGateway", "TensorBoard", "RStudioServerPro", "RSessionGateway"
11376
11498
  # resp.apps[0].app_name #=> String
11377
11499
  # resp.apps[0].status #=> String, one of "Deleted", "Deleting", "Failed", "InService", "Pending"
11378
11500
  # resp.apps[0].creation_time #=> Time
@@ -12150,6 +12272,7 @@ module Aws::SageMaker
12150
12272
  # resp.device_summaries[0].models #=> Array
12151
12273
  # resp.device_summaries[0].models[0].model_name #=> String
12152
12274
  # resp.device_summaries[0].models[0].model_version #=> String
12275
+ # resp.device_summaries[0].agent_version #=> String
12153
12276
  # resp.next_token #=> String
12154
12277
  #
12155
12278
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListDevices AWS API Documentation
@@ -15833,6 +15956,10 @@ module Aws::SageMaker
15833
15956
  # resp.results[0].endpoint.production_variants[0].desired_weight #=> Float
15834
15957
  # resp.results[0].endpoint.production_variants[0].current_instance_count #=> Integer
15835
15958
  # resp.results[0].endpoint.production_variants[0].desired_instance_count #=> Integer
15959
+ # resp.results[0].endpoint.production_variants[0].variant_status #=> Array
15960
+ # resp.results[0].endpoint.production_variants[0].variant_status[0].status #=> String, one of "Creating", "Updating", "Deleting", "ActivatingTraffic", "Baking"
15961
+ # resp.results[0].endpoint.production_variants[0].variant_status[0].status_message #=> String
15962
+ # resp.results[0].endpoint.production_variants[0].variant_status[0].start_time #=> Time
15836
15963
  # resp.results[0].endpoint.data_capture_config.enable_capture #=> Boolean
15837
15964
  # resp.results[0].endpoint.data_capture_config.capture_status #=> String, one of "Started", "Stopped"
15838
15965
  # resp.results[0].endpoint.data_capture_config.current_sampling_percentage #=> Integer
@@ -16937,6 +17064,9 @@ module Aws::SageMaker
16937
17064
  # @option params [Types::UserSettings] :default_user_settings
16938
17065
  # A collection of settings.
16939
17066
  #
17067
+ # @option params [Types::DomainSettingsForUpdate] :domain_settings_for_update
17068
+ # A collection of `DomainSettings` configuration values to update.
17069
+ #
16940
17070
  # @return [Types::UpdateDomainResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
16941
17071
  #
16942
17072
  # * {Types::UpdateDomainResponse#domain_arn #domain_arn} => String
@@ -16986,6 +17116,23 @@ module Aws::SageMaker
16986
17116
  # lifecycle_config_arn: "StudioLifecycleConfigArn",
16987
17117
  # },
16988
17118
  # },
17119
+ # r_studio_server_pro_app_settings: {
17120
+ # access_status: "ENABLED", # accepts ENABLED, DISABLED
17121
+ # user_group: "R_STUDIO_ADMIN", # accepts R_STUDIO_ADMIN, R_STUDIO_USER
17122
+ # },
17123
+ # r_session_app_settings: {
17124
+ # },
17125
+ # },
17126
+ # domain_settings_for_update: {
17127
+ # r_studio_server_pro_domain_settings_for_update: {
17128
+ # domain_execution_role_arn: "RoleArn", # required
17129
+ # default_resource_spec: {
17130
+ # sage_maker_image_arn: "ImageArn",
17131
+ # sage_maker_image_version_arn: "ImageVersionArn",
17132
+ # instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
17133
+ # lifecycle_config_arn: "StudioLifecycleConfigArn",
17134
+ # },
17135
+ # },
16989
17136
  # },
16990
17137
  # })
16991
17138
  #
@@ -17052,7 +17199,12 @@ module Aws::SageMaker
17052
17199
  # `ExcludeAllVariantProperties`, no variant properties are overridden.
17053
17200
  #
17054
17201
  # @option params [Types::DeploymentConfig] :deployment_config
17055
- # The deployment configuration for the endpoint to be updated.
17202
+ # The deployment configuration for an endpoint, which contains the
17203
+ # desired deployment strategy and rollback configurations.
17204
+ #
17205
+ # @option params [Boolean] :retain_deployment_config
17206
+ # Specifies whether to reuse the last deployment configuration. The
17207
+ # default value is false (the configuration is not reused).
17056
17208
  #
17057
17209
  # @return [Types::UpdateEndpointOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
17058
17210
  #
@@ -17072,12 +17224,16 @@ module Aws::SageMaker
17072
17224
  # deployment_config: {
17073
17225
  # blue_green_update_policy: { # required
17074
17226
  # traffic_routing_configuration: { # required
17075
- # type: "ALL_AT_ONCE", # required, accepts ALL_AT_ONCE, CANARY
17227
+ # type: "ALL_AT_ONCE", # required, accepts ALL_AT_ONCE, CANARY, LINEAR
17076
17228
  # wait_interval_in_seconds: 1, # required
17077
17229
  # canary_size: {
17078
17230
  # type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENT
17079
17231
  # value: 1, # required
17080
17232
  # },
17233
+ # linear_step_size: {
17234
+ # type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENT
17235
+ # value: 1, # required
17236
+ # },
17081
17237
  # },
17082
17238
  # termination_wait_in_seconds: 1,
17083
17239
  # maximum_execution_timeout_in_seconds: 1,
@@ -17090,6 +17246,7 @@ module Aws::SageMaker
17090
17246
  # ],
17091
17247
  # },
17092
17248
  # },
17249
+ # retain_deployment_config: false,
17093
17250
  # })
17094
17251
  #
17095
17252
  # @example Response structure
@@ -17680,17 +17837,18 @@ module Aws::SageMaker
17680
17837
  # The product ID and provisioning artifact ID to provision a service
17681
17838
  # catalog. The provisioning artifact ID will default to the latest
17682
17839
  # provisioning artifact ID of the product, if you don't provide the
17683
- # provisioning artifact ID. For more information, see [What is AWS
17684
- # Service Catalog][1].
17840
+ # provisioning artifact ID. For more information, see [What is Amazon
17841
+ # Web Services Service Catalog][1].
17685
17842
  #
17686
17843
  #
17687
17844
  #
17688
17845
  # [1]: https://docs.aws.amazon.com/servicecatalog/latest/adminguide/introduction.html
17689
17846
  #
17690
17847
  # @option params [Array<Types::Tag>] :tags
17691
- # An array of key-value pairs. You can use tags to categorize your AWS
17692
- # resources in different ways, for example, by purpose, owner, or
17693
- # environment. For more information, see [Tagging AWS Resources][1].
17848
+ # An array of key-value pairs. You can use tags to categorize your
17849
+ # Amazon Web Services resources in different ways, for example, by
17850
+ # purpose, owner, or environment. For more information, see [Tagging
17851
+ # Amazon Web Services Resources][1].
17694
17852
  #
17695
17853
  #
17696
17854
  #
@@ -17979,6 +18137,12 @@ module Aws::SageMaker
17979
18137
  # lifecycle_config_arn: "StudioLifecycleConfigArn",
17980
18138
  # },
17981
18139
  # },
18140
+ # r_studio_server_pro_app_settings: {
18141
+ # access_status: "ENABLED", # accepts ENABLED, DISABLED
18142
+ # user_group: "R_STUDIO_ADMIN", # accepts R_STUDIO_ADMIN, R_STUDIO_USER
18143
+ # },
18144
+ # r_session_app_settings: {
18145
+ # },
17982
18146
  # },
17983
18147
  # })
17984
18148
  #
@@ -18205,7 +18369,7 @@ module Aws::SageMaker
18205
18369
  params: params,
18206
18370
  config: config)
18207
18371
  context[:gem_name] = 'aws-sdk-sagemaker'
18208
- context[:gem_version] = '1.105.0'
18372
+ context[:gem_version] = '1.109.0'
18209
18373
  Seahorse::Client::Request.new(handlers, context)
18210
18374
  end
18211
18375