awscli 1.41.1__py3-none-any.whl → 1.41.3__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.41.1'
21
+ __version__ = '1.41.3'
22
22
 
23
23
  #
24
24
  # Get our data path to be added to botocore's search path
@@ -5,4 +5,4 @@ The following ``cancel-run`` example cancels a run with ID ``1234567``. ::
5
5
  aws omics cancel-run \
6
6
  --id 1234567
7
7
 
8
- For more information, see `Omics Workflows <https://docs.aws.amazon.com/omics/latest/dev/workflows.html>`__ in the *Amazon Omics Developer Guide*.
8
+ For more information, see `Run lifecycle in a workflow <https://docs.aws.amazon.com/omics/latest/dev/monitoring-runs.html>`__ in the *AWS HealthOmics User Guide*.
@@ -5,7 +5,9 @@ The following ``create-run-group`` example creates a run group named ``cram-conv
5
5
  aws omics create-run-group \
6
6
  --name cram-converter \
7
7
  --max-cpus 20 \
8
- --max-duration 600
8
+ --max-gpus 10 \
9
+ --max-duration 600 \
10
+ --max-runs 5
9
11
 
10
12
  Output::
11
13
 
@@ -15,4 +17,4 @@ Output::
15
17
  "tags": {}
16
18
  }
17
19
 
18
- For more information, see `Omics Workflows <https://docs.aws.amazon.com/omics/latest/dev/workflows.html>`__ in the *Amazon Omics Developer Guide*.
20
+ For more information, see `Creating run groups <https://docs.aws.amazon.com/omics/latest/dev/creating-run-groups.html>`__ in the *AWS HealthOmics User Guide*.
@@ -42,4 +42,4 @@ Output::
42
42
  "tags": {}
43
43
  }
44
44
 
45
- For more information, see `Omics Workflows <https://docs.aws.amazon.com/omics/latest/dev/workflows.html>`__ in the *Amazon Omics Developer Guide*.
45
+ For more information, see `Creating private workflows <https://docs.aws.amazon.com/omics/latest/dev/workflows-setup.html>`__ in the *AWS HealthOmics User Guide*.
@@ -5,4 +5,4 @@ The following ``delete-run-group`` example deletes a run group with ID ``1234567
5
5
  aws omics delete-run-group \
6
6
  --id 1234567
7
7
 
8
- For more information, see `Omics Workflows <https://docs.aws.amazon.com/omics/latest/dev/workflows.html>`__ in the *Amazon Omics Developer Guide*.
8
+ For more information, see `Deleting runs and run groups <https://docs.aws.amazon.com/omics/latest/dev/deleting-workflows-and-runs.html>`__ in the *AWS HealthOmics User Guide*.
@@ -5,4 +5,4 @@ The following ``delete-run`` example deletes a run with ID ``1234567``. ::
5
5
  aws omics delete-run \
6
6
  --id 1234567
7
7
 
8
- For more information, see `Omics Workflows <https://docs.aws.amazon.com/omics/latest/dev/workflows.html>`__ in the *Amazon Omics Developer Guide*.
8
+ For more information, see `Deleting runs and run groups <https://docs.aws.amazon.com/omics/latest/dev/deleting-workflows-and-runs.html>`__ in the *AWS HealthOmics User Guide*.
@@ -5,4 +5,4 @@ The following ``delete-workflow`` example deletes a workflow with ID ``1234567``
5
5
  aws omics delete-workflow \
6
6
  --id 1234567
7
7
 
8
- For more information, see `Omics Workflows <https://docs.aws.amazon.com/omics/latest/dev/workflows.html>`__ in the *Amazon Omics Developer Guide*.
8
+ For more information, see `Delete a private workflow <https://docs.aws.amazon.com/omics/latest/dev/delete-private-workflow.html>`__ in the *AWS HealthOmics User Guide*.
@@ -17,4 +17,4 @@ Output::
17
17
  "tags": {}
18
18
  }
19
19
 
