mypy-boto3-transfer 1.34.89__py3-none-any.whl → 1.35.0__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.
@@ -10,9 +10,9 @@ def print_info() -> None:
10
10
  Print package info to stdout.
11
11
  """
12
12
  print(
13
- "Type annotations for boto3.Transfer 1.34.89\n"
14
- "Version: 1.34.89\n"
15
- "Builder version: 7.23.2\n"
13
+ "Type annotations for boto3.Transfer 1.35.0\n"
14
+ "Version: 1.35.0\n"
15
+ "Builder version: 7.26.0\n"
16
16
  "Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer//\n"
17
17
  "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer\n"
18
18
  "Other services: https://pypi.org/project/boto3-stubs/\n"
@@ -24,7 +24,7 @@ def print_version() -> None:
24
24
  """
25
25
  Print package version to stdout.
26
26
  """
27
- print("1.34.89")
27
+ print("1.35.0")
28
28
 
29
29
 
30
30
  def main() -> None:
@@ -64,7 +64,7 @@ from .type_defs import (
64
64
  DescribeUserResponseTypeDef,
65
65
  DescribeWorkflowResponseTypeDef,
66
66
  EmptyResponseMetadataTypeDef,
67
- EndpointDetailsTypeDef,
67
+ EndpointDetailsUnionTypeDef,
68
68
  HomeDirectoryMapEntryTypeDef,
69
69
  IdentityProviderDetailsTypeDef,
70
70
  ImportCertificateResponseTypeDef,
@@ -82,10 +82,10 @@ from .type_defs import (
82
82
  ListTagsForResourceResponseTypeDef,
83
83
  ListUsersResponseTypeDef,
84
84
  ListWorkflowsResponseTypeDef,
85
- PosixProfileTypeDef,
86
- ProtocolDetailsTypeDef,
85
+ PosixProfileUnionTypeDef,
86
+ ProtocolDetailsUnionTypeDef,
87
87
  S3StorageOptionsTypeDef,
88
- SftpConnectorConfigTypeDef,
88
+ SftpConnectorConfigUnionTypeDef,
89
89
  StartDirectoryListingResponseTypeDef,
90
90
  StartFileTransferResponseTypeDef,
91
91
  TagTypeDef,
@@ -100,8 +100,8 @@ from .type_defs import (
100
100
  UpdateProfileResponseTypeDef,
101
101
  UpdateServerResponseTypeDef,
102
102
  UpdateUserResponseTypeDef,
103
- WorkflowDetailsTypeDef,
104
- WorkflowStepTypeDef,
103
+ WorkflowDetailsUnionTypeDef,
104
+ WorkflowStepUnionTypeDef,
105
105
  )
106
106
  from .waiter import ServerOfflineWaiter, ServerOnlineWaiter
107
107
 
@@ -177,7 +177,7 @@ class TransferClient(BaseClient):
177
177
  HomeDirectoryType: HomeDirectoryTypeType = ...,
178
178
  HomeDirectoryMappings: Sequence[HomeDirectoryMapEntryTypeDef] = ...,
179
179
  Policy: str = ...,
180
- PosixProfile: PosixProfileTypeDef = ...,
180
+ PosixProfile: PosixProfileUnionTypeDef = ...,
181
181
  ) -> CreateAccessResponseTypeDef:
182
182
  """
183
183
  Used by administrators to choose which groups in the directory should have
@@ -215,7 +215,7 @@ class TransferClient(BaseClient):
215
215
  As2Config: As2ConnectorConfigTypeDef = ...,
216
216
  LoggingRole: str = ...,
217
217
  Tags: Sequence[TagTypeDef] = ...,
218
- SftpConfig: SftpConnectorConfigTypeDef = ...,
218
+ SftpConfig: SftpConnectorConfigUnionTypeDef = ...,
219
219
  SecurityPolicyName: str = ...,
220
220
  ) -> CreateConnectorResponseTypeDef:
