awscli 1.44.0__py3-none-any.whl → 1.44.2__py3-none-any.whl

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.
awscli/__init__.py CHANGED
@@ -18,7 +18,7 @@ A Universal Command Line Environment for Amazon Web Services.
18
18
 
19
19
  import os
20
20
 
21
- __version__ = '1.44.0'
21
+ __version__ = '1.44.2'
22
22
 
23
23
  #
24
24
  # Get our data path to be added to botocore's search path
@@ -1,6 +1,7 @@
1
1
  **To create a data store**
2
2
 
3
- The following ``create-datastore`` code example creates a data store with the name ``my-datastore``. When you create a datastore without specifying a ``--lossless-storage-format``, AWS HealthImaging defaults to HTJ2K (High Throughput JPEG 2000). ::
3
+ The following ``create-datastore`` code example creates a data store with the name ``my-datastore``.
4
+ When you create a datastore without specifying a ``--lossless-storage-format``, AWS HealthImaging defaults to HTJ2K (High Throughput JPEG 2000). ::
4
5
 
5
6
  aws medical-imaging create-datastore \
6
7
  --datastore-name "my-datastore"
@@ -12,4 +13,20 @@ Output::
12
13
  "datastoreStatus": "CREATING"
13
14
  }
14
15
 
16
+ **To create a data store with JPEG 2000 Lossless storage format**
17
+
18
+ A data store configured with JPEG 2000 Lossless storage format will transcode and persist lossless image frames in JPEG 2000 format. Image frames can then be retrieved in
19
+ JPEG 2000 Lossless without transcoding. The following ``create-datastore`` code example creates a data store configured for JPEG 2000 Lossless storage format with the name ``my-datastore``. ::
20
+
21
+ aws medical-imaging create-datastore \
22
+ --datastore-name "my-datastore" \
23
+ --lossless-storage-format JPEG_2000_LOSSLESS
24
+
25
+ Output::
26
+
27
+ {
28
+ "datastoreId": "12345678901234567890123456789012",
29
+ "datastoreStatus": "CREATING"
30
+ }
31
+
15
32
  For more information, see `Creating a data store <https://docs.aws.amazon.com/healthimaging/latest/devguide/create-data-store.html>`__ in the *AWS HealthImaging Developer Guide*.
@@ -1,4 +1,4 @@
1
- **To get a data store's properties**
1
+ **Example 1: To get a data store's properties**
2
2
 
3
3
  The following ``get-datastore`` code example gets a data store's properties. ::
4
4
 
@@ -9,14 +9,36 @@ The following ``get-datastore`` code example gets a data store's properties. ::
9
9
  Output::
10
10
 