20
- For more information, see `Omics Workflows <https://docs.aws.amazon.com/omics/latest/dev/workflows.html>`__ in the *Amazon Omics Developer Guide*.
20
+ For more information, see `Creating run groups <https://docs.aws.amazon.com/omics/latest/dev/creating-run-groups.html>`__ in the *AWS HealthOmics User Guide*.
@@ -20,4 +20,4 @@ Output::
20
20
  "taskId": "1234567"
21
21
  }
22
22
 
23
- For more information, see `Omics Workflows <https://docs.aws.amazon.com/omics/latest/dev/workflows.html>`__ in the *Amazon Omics Developer Guide*.
23
+ For more information, see `Task lifecycle in a HealthOmics run <https://docs.aws.amazon.com/omics/latest/dev/workflow-run-tasks.html>`__ in the *AWS HealthOmics User Guide*.
@@ -35,4 +35,4 @@ Output::
35
35
  "workflowType": "PRIVATE"
36
36
  }
37
37
 
38
- For more information, see `Omics Workflows <https://docs.aws.amazon.com/omics/latest/dev/workflows.html>`__ in the *Amazon Omics Developer Guide*.
38
+ For more information, see `Run lifecycle in a workflow <https://docs.aws.amazon.com/omics/latest/dev/monitoring-runs.html>`__ in the *AWS HealthOmics User Guide*.
@@ -38,4 +38,4 @@ Output::
38
38
  "type": "PRIVATE"
39
39
  }
40
40
 
41
- For more information, see `Omics Workflows <https://docs.aws.amazon.com/omics/latest/dev/workflows.html>`__ in the *Amazon Omics Developer Guide*.
41
+ For more information, see `Creating private workflows <https://docs.aws.amazon.com/omics/latest/dev/workflows-setup.html>`__ in the *AWS HealthOmics User Guide*.
@@ -19,4 +19,4 @@ Output::
19
19
  ]
20
20
  }
21
21
 
22
- For more information, see `Omics Workflows <https://docs.aws.amazon.com/omics/latest/dev/workflows.html>`__ in the *Amazon Omics Developer Guide*.
22
+ For more information, see `Creating run groups <https://docs.aws.amazon.com/omics/latest/dev/creating-run-groups.html>`__ in the *AWS HealthOmics User Guide*.
@@ -32,4 +32,4 @@ Output::
32
32
  ]
33
33
  }
34
34
 
35
- For more information, see `Omics Workflows <https://docs.aws.amazon.com/omics/latest/dev/workflows.html>`__ in the *Amazon Omics Developer Guide*.
35
+ For more information, see `Task lifecycle in a HealthOmics run <https://docs.aws.amazon.com/omics/latest/dev/workflow-run-tasks.html>`__ in the *AWS HealthOmics User Guide*.
@@ -43,4 +43,4 @@ Output::
43
43
  ]
44
44
  }
45
45
 
46
- For more information, see `Omics Workflows <https://docs.aws.amazon.com/omics/latest/dev/workflows.html>`__ in the *Amazon Omics Developer Guide*.
46
+ For more information, see `Run lifecycle in a workflow <https://docs.aws.amazon.com/omics/latest/dev/monitoring-runs.html>`__ in the *AWS HealthOmics User Guide*.
@@ -29,4 +29,4 @@ Output::
29
29
  ]
30
30
  }
31
31
 
32
- For more information, see `Omics Workflows <https://docs.aws.amazon.com/omics/latest/dev/workflows.html>`__ in the *Amazon Omics Developer Guide*.
32
+ For more information, see `Creating private workflows <https://docs.aws.amazon.com/omics/latest/dev/workflows-setup.html>`__ in the *AWS HealthOmics User Guide*.
@@ -32,7 +32,7 @@ Output::
32
32
  "tags": {}
33
33
  }
34
34
 