221
221
  """
@@ -247,7 +247,7 @@ class TransferClient(BaseClient):
247
247
  *,
248
248
  Certificate: str = ...,
249
249
  Domain: DomainType = ...,
250
- EndpointDetails: EndpointDetailsTypeDef = ...,
250
+ EndpointDetails: EndpointDetailsUnionTypeDef = ...,
251
251
  EndpointType: EndpointTypeType = ...,
252
252
  HostKey: str = ...,
253
253
  IdentityProviderDetails: IdentityProviderDetailsTypeDef = ...,
@@ -256,10 +256,10 @@ class TransferClient(BaseClient):
256
256
  PostAuthenticationLoginBanner: str = ...,
257
257
  PreAuthenticationLoginBanner: str = ...,
258
258
  Protocols: Sequence[ProtocolType] = ...,
259
- ProtocolDetails: ProtocolDetailsTypeDef = ...,
259
+ ProtocolDetails: ProtocolDetailsUnionTypeDef = ...,
260
260
  SecurityPolicyName: str = ...,
261
261
  Tags: Sequence[TagTypeDef] = ...,
262
- WorkflowDetails: WorkflowDetailsTypeDef = ...,
262
+ WorkflowDetails: WorkflowDetailsUnionTypeDef = ...,
263
263
  StructuredLogDestinations: Sequence[str] = ...,
264
264
  S3StorageOptions: S3StorageOptionsTypeDef = ...,
265
265
  ) -> CreateServerResponseTypeDef:
@@ -282,7 +282,7 @@ class TransferClient(BaseClient):
282
282
  HomeDirectoryType: HomeDirectoryTypeType = ...,
283
283
  HomeDirectoryMappings: Sequence[HomeDirectoryMapEntryTypeDef] = ...,
284
284
  Policy: str = ...,
285
- PosixProfile: PosixProfileTypeDef = ...,
285
+ PosixProfile: PosixProfileUnionTypeDef = ...,
286
286
  SshPublicKeyBody: str = ...,
287
287
  Tags: Sequence[TagTypeDef] = ...,
288
288
  ) -> CreateUserResponseTypeDef:
@@ -298,9 +298,9 @@ class TransferClient(BaseClient):
298
298
  def create_workflow(
299
299
  self,
300
300
  *,
301
- Steps: Sequence[WorkflowStepTypeDef],
301
+ Steps: Sequence[WorkflowStepUnionTypeDef],
302
302
  Description: str = ...,
303
- OnExceptionSteps: Sequence[WorkflowStepTypeDef] = ...,
303
+ OnExceptionSteps: Sequence[WorkflowStepUnionTypeDef] = ...,
304
304
  Tags: Sequence[TagTypeDef] = ...,
305
305
  ) -> CreateWorkflowResponseTypeDef:
306
306
  """
@@ -814,7 +814,7 @@ class TransferClient(BaseClient):
814
814
  HomeDirectoryType: HomeDirectoryTypeType = ...,
815
815
  HomeDirectoryMappings: Sequence[HomeDirectoryMapEntryTypeDef] = ...,
816
816
  Policy: str = ...,
817
- PosixProfile: PosixProfileTypeDef = ...,
817
+ PosixProfile: PosixProfileUnionTypeDef = ...,
818
818
  Role: str = ...,
819
819
  ) -> UpdateAccessResponseTypeDef:
820
820
  """
@@ -868,7 +868,7 @@ class TransferClient(BaseClient):
868
868
  As2Config: As2ConnectorConfigTypeDef = ...,
869
869
  AccessRole: str = ...,
870
870
  LoggingRole: str = ...,
871
- SftpConfig: SftpConnectorConfigTypeDef = ...,
871
+ SftpConfig: SftpConnectorConfigUnionTypeDef = ...,
872
872
  SecurityPolicyName: str = ...,
873
873
  ) -> UpdateConnectorResponseTypeDef:
874
874
  """
@@ -905,8 +905,8 @@ class TransferClient(BaseClient):
905
905
  *,
906
906
  ServerId: str,
907
907
  Certificate: str = ...,
908
- ProtocolDetails: ProtocolDetailsTypeDef = ...,
909
- EndpointDetails: EndpointDetailsTypeDef = ...,
908
+ ProtocolDetails: ProtocolDetailsUnionTypeDef = ...,
909
+ EndpointDetails: EndpointDetailsUnionTypeDef = ...,
910
910
  EndpointType: EndpointTypeType = ...,
911
911
  HostKey: str = ...,