11
11
  {
12
- "datastoreProperties": {
13
- "datastoreId": "12345678901234567890123456789012",
14
- "datastoreName": "TestDatastore123",
15
- "datastoreStatus": "ACTIVE",
16
- "losslessStorageFormat": "JPEG_2000_LOSSLESS",
17
- "datastoreArn": "arn:aws:medical-imaging:us-east-1:123456789012:datastore/12345678901234567890123456789012",
18
- "createdAt": "2022-11-15T23:33:09.643000+00:00",
19
- "updatedAt": "2022-11-15T23:33:09.643000+00:00"
12
+ "datastoreProperties": {
13
+ "datastoreId": "12345678901234567890123456789012",
14
+ "datastoreName": "TestDatastore123",
15
+ "datastoreStatus": "ACTIVE",
16
+ "losslessStorageFormat": "HTJ2K"
17
+ "datastoreArn": "arn:aws:medical-imaging:us-east-1:123456789012:datastore/12345678901234567890123456789012",
18
+ "createdAt": "2022-11-15T23:33:09.643000+00:00",
19
+ "updatedAt": "2022-11-15T23:33:09.643000+00:00"
20
+ }
21
+ }
22
+
23
+ **Example 2: To get data store's properties configured for JPEG2000**
24
+
25
+ The following ``get-datastore`` code example gets a data store's properties for a data store configured for JPEG 2000 Lossless storage format. ::
26
+
27
+ aws medical-imaging get-datastore \
28
+ --datastore-id 12345678901234567890123456789012
29
+
30
+
31
+ Output::
32
+
33
+ {
34
+ "datastoreProperties": {
35
+ "datastoreId": "12345678901234567890123456789012",
36
+ "datastoreName": "TestDatastore123",
37
+ "datastoreStatus": "ACTIVE",
38
+ "losslessStorageFormat": "JPEG_2000_LOSSLESS",
39
+ "datastoreArn": "arn:aws:medical-imaging:us-east-1:123456789012:datastore/12345678901234567890123456789012",
40
+ "createdAt": "2022-11-15T23:33:09.643000+00:00",
41
+ "updatedAt": "2022-11-15T23:33:09.643000+00:00"
20
42
  }
21
43
  }
22
44
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: awscli
3
- Version: 1.44.0
3
+ Version: 1.44.2
4
4
  Summary: Universal Command Line Environment for AWS.
5
5
  Home-page: http://aws.amazon.com/cli/
6
6
  Author: Amazon Web Services
@@ -24,7 +24,7 @@ Classifier: Programming Language :: Python :: 3.13
24
24
  Classifier: Programming Language :: Python :: 3.14
25
25
  Requires-Python: >= 3.9
26
26
  License-File: LICENSE.txt
27
- Requires-Dist: botocore (==1.42.10)
27
+ Requires-Dist: botocore (==1.42.12)
28
28
  Requires-Dist: docutils (<=0.19,>=0.18.1)
29
29
  Requires-Dist: s3transfer (<0.17.0,>=0.16.0)
30
30
  Requires-Dist: PyYAML (<6.1,>=3.10)
@@ -1,4 +1,4 @@
1
- awscli/__init__.py,sha256=Bb0j8e0Qff7rUYNdSHALkVSPHd5heIyXQh7IWNumE4Q,1533
1
+ awscli/__init__.py,sha256=4lUyeb2-Nff_DogQKmV45JntqL-7nnYcJxAgJqRs6Ts,1533
2
2
  awscli/__main__.py,sha256=iBjOg0tBxNlhzTi_tyc1G0SMGBvHMVvBJzX3JqYaooY,662
3
3
  awscli/alias.py,sha256=gB5jGInOl97UbgwGuKCjR_a_VudK0lAV1W6U_zeetZA,11348
4
4
  awscli/argparser.py,sha256=3Pxx-vWytdV985Y6MIl9DeutUXyehIvACIs_PDby8GI,7650
@@ -4280,10 +4280,10 @@ awscli/examples/mediatailor/get-playback-configuration.rst,sha256=BQv5afCCokimSK
4280
4280
  awscli/examples/mediatailor/list-playback-configurations.rst,sha256=jxInO0Lm1vCj_Ifc2L413z2SjRaw7SeQ_ZCx4TUwQ-8,3343
4281
4281
  awscli/examples/mediatailor/put-playback-configuration.rst,sha256=yWywM_zUGQz6Gb_-jM4jKKE-TBhFlp-2i0sgP7qbkRk,1715
4282
4282
  awscli/examples/medical-imaging/copy-image-set.rst,sha256=lOXuIVw0d47dD66bDHDwziZk_lT3nNHPpFQWtbH1i1U,4279
4283
- awscli/examples/medical-imaging/create-datastore.rst,sha256=n7PRzelNGY66V_imtwW4eqoedyxEbBZAsKNRTwh0j0o,661
4283
+ awscli/examples/medical-imaging/create-datastore.rst,sha256=oDPzKuIwmNLyyhggMkao4-JP_K6xa22EksK2Bhb5K8A,1353
4284
4284
  awscli/examples/medical-imaging/delete-datastore.rst,sha256=YlqXZ6R0KD3tvBiAt2b97NE2neuQnVrbV57YSiAOggg,503
4285
4285
  awscli/examples/medical-imaging/delete-image-set.rst,sha256=7FQ4aJqZ_3rnk37tHTRCf_Oiv0dT8jTw6O_5v-hNMUQ,658
4286
- awscli/examples/medical-imaging/get-datastore.rst,sha256=28hxkX1dFsXRGgQcKNrHGjOBFG79EE0RpwGN8G0vSSM,889
4286
+ awscli/examples/medical-imaging/get-datastore.rst,sha256=cSbJrgSHD5J3NKU0CpjzI6T1_yTGcoTvQi5W1w6a1t8,1755
4287
4287
  awscli/examples/medical-imaging/get-dicom-import-job.rst,sha256=sFvZYZutEOFZ0_tzsIWKo5GJHj42wr0oFYTEEbsnyKg,1175
4288
4288
  awscli/examples/medical-imaging/get-image-frame.rst,sha256=5eSz6jG6nDInRY3QUcZXhG6aGM4oUp2X3HoRQKRMPw4,787
4289
4289
  awscli/examples/medical-imaging/get-image-set-metadata.rst,sha256=D-NJxVh4DhhuOu2zs1vcQzvmXrKPw8uLFGUWeepuXcU,1585
@@ -6061,13 +6061,13 @@ awscli/topics/return-codes.rst,sha256=d9lpNFZwD75IiYcDEADQzu-4QiR8P28UPHkrNwPV5J
6061
6061
  awscli/topics/s3-config.rst,sha256=5EIVd4ggLBHtzjtHFvQp9hY415yMGZiG7S_rO9qy2t0,11663
6062
6062
  awscli/topics/s3-faq.rst,sha256=9qO0HFI6F9hx1wVEUDl8Jy6yoCUd9zbtv-Z0Re4dsiw,2934
6063
6063
  awscli/topics/topic-tags.json,sha256=6lUSrs3FKCZNRSQMnjcXNgWyRNGjZIeur1988a4IO5o,1577
6064
- awscli-1.44.0.data/scripts/aws,sha256=r24FExgs0-JjILTQ3XZAqXBYE4SV6UMTtALkLGAj86g,805
6065
- awscli-1.44.0.data/scripts/aws.cmd,sha256=s46DkC6LNgX63CIkzxxbPnFMJ6DRDBkvc88GnWa8Pvg,1432
6066
- awscli-1.44.0.data/scripts/aws_bash_completer,sha256=RRpoEGJRagRzyHZKZZOwpltuVYv2EoiZsdXhmyWPZ54,204
6067
- awscli-1.44.0.data/scripts/aws_completer,sha256=oC9kuMDlWE47dWk_4xjPde2PQvN-M0vND0J4YSLabVQ,1126
6068
- awscli-1.44.0.data/scripts/aws_zsh_completer.sh,sha256=Qm6Z8ejNAMzpJjaT0pzqxbSDT2zxdmzVe5haRA7qLoc,1808
6069
- awscli-1.44.0.dist-info/LICENSE.txt,sha256=o5XhFlwu0OK_BBrijlKCRa7dQAm36UrUB3gCV_cEr8E,549
6070
- awscli-1.44.0.dist-info/METADATA,sha256=JC-L-zCDrlZi2H94eNSBYb7ZdvO_rza3ea6_iAN6Cjg,11200
6071
- awscli-1.44.0.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
6072
- awscli-1.44.0.dist-info/top_level.txt,sha256=vt9wXFr1_nGYK6abhJgt6zY3fULe4JSZedm_5XOM9S0,7
6073
- awscli-1.44.0.dist-info/RECORD,,
6064
+ awscli-1.44.2.data/scripts/aws,sha256=r24FExgs0-JjILTQ3XZAqXBYE4SV6UMTtALkLGAj86g,805
6065
+ awscli-1.44.2.data/scripts/aws.cmd,sha256=s46DkC6LNgX63CIkzxxbPnFMJ6DRDBkvc88GnWa8Pvg,1432
6066
+ awscli-1.44.2.data/scripts/aws_bash_completer,sha256=RRpoEGJRagRzyHZKZZOwpltuVYv2EoiZsdXhmyWPZ54,204
6067
+ awscli-1.44.2.data/scripts/aws_completer,sha256=oC9kuMDlWE47dWk_4xjPde2PQvN-M0vND0J4YSLabVQ,1126
6068
+ awscli-1.44.2.data/scripts/aws_zsh_completer.sh,sha256=Qm6Z8ejNAMzpJjaT0pzqxbSDT2zxdmzVe5haRA7qLoc,1808
6069
+ awscli-1.44.2.dist-info/LICENSE.txt,sha256=o5XhFlwu0OK_BBrijlKCRa7dQAm36UrUB3gCV_cEr8E,549
6070
+ awscli-1.44.2.dist-info/METADATA,sha256=w3Hv7GoDsCl4BrL1j1SlyUOCJWeZa6KwA234kBO3X_M,11200
6071
+ awscli-1.44.2.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
6072
+ awscli-1.44.2.dist-info/top_level.txt,sha256=vt9wXFr1_nGYK6abhJgt6zY3fULe4JSZedm_5XOM9S0,7
6073
+ awscli-1.44.2.dist-info/RECORD,,
File without changes