35
- For more information, see `Omics Workflows <https://docs.aws.amazon.com/omics/latest/dev/workflows.html>`__ in the *Amazon Omics Developer Guide*.
35
+ For more information, see `Starting a run <https://docs.aws.amazon.com/omics/latest/dev/starting-a-run.html>`__ in the *AWS HealthOmics User Guide*.
36
36
 
37
37
  **To load source files from Amazon Omics**
38
38
 
@@ -46,4 +46,3 @@ You can also load source files from Amazon Omics storage, by using service-speci
46
46
  "ref_fasta_index": "omics://123456789012.storage.us-west-2.amazonaws.com/1234567890/reference/1234567890/index"
47
47
  }
48
48
 
49
- For more information, see `Omics Workflows <https://docs.aws.amazon.com/omics/latest/dev/workflows.html>`__ in the *Amazon Omics Developer Guide*.
@@ -6,4 +6,4 @@ The following ``update-workflow`` example updates the description of a workflow
6
6
  --id 1234567 \
7
7
  --description "copy workflow"
8
8
 
9
- For more information, see `Omics Storage <https://docs.aws.amazon.com/omics/latest/dev/workflows.html>`__ in the *Amazon Omics Developer Guide*.
9
+ For more information, see `Creating or updating a workflow <https://docs.aws.amazon.com/omics/latest/dev/creating-private-workflows.html>`__ in the *AWS HealthOmics User Guide*.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: awscli
3
- Version: 1.41.1
3
+ Version: 1.41.3
4
4
  Summary: Universal Command Line Environment for AWS.
5
5
  Home-page: http://aws.amazon.com/cli/
6
6
  Author: Amazon Web Services
@@ -23,7 +23,7 @@ Classifier: Programming Language :: Python :: 3.12
23
23
  Classifier: Programming Language :: Python :: 3.13
24
24
  Requires-Python: >= 3.9
25
25
  License-File: LICENSE.txt
26
- Requires-Dist: botocore (==1.39.1)
26
+ Requires-Dist: botocore (==1.39.3)
27
27
  Requires-Dist: docutils (<=0.19,>=0.18.1)
28
28
  Requires-Dist: s3transfer (<0.14.0,>=0.13.0)
29
29
  Requires-Dist: PyYAML (<6.1,>=3.10)
@@ -1,4 +1,4 @@
1
- awscli/__init__.py,sha256=EYz9cXN_od6WNnbS2eq4l9kLHJVLuJMmbBIY-hq_XR4,1533
1
+ awscli/__init__.py,sha256=Wsy_MjeUN9iSFEuU9X9znhsLIogm3HtK2PORnBRCAoo,1533
2
2
  awscli/__main__.py,sha256=iBjOg0tBxNlhzTi_tyc1G0SMGBvHMVvBJzX3JqYaooY,662
3
3
  awscli/alias.py,sha256=Jj2jetpajUMcjqx9tFhHUOKpzLChQygnH2zqDFfmgIM,11315
4
4
  awscli/argparser.py,sha256=3Pxx-vWytdV985Y6MIl9DeutUXyehIvACIs_PDby8GI,7650
@@ -4409,28 +4409,28 @@ awscli/examples/omics/abort-multipart-read-set-upload.rst,sha256=8yx4sDvL1gNtYYi
4409
4409
  awscli/examples/omics/accept-share.rst,sha256=rNn9bXBWqaQsVGAeEomVWoJLtauJiDqCGojeQRJtr7Q,478
4410
4410
  awscli/examples/omics/batch-delete-read-set.rst,sha256=lTDc16l5-NRTa7y4IW7S_V0tRL-r-0fUDIe_XLFvd_0,679
4411
4411
  awscli/examples/omics/cancel-annotation-import-job.rst,sha256=FRM341mpe95YGBkyfk62LOdYw1Ou5KsBBBTP7FJJQ7k,435