912
912
  IdentityProviderDetails: IdentityProviderDetailsTypeDef = ...,
@@ -915,7 +915,7 @@ class TransferClient(BaseClient):
915
915
  PreAuthenticationLoginBanner: str = ...,
916
916
  Protocols: Sequence[ProtocolType] = ...,
917
917
  SecurityPolicyName: str = ...,
918
- WorkflowDetails: WorkflowDetailsTypeDef = ...,
918
+ WorkflowDetails: WorkflowDetailsUnionTypeDef = ...,
919
919
  StructuredLogDestinations: Sequence[str] = ...,
920
920
  S3StorageOptions: S3StorageOptionsTypeDef = ...,
921
921
  ) -> UpdateServerResponseTypeDef:
@@ -937,7 +937,7 @@ class TransferClient(BaseClient):
937
937
  HomeDirectoryType: HomeDirectoryTypeType = ...,
938
938
  HomeDirectoryMappings: Sequence[HomeDirectoryMapEntryTypeDef] = ...,
939
939
  Policy: str = ...,
940
- PosixProfile: PosixProfileTypeDef = ...,
940
+ PosixProfile: PosixProfileUnionTypeDef = ...,
941
941
  Role: str = ...,
942
942
  ) -> UpdateUserResponseTypeDef:
943
943
  """
@@ -64,7 +64,7 @@ from .type_defs import (
64
64
  DescribeUserResponseTypeDef,
65
65
  DescribeWorkflowResponseTypeDef,
66
66
  EmptyResponseMetadataTypeDef,
67
- EndpointDetailsTypeDef,
67
+ EndpointDetailsUnionTypeDef,
68
68
  HomeDirectoryMapEntryTypeDef,
69
69
  IdentityProviderDetailsTypeDef,
70
70
  ImportCertificateResponseTypeDef,
@@ -82,10 +82,10 @@ from .type_defs import (
82
82
  ListTagsForResourceResponseTypeDef,
83
83
  ListUsersResponseTypeDef,
84
84
  ListWorkflowsResponseTypeDef,
85
- PosixProfileTypeDef,
86
- ProtocolDetailsTypeDef,
85
+ PosixProfileUnionTypeDef,
86
+ ProtocolDetailsUnionTypeDef,
87
87
  S3StorageOptionsTypeDef,
88
- SftpConnectorConfigTypeDef,
88
+ SftpConnectorConfigUnionTypeDef,
89
89
  StartDirectoryListingResponseTypeDef,
90
90
  StartFileTransferResponseTypeDef,
91
91
  TagTypeDef,
@@ -100,8 +100,8 @@ from .type_defs import (
100
100
  UpdateProfileResponseTypeDef,
101
101
  UpdateServerResponseTypeDef,
102
102
  UpdateUserResponseTypeDef,
103
- WorkflowDetailsTypeDef,
104
- WorkflowStepTypeDef,
103
+ WorkflowDetailsUnionTypeDef,
104
+ WorkflowStepUnionTypeDef,
105
105
  )
106
106
  from .waiter import ServerOfflineWaiter, ServerOnlineWaiter
107
107
 
@@ -174,7 +174,7 @@ class TransferClient(BaseClient):
174
174
  HomeDirectoryType: HomeDirectoryTypeType = ...,
175
175
  HomeDirectoryMappings: Sequence[HomeDirectoryMapEntryTypeDef] = ...,
176
176
  Policy: str = ...,
177
- PosixProfile: PosixProfileTypeDef = ...,
177
+ PosixProfile: PosixProfileUnionTypeDef = ...,
178
178
  ) -> CreateAccessResponseTypeDef:
179
179
  """
180
180
  Used by administrators to choose which groups in the directory should have
@@ -212,7 +212,7 @@ class TransferClient(BaseClient):
212
212
  As2Config: As2ConnectorConfigTypeDef = ...,
213
213
  LoggingRole: str = ...,
214
214
  Tags: Sequence[TagTypeDef] = ...,
215
- SftpConfig: SftpConnectorConfigTypeDef = ...,
215
+ SftpConfig: SftpConnectorConfigUnionTypeDef = ...,
216
216
  SecurityPolicyName: str = ...,
217
217
  ) -> CreateConnectorResponseTypeDef:
218
218
  """
@@ -244,7 +244,7 @@ class TransferClient(BaseClient):
244
244
  *,
245
245
  Certificate: str = ...,
246
246
  Domain: DomainType = ...,
247
- EndpointDetails: EndpointDetailsTypeDef = ...,
247
+ EndpointDetails: EndpointDetailsUnionTypeDef = ...,
248
248
  EndpointType: EndpointTypeType = ...,
249
249
  HostKey: str = ...,
250
250
  IdentityProviderDetails: IdentityProviderDetailsTypeDef = ...,
@@ -253,10 +253,10 @@ class TransferClient(BaseClient):
253
253
  PostAuthenticationLoginBanner: str = ...,
254
254
  PreAuthenticationLoginBanner: str = ...,
255
255
  Protocols: Sequence[ProtocolType] = ...,
256
- ProtocolDetails: ProtocolDetailsTypeDef = ...,
256
+ ProtocolDetails: ProtocolDetailsUnionTypeDef = ...,
257
257
  SecurityPolicyName: str = ...,
258
258
  Tags: Sequence[TagTypeDef] = ...,
259
- WorkflowDetails: WorkflowDetailsTypeDef = ...,
259
+ WorkflowDetails: WorkflowDetailsUnionTypeDef = ...,
260
260
  StructuredLogDestinations: Sequence[str] = ...,
261
261
  S3StorageOptions: S3StorageOptionsTypeDef = ...,
262
262
  ) -> CreateServerResponseTypeDef:
@@ -279,7 +279,7 @@ class TransferClient(BaseClient):
279
279
  HomeDirectoryType: HomeDirectoryTypeType = ...,
280
280
  HomeDirectoryMappings: Sequence[HomeDirectoryMapEntryTypeDef] = ...,
281
281
  Policy: str = ...,
282
- PosixProfile: PosixProfileTypeDef = ...,
282
+ PosixProfile: PosixProfileUnionTypeDef = ...,
283
283
  SshPublicKeyBody: str = ...,
284
284
  Tags: Sequence[TagTypeDef] = ...,
285
285
  ) -> CreateUserResponseTypeDef:
@@ -295,9 +295,9 @@ class TransferClient(BaseClient):
295
295
  def create_workflow(
296
296
  self,
297
297
  *,
298
- Steps: Sequence[WorkflowStepTypeDef],
298
+ Steps: Sequence[WorkflowStepUnionTypeDef],
299
299
  Description: str = ...,
300
- OnExceptionSteps: Sequence[WorkflowStepTypeDef] = ...,
300
+ OnExceptionSteps: Sequence[WorkflowStepUnionTypeDef] = ...,
301
301
  Tags: Sequence[TagTypeDef] = ...,
302
302
  ) -> CreateWorkflowResponseTypeDef:
303
303
  """
@@ -811,7 +811,7 @@ class TransferClient(BaseClient):
811
811
  HomeDirectoryType: HomeDirectoryTypeType = ...,
812
812
  HomeDirectoryMappings: Sequence[HomeDirectoryMapEntryTypeDef] = ...,
813
813
  Policy: str = ...,
814
- PosixProfile: PosixProfileTypeDef = ...,
814
+ PosixProfile: PosixProfileUnionTypeDef = ...,
815
815
  Role: str = ...,
816
816
  ) -> UpdateAccessResponseTypeDef:
817
817
  """
@@ -865,7 +865,7 @@ class TransferClient(BaseClient):
865
865
  As2Config: As2ConnectorConfigTypeDef = ...,
866
866
  AccessRole: str = ...,
867
867
  LoggingRole: str = ...,
868
- SftpConfig: SftpConnectorConfigTypeDef = ...,
868
+ SftpConfig: SftpConnectorConfigUnionTypeDef = ...,
869
869
  SecurityPolicyName: str = ...,
870
870
  ) -> UpdateConnectorResponseTypeDef:
871
871
  """
@@ -902,8 +902,8 @@ class TransferClient(BaseClient):
902
902
  *,
903
903
  ServerId: str,
904
904
  Certificate: str = ...,