4412
- awscli/examples/omics/cancel-run.rst,sha256=dVGMz-5K852tMP1IidHf4mohUdbLgkYGcQfZnOq9WSE,293
4412
+ awscli/examples/omics/cancel-run.rst,sha256=kC5HC454FQsCIcLdfqcSOcCdvwNc98Qq5ExC6kx6Jhg,309
4413
4413
  awscli/examples/omics/cancel-variant-import-job.rst,sha256=sXbcjE0XRQZa8Qa0leyjL35D4rqdByo8vnr08rl2t0o,421
4414
4414
  awscli/examples/omics/complete-multipart-read-set-upload.rst,sha256=KUKFB4pgtwowidi1EAgHRLVC8SuAxXnQqVpsTwwaWgE,787
4415
4415
  awscli/examples/omics/create-annotation-store-version.rst,sha256=y6jOhQkgu3gQy0PmcSlOTduqbfLQTAwTqhAllZngzvU,835
4416
4416
  awscli/examples/omics/create-annotation-store.rst,sha256=l22-Yb9MeUXdWF0T5OvpM4LZcgxJUtlfc1Q0iu1fTyA,2989
4417
4417
  awscli/examples/omics/create-multipart-read-set-upload.rst,sha256=43E-HMOXyO0M6gxitRDuCG6Zr68b1F1OMGy0hfRbf40,973
4418
4418
  awscli/examples/omics/create-reference-store.rst,sha256=yqOE9VtxOG2RNKGlJn2Mwsj4B2ri8WWfJ9r6YoAtXAY,564
4419
- awscli/examples/omics/create-run-group.rst,sha256=6Db8aPzb7WHoJQxG-waNF-HZf8GZ-YyiW200asMigxk,523
4419
+ awscli/examples/omics/create-run-group.rst,sha256=a54F78oI4_t2SCiDOHOJZjdbTBjWNppSI-QnceUGQQE,583
4420
4420
  awscli/examples/omics/create-sequence-store.rst,sha256=9mO6pMuJ2CPHTonY27ffZ9wEYOxOYG7YAqOPx02xic8,542
4421
4421
  awscli/examples/omics/create-share.rst,sha256=ITDkzrsTwf9GvAwLnxUGB4SILg6m2Qd8fWENWdA5cHw,755
4422
4422
  awscli/examples/omics/create-variant-store.rst,sha256=hwX4dEPKb_OB6fcVrwuuZzV4hWi-PfWu8EIDauyR3Yg,785
4423
- awscli/examples/omics/create-workflow.rst,sha256=iMqUd99Y4Z0LPsXQeVFBcXefLYuZX-LYYihhedMvoOY,1454
4423
+ awscli/examples/omics/create-workflow.rst,sha256=PAZneXT7K9w_9lRfECCvK0Gpj7BMiFLqiDqvMjLablk,1469
4424
4424
  awscli/examples/omics/delete-annotation-store-versions.rst,sha256=Jm6xtwPT-0AH9vDeLHGiHeRtwz6bcrcyAsjka5cp5N8,493
4425
4425
  awscli/examples/omics/delete-annotation-store.rst,sha256=TCbEvcK4tbbDbGMym0qfdC6UlU6_j4FwY7FRmkJJHaI,415
4426
4426
  awscli/examples/omics/delete-reference-store.rst,sha256=MQdBH1TRqRs4CisEEFvQdqsqXSrXpSHonje9UIUXkDM,351
4427
4427
  awscli/examples/omics/delete-reference.rst,sha256=IlZZx26N09FOVs_qihFUw02Zr1G4kBWh0ypulBlw4nc,346
4428
- awscli/examples/omics/delete-run-group.rst,sha256=wAjNhwqv4pf3dWIwS9UzWGWsuIriwtp62wV9JtB-8EQ,317
4429
- awscli/examples/omics/delete-run.rst,sha256=0Pte2lzn6R9U-Lkq4X3usMkFyfxW7F81j1xb1MUfP3A,302
4428
+ awscli/examples/omics/delete-run-group.rst,sha256=nFkLNARgDZ6D_FATtu533LByFg_BV9nXE5MB8TdC57c,346
4429
+ awscli/examples/omics/delete-run.rst,sha256=7WGPcYf64pVKyGm81Unfr87X5MzhgPyoUpgfUMYWDLk,331
4430
4430
  awscli/examples/omics/delete-sequence-store.rst,sha256=bJoncGXgaRdvT4F-8o7JLB0a8FnouVrvpfflsomKjaM,347
4431
4431
  awscli/examples/omics/delete-share.rst,sha256=OEth24KJuIRhPcvKY2F0xVBXMrgoVrhWk7WQrjedmcA,477
4432
4432
  awscli/examples/omics/delete-variant-store.rst,sha256=BYNBegi7vA4XJ_GGQ_8oZvfnldjW3_-rfT_IJcsVsHQ,401
4433
- awscli/examples/omics/delete-workflow.rst,sha256=2IaVHOJ65EAe3ZniFz_9jMp7N_SMrvHA5hZav2nrAUM,313
4433
+ awscli/examples/omics/delete-workflow.rst,sha256=Op4ocEOmOsHsS2cFP6g85KQ361NQLVcSma2KkJNVauw,335
4434
4434
  awscli/examples/omics/get-annotation-import-job.rst,sha256=FKtsnnoYUnoR_NfIsh0ru3dNtFv27p7Ab8fwiVsgU0A,972
4435
4435
  awscli/examples/omics/get-annotation-store-version.rst,sha256=paV1-Hbb7bfi79SxMehpHVYzdzOdweVDAleiJJ8BdGA,980
4436
4436
  awscli/examples/omics/get-annotation-store.rst,sha256=9CuUW73AQgr1_PStOAjAVXmV5M9i7k4TMx3Pf9bFUe8,851
@@ -4443,14 +4443,14 @@ awscli/examples/omics/get-reference-import-job.rst,sha256=lZTU_HzcHsNaTMjzaVVNkx
4443
4443
  awscli/examples/omics/get-reference-metadata.rst,sha256=ToU2QOo1MK6bDRwbyON04dfFcNzucgluW_S3eZbnpwg,1108
4444
4444
  awscli/examples/omics/get-reference-store.rst,sha256=pBUrMWMV0l4b523DY6wpGZBIcHWeTGKDabhxEfowwe8,545
4445
4445
  awscli/examples/omics/get-reference.rst,sha256=11ozs4ejnT2hXIMdR-PNdJKV_xAkPgA_Fusuv4KZWdU,411
4446
- awscli/examples/omics/get-run-group.rst,sha256=KJRtxdZP4rulEv4Cp5NPiWhxpfAZvIJuPbJ017cfPM0,577
4447
- awscli/examples/omics/get-run-task.rst,sha256=tKgiDJ-_D6vafYbg-rIgd_JLFfKAmvLz6g-BRYF_f28,762
4448
- awscli/examples/omics/get-run.rst,sha256=OV98FURMWt7dmlrHEEh6pCIc6fLaMoWWSMGtbCbI42M,1920
4446
+ awscli/examples/omics/get-run-group.rst,sha256=Y4VQmSis-JfoG_qQ3MptsAdOpBNXh1vh8fPeqSVbBpM,588
4447
+ awscli/examples/omics/get-run-task.rst,sha256=PGvaMY3EYxnWL3c0KYcaWZJkFUGsGy6V4XpOS54BP7U,789
4448
+ awscli/examples/omics/get-run.rst,sha256=nmQc347GkuYHfO2NklX8K5ZiBQxsPsuwgKrvkbNoSNg,1936
4449
4449
  awscli/examples/omics/get-sequence-store.rst,sha256=fgFGJ9BNgTFtYoP4nBYKdrf8I_Sj92Yw2Q5iBOxUsYE,564
4450
4450
  awscli/examples/omics/get-share.rst,sha256=vB5kVMVJH3oG3CF8PWTF33jPkkaHuFWQSzsfCWAkfRs,863