905
- ProtocolDetails: ProtocolDetailsTypeDef = ...,
906
- EndpointDetails: EndpointDetailsTypeDef = ...,
905
+ ProtocolDetails: ProtocolDetailsUnionTypeDef = ...,
906
+ EndpointDetails: EndpointDetailsUnionTypeDef = ...,
907
907
  EndpointType: EndpointTypeType = ...,
908
908
  HostKey: str = ...,
909
909
  IdentityProviderDetails: IdentityProviderDetailsTypeDef = ...,
@@ -912,7 +912,7 @@ class TransferClient(BaseClient):
912
912
  PreAuthenticationLoginBanner: str = ...,
913
913
  Protocols: Sequence[ProtocolType] = ...,
914
914
  SecurityPolicyName: str = ...,
915
- WorkflowDetails: WorkflowDetailsTypeDef = ...,
915
+ WorkflowDetails: WorkflowDetailsUnionTypeDef = ...,
916
916
  StructuredLogDestinations: Sequence[str] = ...,
917
917
  S3StorageOptions: S3StorageOptionsTypeDef = ...,
918
918
  ) -> UpdateServerResponseTypeDef:
@@ -934,7 +934,7 @@ class TransferClient(BaseClient):
934
934
  HomeDirectoryType: HomeDirectoryTypeType = ...,
935
935
  HomeDirectoryMappings: Sequence[HomeDirectoryMapEntryTypeDef] = ...,
936
936
  Policy: str = ...,
937
- PosixProfile: PosixProfileTypeDef = ...,
937
+ PosixProfile: PosixProfileUnionTypeDef = ...,
938
938
  Role: str = ...,
939
939
  ) -> UpdateUserResponseTypeDef:
940
940
  """
@@ -133,7 +133,6 @@ ServiceName = Literal[
133
133
  "account",
134
134
  "acm",
135
135
  "acm-pca",
136
- "alexaforbusiness",
137
136
  "amp",
138
137
  "amplify",
139
138
  "amplifybackend",
@@ -148,11 +147,13 @@ ServiceName = Literal[
148
147
  "appintegrations",
149
148
  "application-autoscaling",
150
149
  "application-insights",
150
+ "application-signals",
151
151
  "applicationcostprofiler",
152
152
  "appmesh",
153
153
  "apprunner",
154
154
  "appstream",
155
155
  "appsync",
156
+ "apptest",
156
157
  "arc-zonal-shift",
157
158
  "artifact",
158
159
  "athena",
@@ -162,7 +163,6 @@ ServiceName = Literal[
162
163
  "b2bi",
163
164
  "backup",
164
165
  "backup-gateway",
165
- "backupstorage",
166
166
  "batch",
167
167
  "bcm-data-exports",
168
168
  "bedrock",
@@ -288,7 +288,6 @@ ServiceName = Literal[
288
288
  "guardduty",
289
289
  "health",
290
290
  "healthlake",
291
- "honeycode",
292
291
  "iam",
293
292
  "identitystore",
294
293
  "imagebuilder",
@@ -349,6 +348,7 @@ ServiceName = Literal[
349
348
  "m2",
350
349
  "machinelearning",
351
350
  "macie2",
351
+ "mailmanager",
352
352
  "managedblockchain",
353
353
  "managedblockchain-query",
354
354
  "marketplace-agreement",
@@ -374,7 +374,6 @@ ServiceName = Literal[
374
374
  "migrationhub-config",
375
375
  "migrationhuborchestrator",
376
376
  "migrationhubstrategy",
377
- "mobile",
378
377
  "mq",
379
378
  "mturk",
380
379
  "mwaa",
@@ -398,6 +397,7 @@ ServiceName = Literal[
398
397
  "payment-cryptography",
399
398
  "payment-cryptography-data",
400
399
  "pca-connector-ad",
400
+ "pca-connector-scep",
401
401
  "personalize",
402
402
  "personalize-events",
403
403
  "personalize-runtime",
@@ -411,6 +411,7 @@ ServiceName = Literal[
411
411
  "pricing",
412
412
  "privatenetworks",
413
413
  "proton",
414
+ "qapps",
414
415
  "qbusiness",
415
416
  "qconnect",
416
417
  "qldb",
@@ -475,6 +476,7 @@ ServiceName = Literal[
475
476
  "ssm",
476
477
  "ssm-contacts",
477
478
  "ssm-incidents",
479
+ "ssm-quicksetup",
478
480
  "ssm-sap",
479
481
  "sso",
480
482
  "sso-admin",
@@ -487,6 +489,7 @@ ServiceName = Literal[
487
489
  "support-app",
488
490
  "swf",
489
491
  "synthetics",
492
+ "taxsettings",
490
493
  "textract",
491
494
  "timestream-influxdb",
492
495
  "timestream-query",
@@ -552,6 +555,7 @@ RegionName = Literal[
552
555
  "ap-southeast-3",
553
556
  "ap-southeast-4",
554
557
  "ca-central-1",
558
+ "ca-west-1",
555
559
  "eu-central-1",
556
560
  "eu-central-2",
557
561
  "eu-north-1",
@@ -133,7 +133,6 @@ ServiceName = Literal[
133
133
  "account",
134
134
  "acm",
135
135
  "acm-pca",
136
- "alexaforbusiness",
137
136
  "amp",
138
137
  "amplify",
139
138
  "amplifybackend",
@@ -148,11 +147,13 @@ ServiceName = Literal[
148
147
  "appintegrations",
149
148
  "application-autoscaling",
150
149
  "application-insights",
150
+ "application-signals",
151
151
  "applicationcostprofiler",
152
152
  "appmesh",
153
153
  "apprunner",
154
154
  "appstream",
155
155
  "appsync",
156
+ "apptest",
156
157
  "arc-zonal-shift",
157
158
  "artifact",
158
159
  "athena",
@@ -162,7 +163,6 @@ ServiceName = Literal[
162
163
  "b2bi",
163
164
  "backup",
164
165
  "backup-gateway",
165
- "backupstorage",
166
166
  "batch",
167
167
  "bcm-data-exports",
168
168
  "bedrock",
@@ -288,7 +288,6 @@ ServiceName = Literal[
288
288
  "guardduty",
289
289
  "health",
290
290
  "healthlake",
291
- "honeycode",
292
291
  "iam",
293
292
  "identitystore",
294
293
  "imagebuilder",
@@ -349,6 +348,7 @@ ServiceName = Literal[
349
348
  "m2",
350
349
  "machinelearning",
351
350
  "macie2",
351
+ "mailmanager",
352
352
  "managedblockchain",
353
353
  "managedblockchain-query",
354
354
  "marketplace-agreement",
@@ -374,7 +374,6 @@ ServiceName = Literal[
374
374
  "migrationhub-config",
375
375
  "migrationhuborchestrator",
376
376
  "migrationhubstrategy",
377
- "mobile",
378
377
  "mq",
379
378
  "mturk",
380
379
  "mwaa",
@@ -398,6 +397,7 @@ ServiceName = Literal[
398
397
  "payment-cryptography",
399
398
  "payment-cryptography-data",
400
399
  "pca-connector-ad",
400
+ "pca-connector-scep",
401
401
  "personalize",
402
402
  "personalize-events",
403
403
  "personalize-runtime",
@@ -411,6 +411,7 @@ ServiceName = Literal[
411
411
  "pricing",
412
412
  "privatenetworks",
413
413
  "proton",
414
+ "qapps",
414
415
  "qbusiness",
415
416
  "qconnect",
416
417
  "qldb",
@@ -475,6 +476,7 @@ ServiceName = Literal[
475
476
  "ssm",
476
477
  "ssm-contacts",
477
478
  "ssm-incidents",
479
+ "ssm-quicksetup",
478
480
  "ssm-sap",
479
481
  "sso",
480
482
  "sso-admin",
@@ -487,6 +489,7 @@ ServiceName = Literal[
487
489
  "support-app",
488
490
  "swf",
489
491
  "synthetics",
492
+ "taxsettings",
490
493
  "textract",
491
494
  "timestream-influxdb",
492
495
  "timestream-query",
@@ -552,6 +555,7 @@ RegionName = Literal[
552
555
  "ap-southeast-3",
553
556
  "ap-southeast-4",
554
557
  "ca-central-1",
558
+ "ca-west-1",
555
559
  "eu-central-1",
556
560
  "eu-central-2",
557
561
  "eu-north-1",