4451
4451
  awscli/examples/omics/get-variant-import-job.rst,sha256=dN07WqX_sRUiv7_PKhzLOWQ1ioamZWQnbEI9wRsueOA,982
4452
4452
  awscli/examples/omics/get-variant-store.rst,sha256=7uCubVP7KIdXEvt6bT1V0spc8qZuBzCwyeAO9dnPnP4,834
4453
- awscli/examples/omics/get-workflow.rst,sha256=fdOSYeyfKGocZtNmBqqISQl-jvZDGlut9qWWS4HsO-8,1559
4453
+ awscli/examples/omics/get-workflow.rst,sha256=9Fbjf224ZdaQhu4CHtObWwwqCvQX_EvXPP4kGHZvBrU,1574
4454
4454
  awscli/examples/omics/list-annotation-import-jobs.rst,sha256=p3XCAMT2AGHR-5L9lXAP4QnAJwxru63PA4fvttA_jko,1304
4455
4455
  awscli/examples/omics/list-annotation-store-versions.rst,sha256=RL3GTHALrVrdcsWa92ksonEFg4HI30j5NebHItUnVRA,1438
4456
4456
  awscli/examples/omics/list-annotation-stores.rst,sha256=ZQYO4XmxvenJwfhDw_fDIk1wiVRsrUDQOHaqBAgsTiY,1027
@@ -4463,28 +4463,28 @@ awscli/examples/omics/list-read-sets.rst,sha256=6s8cPin1qBBeNwydXUqVgp0UCrD0L90J
4463
4463
  awscli/examples/omics/list-reference-import-jobs.rst,sha256=lPFFFBFO4ih2NhdrpdKgJJ94C32I8OHLooO5xtJL0s4,1173
4464
4464
  awscli/examples/omics/list-reference-stores.rst,sha256=x6rLB-EEoPmyrlPZxD020V4U2rWwL_dKzlhS80vUbQA,626
4465
4465
  awscli/examples/omics/list-references.rst,sha256=_i9Z2bdJi1t-GP7UQVeVhYvHg3Ssgmbv0J5CJmqx1BU,914
4466
- awscli/examples/omics/list-run-groups.rst,sha256=15BjjUYyC76mR9977urPwtm_XZWP_59-guw8KL8u7-8,646
4467
- awscli/examples/omics/list-run-tasks.rst,sha256=TPyw0y9Yvg42cvheEH1wF8Y2U1E1bsDa4-DD6gRywzo,1122
4468
- awscli/examples/omics/list-runs.rst,sha256=qglPnB2C9PpIRQBXqvxcNyWTdNshLxEAMHRyexXYp0E,1651
4466
+ awscli/examples/omics/list-run-groups.rst,sha256=PX6kNbf-DDEHEKV2T9yavtW5j8FyZYaO59-bnOHlDWU,657
4467
+ awscli/examples/omics/list-run-tasks.rst,sha256=jRDgS7wEwwnm5Bnz1GPZUute8B2o6M4Q8IMRTx02zxs,1149
4468
+ awscli/examples/omics/list-runs.rst,sha256=tYj3HXd0qgQu_gMWoEa6_A6u3PqONMzQ7Ahx1Us14ag,1667
4469
4469
  awscli/examples/omics/list-sequence-stores.rst,sha256=E69WEyArIxLrVUIN9oACZqwU-4T9cx9uK4XC1pUEeDg,620
4470
4470
  awscli/examples/omics/list-shares.rst,sha256=YCjQhTgoMmSEd-Aalt53tbPlmXzVj_0m-6Cr8kWL1_Q,1526
4471
4471
  awscli/examples/omics/list-tags-for-resource.rst,sha256=ypdyHs63K-2s0qURRI63p_DXHE8Tdaq4EVlQONRcbtg,507
4472
4472
  awscli/examples/omics/list-variant-import-jobs.rst,sha256=Xa_zQz0HKB26YIPvJFS5RAwuADGUTt5SIkrzfP9-pWc,1299
4473
4473
  awscli/examples/omics/list-variant-stores.rst,sha256=tTafY6CQ9xc7ZFCIib0vMkqzcPIvUh51SelBT7n8KMo,1327
4474
- awscli/examples/omics/list-workflows.rst,sha256=2xUZLaUX1vOAJO4WbzAgmFmMbnrhgGNs9NuHTSYRQmw,1137
4474
+ awscli/examples/omics/list-workflows.rst,sha256=dNdNyO_l3glRlygJDrnfCjEbQcKk693E6DqMvJ_A1tI,1152
4475
4475
  awscli/examples/omics/start-annotation-import-job.rst,sha256=qmKv-s321WqFwIZ38fmidE7L1BQB9naaY9QEjKVyQ0I,658
4476
4476
  awscli/examples/omics/start-read-set-activation-job.rst,sha256=ZakL2eHFJeuH-KtTfnna_xKNPP2e38FnQqIQ9oeEWNM,596
4477
4477
  awscli/examples/omics/start-read-set-export-job.rst,sha256=-Z79cuFcprPFSepXsiDBDsxj_EjwjErmf9dJKjbR1hw,843
4478
4478
  awscli/examples/omics/start-read-set-import-job.rst,sha256=LT1nieq3YeM7db5RohWuFkCMTUPSn1XxHxr79ci8DxA,1298
4479
4479
  awscli/examples/omics/start-reference-import-job.rst,sha256=C3w2NYStsQNUhJfVAopAQMZoX1gfF-rHFNafii8v-7Y,851
4480
- awscli/examples/omics/start-run.rst,sha256=VWvx2_ZKqkrwXlvWOWPBVu7YhQrfI4gd3puDMbQrmPM,2195
4480
+ awscli/examples/omics/start-run.rst,sha256=MC8Ul2UgTNyfmM2-PSvNVw2YiACBsXI_COhBWwAe8Jc,2050
4481
4481
  awscli/examples/omics/start-variant-import-job.rst,sha256=Va-4l5zKDeFHSC6C9JSmhbkXooINntA0mkuye1ZIwH4,675
4482
4482
  awscli/examples/omics/tag-resource.rst,sha256=538oJfOuURY5Zy0o2ffomlLs284cb54hBPv6Md9aQ3E,437
4483
4483
  awscli/examples/omics/untag-resource.rst,sha256=Fy9KmLe-gRomxDMkxSSMJjOkqV2RyYZe6_J8aor3jLY,414
4484
4484
  awscli/examples/omics/update-annotation-store.rst,sha256=H8pvm7yUmMFhb-PKE8RNDBoeWy61L_RBZ95iforfIZo,874
4485
4485
  awscli/examples/omics/update-run-group.rst,sha256=EhbNUzZGBik6fa2yeg2CQCg4g2IvpTdcQjlLJrmwHJc,634
4486
4486
  awscli/examples/omics/update-variant-store.rst,sha256=eMZ93GtGDCE2XEt5KPPDZn_RU8pjmL4NzSQcl8vligc,816
4487
- awscli/examples/omics/update-workflow.rst,sha256=vNl_V1npDa4BFAXtLAIQCr94KyZTguaa5lpVZEWWZPw,370
4487
+ awscli/examples/omics/update-workflow.rst,sha256=P1sAtAQlXLkI6Zt7XF9omIFCA42ILwqr-jPp6mP96YA,403
4488
4488
  awscli/examples/omics/upload-read-set-part.rst,sha256=E7vL-z76onopXlreWM17hFo1RLU5GWgHN9qwBcVXIHo,632
4489
4489
  awscli/examples/omics/wait.rst,sha256=whARZWtHOJbULMLWq0C6D33qGE-1FpaE9r1WQ4eD0pM,369
4490
4490
  awscli/examples/opsworks/assign-instance.rst,sha256=wsJm0fwTYS1SApYoo0nsiYmgXx2ivRqnx0PZJx9zhHQ,557
@@ -6164,13 +6164,13 @@ awscli/topics/return-codes.rst,sha256=d9lpNFZwD75IiYcDEADQzu-4QiR8P28UPHkrNwPV5J
6164
6164
  awscli/topics/s3-config.rst,sha256=5EIVd4ggLBHtzjtHFvQp9hY415yMGZiG7S_rO9qy2t0,11663
6165
6165
  awscli/topics/s3-faq.rst,sha256=9qO0HFI6F9hx1wVEUDl8Jy6yoCUd9zbtv-Z0Re4dsiw,2934
6166
6166
  awscli/topics/topic-tags.json,sha256=6lUSrs3FKCZNRSQMnjcXNgWyRNGjZIeur1988a4IO5o,1577
6167
- awscli-1.41.1.data/scripts/aws,sha256=r24FExgs0-JjILTQ3XZAqXBYE4SV6UMTtALkLGAj86g,805
6168
- awscli-1.41.1.data/scripts/aws.cmd,sha256=s46DkC6LNgX63CIkzxxbPnFMJ6DRDBkvc88GnWa8Pvg,1432
6169
- awscli-1.41.1.data/scripts/aws_bash_completer,sha256=RRpoEGJRagRzyHZKZZOwpltuVYv2EoiZsdXhmyWPZ54,204
6170
- awscli-1.41.1.data/scripts/aws_completer,sha256=oC9kuMDlWE47dWk_4xjPde2PQvN-M0vND0J4YSLabVQ,1126
6171
- awscli-1.41.1.data/scripts/aws_zsh_completer.sh,sha256=Qm6Z8ejNAMzpJjaT0pzqxbSDT2zxdmzVe5haRA7qLoc,1808
6172
- awscli-1.41.1.dist-info/LICENSE.txt,sha256=o5XhFlwu0OK_BBrijlKCRa7dQAm36UrUB3gCV_cEr8E,549
6173
- awscli-1.41.1.dist-info/METADATA,sha256=qYMhk-14NiHu-c5SZDVmrlwyVI6HMsW_U9SEh74W31Q,11104
6174
- awscli-1.41.1.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
6175
- awscli-1.41.1.dist-info/top_level.txt,sha256=vt9wXFr1_nGYK6abhJgt6zY3fULe4JSZedm_5XOM9S0,7
6176
- awscli-1.41.1.dist-info/RECORD,,
6167
+ awscli-1.41.3.data/scripts/aws,sha256=r24FExgs0-JjILTQ3XZAqXBYE4SV6UMTtALkLGAj86g,805
6168
+ awscli-1.41.3.data/scripts/aws.cmd,sha256=s46DkC6LNgX63CIkzxxbPnFMJ6DRDBkvc88GnWa8Pvg,1432
6169
+ awscli-1.41.3.data/scripts/aws_bash_completer,sha256=RRpoEGJRagRzyHZKZZOwpltuVYv2EoiZsdXhmyWPZ54,204
6170
+ awscli-1.41.3.data/scripts/aws_completer,sha256=oC9kuMDlWE47dWk_4xjPde2PQvN-M0vND0J4YSLabVQ,1126
6171
+ awscli-1.41.3.data/scripts/aws_zsh_completer.sh,sha256=Qm6Z8ejNAMzpJjaT0pzqxbSDT2zxdmzVe5haRA7qLoc,1808
6172
+ awscli-1.41.3.dist-info/LICENSE.txt,sha256=o5XhFlwu0OK_BBrijlKCRa7dQAm36UrUB3gCV_cEr8E,549
6173
+ awscli-1.41.3.dist-info/METADATA,sha256=yXai0gIBj_ex7yTEfaWhyLakI3tu1vvhxmqUAU5aksI,11104
6174
+ awscli-1.41.3.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
6175
+ awscli-1.41.3.dist-info/top_level.txt,sha256=vt9wXFr1_nGYK6abhJgt6zY3fULe4JSZedm_5XOM9S0,7
6176
+ awscli-1.41.3.dist-info/RECORD,,
File without changes