alibabacloud-fc20230330 4.1.0__py3-none-any.whl → 4.1.1__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.
- alibabacloud_fc20230330/__init__.py +1 -1
- alibabacloud_fc20230330/client.py +1456 -0
- alibabacloud_fc20230330/models.py +115 -0
- {alibabacloud_fc20230330-4.1.0.dist-info → alibabacloud_fc20230330-4.1.1.dist-info}/METADATA +3 -3
- alibabacloud_fc20230330-4.1.1.dist-info/RECORD +8 -0
- alibabacloud_fc20230330-4.1.0.dist-info/RECORD +0 -8
- {alibabacloud_fc20230330-4.1.0.dist-info → alibabacloud_fc20230330-4.1.1.dist-info}/LICENSE +0 -0
- {alibabacloud_fc20230330-4.1.0.dist-info → alibabacloud_fc20230330-4.1.1.dist-info}/WHEEL +0 -0
- {alibabacloud_fc20230330-4.1.0.dist-info → alibabacloud_fc20230330-4.1.1.dist-info}/top_level.txt +0 -0
@@ -500,8 +500,11 @@ class CertConfig(TeaModel):
|
|
500
500
|
certificate: str = None,
|
501
501
|
private_key: str = None,
|
502
502
|
):
|
503
|
+
# This parameter is required.
|
503
504
|
self.cert_name = cert_name
|
505
|
+
# This parameter is required.
|
504
506
|
self.certificate = certificate
|
507
|
+
# This parameter is required.
|
505
508
|
self.private_key = private_key
|
506
509
|
|
507
510
|
def validate(self):
|
@@ -574,8 +577,10 @@ class CreateAliasInput(TeaModel):
|
|
574
577
|
version_id: str = None,
|
575
578
|
):
|
576
579
|
self.additional_version_weight = additional_version_weight
|
580
|
+
# This parameter is required.
|
577
581
|
self.alias_name = alias_name
|
578
582
|
self.description = description
|
583
|
+
# This parameter is required.
|
579
584
|
self.version_id = version_id
|
580
585
|
|
581
586
|
def validate(self):
|
@@ -616,7 +621,9 @@ class EqualRule(TeaModel):
|
|
616
621
|
match: str = None,
|
617
622
|
replacement: str = None,
|
618
623
|
):
|
624
|
+
# This parameter is required.
|
619
625
|
self.match = match
|
626
|
+
# This parameter is required.
|
620
627
|
self.replacement = replacement
|
621
628
|
|
622
629
|
def validate(self):
|
@@ -649,7 +656,9 @@ class RegexRule(TeaModel):
|
|
649
656
|
match: str = None,
|
650
657
|
replacement: str = None,
|
651
658
|
):
|
659
|
+
# This parameter is required.
|
652
660
|
self.match = match
|
661
|
+
# This parameter is required.
|
653
662
|
self.replacement = replacement
|
654
663
|
|
655
664
|
def validate(self):
|
@@ -682,7 +691,9 @@ class WildcardRule(TeaModel):
|
|
682
691
|
match: str = None,
|
683
692
|
replacement: str = None,
|
684
693
|
):
|
694
|
+
# This parameter is required.
|
685
695
|
self.match = match
|
696
|
+
# This parameter is required.
|
686
697
|
self.replacement = replacement
|
687
698
|
|
688
699
|
def validate(self):
|
@@ -783,8 +794,10 @@ class PathConfig(TeaModel):
|
|
783
794
|
qualifier: str = None,
|
784
795
|
rewrite_config: RewriteConfig = None,
|
785
796
|
):
|
797
|
+
# This parameter is required.
|
786
798
|
self.function_name = function_name
|
787
799
|
self.methods = methods
|
800
|
+
# This parameter is required.
|
788
801
|
self.path = path
|
789
802
|
self.qualifier = qualifier
|
790
803
|
self.rewrite_config = rewrite_config
|
@@ -869,8 +882,10 @@ class TLSConfig(TeaModel):
|
|
869
882
|
max_version: str = None,
|
870
883
|
min_version: str = None,
|
871
884
|
):
|
885
|
+
# This parameter is required.
|
872
886
|
self.cipher_suites = cipher_suites
|
873
887
|
self.max_version = max_version
|
888
|
+
# This parameter is required.
|
874
889
|
self.min_version = min_version
|
875
890
|
|
876
891
|
def validate(self):
|
@@ -941,6 +956,7 @@ class CreateCustomDomainInput(TeaModel):
|
|
941
956
|
):
|
942
957
|
self.auth_config = auth_config
|
943
958
|
self.cert_config = cert_config
|
959
|
+
# This parameter is required.
|
944
960
|
self.domain_name = domain_name
|
945
961
|
self.protocol = protocol
|
946
962
|
self.route_config = route_config
|
@@ -1749,8 +1765,10 @@ class CreateFunctionInput(TeaModel):
|
|
1749
1765
|
self.description = description
|
1750
1766
|
self.disk_size = disk_size
|
1751
1767
|
self.environment_variables = environment_variables
|
1768
|
+
# This parameter is required.
|
1752
1769
|
self.function_name = function_name
|
1753
1770
|
self.gpu_config = gpu_config
|
1771
|
+
# This parameter is required.
|
1754
1772
|
self.handler = handler
|
1755
1773
|
self.instance_concurrency = instance_concurrency
|
1756
1774
|
self.instance_lifecycle_config = instance_lifecycle_config
|
@@ -1761,6 +1779,7 @@ class CreateFunctionInput(TeaModel):
|
|
1761
1779
|
self.nas_config = nas_config
|
1762
1780
|
self.oss_mount_config = oss_mount_config
|
1763
1781
|
self.role = role
|
1782
|
+
# This parameter is required.
|
1764
1783
|
self.runtime = runtime
|
1765
1784
|
self.timeout = timeout
|
1766
1785
|
self.tracing_config = tracing_config
|
@@ -1972,8 +1991,11 @@ class CreateTriggerInput(TeaModel):
|
|
1972
1991
|
self.invocation_role = invocation_role
|
1973
1992
|
self.qualifier = qualifier
|
1974
1993
|
self.source_arn = source_arn
|
1994
|
+
# This parameter is required.
|
1975
1995
|
self.trigger_config = trigger_config
|
1996
|
+
# This parameter is required.
|
1976
1997
|
self.trigger_name = trigger_name
|
1998
|
+
# This parameter is required.
|
1977
1999
|
self.trigger_type = trigger_type
|
1978
2000
|
|
1979
2001
|
def validate(self):
|
@@ -2025,6 +2047,7 @@ class CreateVpcBindingInput(TeaModel):
|
|
2025
2047
|
self,
|
2026
2048
|
vpc_id: str = None,
|
2027
2049
|
):
|
2050
|
+
# This parameter is required.
|
2028
2051
|
self.vpc_id = vpc_id
|
2029
2052
|
|
2030
2053
|
def validate(self):
|
@@ -3534,6 +3557,7 @@ class Layer(TeaModel):
|
|
3534
3557
|
self.compatible_runtime = compatible_runtime
|
3535
3558
|
self.create_time = create_time
|
3536
3559
|
self.description = description
|
3560
|
+
# This parameter is required.
|
3537
3561
|
self.layer_name = layer_name
|
3538
3562
|
self.layer_version_arn = layer_version_arn
|
3539
3563
|
self.license = license
|
@@ -3974,9 +3998,12 @@ class ScheduledAction(TeaModel):
|
|
3974
3998
|
target: int = None,
|
3975
3999
|
):
|
3976
4000
|
self.end_time = end_time
|
4001
|
+
# This parameter is required.
|
3977
4002
|
self.name = name
|
4003
|
+
# This parameter is required.
|
3978
4004
|
self.schedule_expression = schedule_expression
|
3979
4005
|
self.start_time = start_time
|
4006
|
+
# This parameter is required.
|
3980
4007
|
self.target = target
|
3981
4008
|
|
3982
4009
|
def validate(self):
|
@@ -4027,10 +4054,15 @@ class TargetTrackingPolicy(TeaModel):
|
|
4027
4054
|
start_time: str = None,
|
4028
4055
|
):
|
4029
4056
|
self.end_time = end_time
|
4057
|
+
# This parameter is required.
|
4030
4058
|
self.max_capacity = max_capacity
|
4059
|
+
# This parameter is required.
|
4031
4060
|
self.metric_target = metric_target
|
4061
|
+
# This parameter is required.
|
4032
4062
|
self.metric_type = metric_type
|
4063
|
+
# This parameter is required.
|
4033
4064
|
self.min_capacity = min_capacity
|
4065
|
+
# This parameter is required.
|
4034
4066
|
self.name = name
|
4035
4067
|
self.start_time = start_time
|
4036
4068
|
|
@@ -4818,6 +4850,7 @@ class PutConcurrencyInput(TeaModel):
|
|
4818
4850
|
self,
|
4819
4851
|
reserved_concurrency: int = None,
|
4820
4852
|
):
|
4853
|
+
# This parameter is required.
|
4821
4854
|
self.reserved_concurrency = reserved_concurrency
|
4822
4855
|
|
4823
4856
|
def validate(self):
|
@@ -4850,6 +4883,7 @@ class PutProvisionConfigInput(TeaModel):
|
|
4850
4883
|
):
|
4851
4884
|
self.always_allocate_cpu = always_allocate_cpu
|
4852
4885
|
self.scheduled_actions = scheduled_actions
|
4886
|
+
# This parameter is required.
|
4853
4887
|
self.target = target
|
4854
4888
|
self.target_tracking_policies = target_tracking_policies
|
4855
4889
|
|
@@ -5066,7 +5100,9 @@ class TagResourceInput(TeaModel):
|
|
5066
5100
|
resource_arn: str = None,
|
5067
5101
|
tags: Dict[str, str] = None,
|
5068
5102
|
):
|
5103
|
+
# This parameter is required.
|
5069
5104
|
self.resource_arn = resource_arn
|
5105
|
+
# This parameter is required.
|
5070
5106
|
self.tags = tags
|
5071
5107
|
|
5072
5108
|
def validate(self):
|
@@ -5100,8 +5136,10 @@ class TagResourcesInput(TeaModel):
|
|
5100
5136
|
resource_type: str = None,
|
5101
5137
|
tag: List[Tag] = None,
|
5102
5138
|
):
|
5139
|
+
# This parameter is required.
|
5103
5140
|
self.resource_id = resource_id
|
5104
5141
|
self.resource_type = resource_type
|
5142
|
+
# This parameter is required.
|
5105
5143
|
self.tag = tag
|
5106
5144
|
|
5107
5145
|
def validate(self):
|
@@ -5531,6 +5569,8 @@ class CreateAliasRequest(TeaModel):
|
|
5531
5569
|
body: CreateAliasInput = None,
|
5532
5570
|
):
|
5533
5571
|
# The request parameters for creating an alias.
|
5572
|
+
#
|
5573
|
+
# This parameter is required.
|
5534
5574
|
self.body = body
|
5535
5575
|
|
5536
5576
|
def validate(self):
|
@@ -5602,6 +5642,8 @@ class CreateCustomDomainRequest(TeaModel):
|
|
5602
5642
|
body: CreateCustomDomainInput = None,
|
5603
5643
|
):
|
5604
5644
|
# The information about the custom domain name.
|
5645
|
+
#
|
5646
|
+
# This parameter is required.
|
5605
5647
|
self.body = body
|
5606
5648
|
|
5607
5649
|
def validate(self):
|
@@ -5673,6 +5715,8 @@ class CreateFunctionRequest(TeaModel):
|
|
5673
5715
|
body: CreateFunctionInput = None,
|
5674
5716
|
):
|
5675
5717
|
# The information about function configurations.
|
5718
|
+
#
|
5719
|
+
# This parameter is required.
|
5676
5720
|
self.body = body
|
5677
5721
|
|
5678
5722
|
def validate(self):
|
@@ -5744,6 +5788,8 @@ class CreateLayerVersionRequest(TeaModel):
|
|
5744
5788
|
body: CreateLayerVersionInput = None,
|
5745
5789
|
):
|
5746
5790
|
# The information about layer configurations.
|
5791
|
+
#
|
5792
|
+
# This parameter is required.
|
5747
5793
|
self.body = body
|
5748
5794
|
|
5749
5795
|
def validate(self):
|
@@ -5815,6 +5861,8 @@ class CreateTriggerRequest(TeaModel):
|
|
5815
5861
|
body: CreateTriggerInput = None,
|
5816
5862
|
):
|
5817
5863
|
# The trigger configurations.
|
5864
|
+
#
|
5865
|
+
# This parameter is required.
|
5818
5866
|
self.body = body
|
5819
5867
|
|
5820
5868
|
def validate(self):
|
@@ -5886,6 +5934,8 @@ class CreateVpcBindingRequest(TeaModel):
|
|
5886
5934
|
body: CreateVpcBindingInput = None,
|
5887
5935
|
):
|
5888
5936
|
# The configurations of the virtual private cloud (VPC) binding.
|
5937
|
+
#
|
5938
|
+
# This parameter is required.
|
5889
5939
|
self.body = body
|
5890
5940
|
|
5891
5941
|
def validate(self):
|
@@ -6444,6 +6494,7 @@ class GetAsyncTaskRequest(TeaModel):
|
|
6444
6494
|
self,
|
6445
6495
|
qualifier: str = None,
|
6446
6496
|
):
|
6497
|
+
# The function version or alias.
|
6447
6498
|
self.qualifier = qualifier
|
6448
6499
|
|
6449
6500
|
def validate(self):
|
@@ -7219,14 +7270,41 @@ class ListAsyncTasksRequest(TeaModel):
|
|
7219
7270
|
started_time_end: int = None,
|
7220
7271
|
status: str = None,
|
7221
7272
|
):
|
7273
|
+
# Specifies whether to return input parameters of the asynchronous tasks. Valid values:
|
7274
|
+
#
|
7275
|
+
# * true: returns the `invocationPayload` parameter in the response.
|
7276
|
+
# * false: does not return the `invocationPayload` parameter in the response.
|
7277
|
+
#
|
7278
|
+
# > The `invocationPayload` parameter indicates the input parameters of an asynchronous task.
|
7222
7279
|
self.include_payload = include_payload
|
7280
|
+
# The number of asynchronous tasks to return. Valid values: [1,100]. Default value: 50.
|
7223
7281
|
self.limit = limit
|
7282
|
+
# The pagination token that is used in the next request to retrieve a new page of results. You do not need to specify this parameter for the first request. You must specify the token that is obtained from the previous query as the value of NextToken.
|
7224
7283
|
self.next_token = next_token
|
7284
|
+
# The ID prefix of asynchronous tasks. If this parameter is specified, a list of asynchronous tasks whose IDs match the prefix is returned.
|
7225
7285
|
self.prefix = prefix
|
7286
|
+
# The function version or alias.
|
7226
7287
|
self.qualifier = qualifier
|
7288
|
+
# The order in which the returned asynchronous tasks are sorted.
|
7289
|
+
#
|
7290
|
+
# * asc: in ascending order.
|
7291
|
+
# * desc: in descending order.
|
7227
7292
|
self.sort_order_by_time = sort_order_by_time
|
7293
|
+
# The start time of the period in which the asynchronous tasks are launched.
|
7228
7294
|
self.started_time_begin = started_time_begin
|
7295
|
+
# The end time of the period in which the asynchronous tasks are launched.
|
7229
7296
|
self.started_time_end = started_time_end
|
7297
|
+
# The state of asynchronous tasks. The following items list the states of an asynchronous task:
|
7298
|
+
#
|
7299
|
+
# * Enqueued: The asynchronous invocation is enqueued and is waiting to be executed.
|
7300
|
+
# * Succeeded: The invocation is successful.
|
7301
|
+
# * Failed: The invocation fails.
|
7302
|
+
# * Running: The invocation is being executed.
|
7303
|
+
# * Stopped: The invocation is terminated.
|
7304
|
+
# * Stopping: The invocation is being terminated.
|
7305
|
+
# * Invalid: The invocation is invalid and not executed due to specific reasons. For example, the function is deleted.
|
7306
|
+
# * Expired: The maximum validity period of messages is specified for asynchronous invocation. The invocation is discarded and not executed because the specified maximum validity period has elapsed.
|
7307
|
+
# * Retrying: The asynchronous invocation is being retried due to an execution error.
|
7230
7308
|
self.status = status
|
7231
7309
|
|
7232
7310
|
def validate(self):
|
@@ -8041,6 +8119,8 @@ class ListTagResourcesRequest(TeaModel):
|
|
8041
8119
|
# The resource IDs.
|
8042
8120
|
self.resource_id = resource_id
|
8043
8121
|
# The resource type.
|
8122
|
+
#
|
8123
|
+
# This parameter is required.
|
8044
8124
|
self.resource_type = resource_type
|
8045
8125
|
# The tags.
|
8046
8126
|
#
|
@@ -8107,6 +8187,8 @@ class ListTagResourcesShrinkRequest(TeaModel):
|
|
8107
8187
|
# The resource IDs.
|
8108
8188
|
self.resource_id_shrink = resource_id_shrink
|
8109
8189
|
# The resource type.
|
8190
|
+
#
|
8191
|
+
# This parameter is required.
|
8110
8192
|
self.resource_type = resource_type
|
8111
8193
|
# The tags.
|
8112
8194
|
#
|
@@ -8320,6 +8402,8 @@ class PublishFunctionVersionRequest(TeaModel):
|
|
8320
8402
|
body: PublishVersionInput = None,
|
8321
8403
|
):
|
8322
8404
|
# The information about the function version.
|
8405
|
+
#
|
8406
|
+
# This parameter is required.
|
8323
8407
|
self.body = body
|
8324
8408
|
|
8325
8409
|
def validate(self):
|
@@ -8392,6 +8476,8 @@ class PutAsyncInvokeConfigRequest(TeaModel):
|
|
8392
8476
|
qualifier: str = None,
|
8393
8477
|
):
|
8394
8478
|
# The configurations of asynchronous function invocation.
|
8479
|
+
#
|
8480
|
+
# This parameter is required.
|
8395
8481
|
self.body = body
|
8396
8482
|
# The version or alias of the function.
|
8397
8483
|
self.qualifier = qualifier
|
@@ -8469,6 +8555,8 @@ class PutConcurrencyConfigRequest(TeaModel):
|
|
8469
8555
|
body: PutConcurrencyInput = None,
|
8470
8556
|
):
|
8471
8557
|
# The concurrency configurations.
|
8558
|
+
#
|
8559
|
+
# This parameter is required.
|
8472
8560
|
self.body = body
|
8473
8561
|
|
8474
8562
|
def validate(self):
|
@@ -8537,8 +8625,10 @@ class PutConcurrencyConfigResponse(TeaModel):
|
|
8537
8625
|
class PutLayerACLRequest(TeaModel):
|
8538
8626
|
def __init__(
|
8539
8627
|
self,
|
8628
|
+
acl: str = None,
|
8540
8629
|
public: str = None,
|
8541
8630
|
):
|
8631
|
+
self.acl = acl
|
8542
8632
|
# Specifies whether the layer is a public layer. Valid values: true and false.
|
8543
8633
|
self.public = public
|
8544
8634
|
|
@@ -8551,12 +8641,16 @@ class PutLayerACLRequest(TeaModel):
|
|
8551
8641
|
return _map
|
8552
8642
|
|
8553
8643
|
result = dict()
|
8644
|
+
if self.acl is not None:
|
8645
|
+
result['acl'] = self.acl
|
8554
8646
|
if self.public is not None:
|
8555
8647
|
result['public'] = self.public
|
8556
8648
|
return result
|
8557
8649
|
|
8558
8650
|
def from_map(self, m: dict = None):
|
8559
8651
|
m = m or dict()
|
8652
|
+
if m.get('acl') is not None:
|
8653
|
+
self.acl = m.get('acl')
|
8560
8654
|
if m.get('public') is not None:
|
8561
8655
|
self.public = m.get('public')
|
8562
8656
|
return self
|
@@ -8602,6 +8696,8 @@ class PutProvisionConfigRequest(TeaModel):
|
|
8602
8696
|
qualifier: str = None,
|
8603
8697
|
):
|
8604
8698
|
# The information about the provisioned configuration.
|
8699
|
+
#
|
8700
|
+
# This parameter is required.
|
8605
8701
|
self.body = body
|
8606
8702
|
# The function alias or LATEST.
|
8607
8703
|
self.qualifier = qualifier
|
@@ -8678,6 +8774,7 @@ class StopAsyncTaskRequest(TeaModel):
|
|
8678
8774
|
self,
|
8679
8775
|
qualifier: str = None,
|
8680
8776
|
):
|
8777
|
+
# The function version or alias.
|
8681
8778
|
self.qualifier = qualifier
|
8682
8779
|
|
8683
8780
|
def validate(self):
|
@@ -8739,6 +8836,8 @@ class TagResourcesRequest(TeaModel):
|
|
8739
8836
|
body: TagResourcesInput = None,
|
8740
8837
|
):
|
8741
8838
|
# The configuration of the resource tag.
|
8839
|
+
#
|
8840
|
+
# This parameter is required.
|
8742
8841
|
self.body = body
|
8743
8842
|
|
8744
8843
|
def validate(self):
|
@@ -8807,8 +8906,12 @@ class UntagResourcesRequest(TeaModel):
|
|
8807
8906
|
# Specifies whether to delete all tags.
|
8808
8907
|
self.all = all
|
8809
8908
|
# The resource identifiers.
|
8909
|
+
#
|
8910
|
+
# This parameter is required.
|
8810
8911
|
self.resource_id = resource_id
|
8811
8912
|
# The resource type.
|
8913
|
+
#
|
8914
|
+
# This parameter is required.
|
8812
8915
|
self.resource_type = resource_type
|
8813
8916
|
# The tag to remove. You can specify a maximum of 50 tags.
|
8814
8917
|
self.tag_key = tag_key
|
@@ -8856,8 +8959,12 @@ class UntagResourcesShrinkRequest(TeaModel):
|
|
8856
8959
|
# Specifies whether to delete all tags.
|
8857
8960
|
self.all = all
|
8858
8961
|
# The resource identifiers.
|
8962
|
+
#
|
8963
|
+
# This parameter is required.
|
8859
8964
|
self.resource_id_shrink = resource_id_shrink
|
8860
8965
|
# The resource type.
|
8966
|
+
#
|
8967
|
+
# This parameter is required.
|
8861
8968
|
self.resource_type = resource_type
|
8862
8969
|
# The tag to remove. You can specify a maximum of 50 tags.
|
8863
8970
|
self.tag_key_shrink = tag_key_shrink
|
@@ -8933,6 +9040,8 @@ class UpdateAliasRequest(TeaModel):
|
|
8933
9040
|
body: UpdateAliasInput = None,
|
8934
9041
|
):
|
8935
9042
|
# The alias information to be updated.
|
9043
|
+
#
|
9044
|
+
# This parameter is required.
|
8936
9045
|
self.body = body
|
8937
9046
|
|
8938
9047
|
def validate(self):
|
@@ -9004,6 +9113,8 @@ class UpdateCustomDomainRequest(TeaModel):
|
|
9004
9113
|
body: UpdateCustomDomainInput = None,
|
9005
9114
|
):
|
9006
9115
|
# The information about the custom domain name.
|
9116
|
+
#
|
9117
|
+
# This parameter is required.
|
9007
9118
|
self.body = body
|
9008
9119
|
|
9009
9120
|
def validate(self):
|
@@ -9075,6 +9186,8 @@ class UpdateFunctionRequest(TeaModel):
|
|
9075
9186
|
body: UpdateFunctionInput = None,
|
9076
9187
|
):
|
9077
9188
|
# The function information
|
9189
|
+
#
|
9190
|
+
# This parameter is required.
|
9078
9191
|
self.body = body
|
9079
9192
|
|
9080
9193
|
def validate(self):
|
@@ -9146,6 +9259,8 @@ class UpdateTriggerRequest(TeaModel):
|
|
9146
9259
|
body: UpdateTriggerInput = None,
|
9147
9260
|
):
|
9148
9261
|
# The trigger configurations.
|
9262
|
+
#
|
9263
|
+
# This parameter is required.
|
9149
9264
|
self.body = body
|
9150
9265
|
|
9151
9266
|
def validate(self):
|
{alibabacloud_fc20230330-4.1.0.dist-info → alibabacloud_fc20230330-4.1.1.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: alibabacloud-fc20230330
|
3
|
-
Version: 4.1.
|
3
|
+
Version: 4.1.1
|
4
4
|
Summary: Alibaba Cloud Function Compute (20230330) SDK Library for Python
|
5
5
|
Home-page: https://github.com/aliyun/alibabacloud-python-sdk
|
6
6
|
Author: Alibaba Cloud SDK
|
@@ -20,8 +20,8 @@ Classifier: Programming Language :: Python :: 3.9
|
|
20
20
|
Classifier: Topic :: Software Development
|
21
21
|
Requires-Python: >=3.6
|
22
22
|
Description-Content-Type: text/markdown
|
23
|
-
Requires-Dist: alibabacloud-tea-util <1.0.0,>=0.3.
|
24
|
-
Requires-Dist: alibabacloud-tea-openapi <1.0.0,>=0.3.
|
23
|
+
Requires-Dist: alibabacloud-tea-util <1.0.0,>=0.3.12
|
24
|
+
Requires-Dist: alibabacloud-tea-openapi <1.0.0,>=0.3.10
|
25
25
|
Requires-Dist: alibabacloud-openapi-util <1.0.0,>=0.2.1
|
26
26
|
Requires-Dist: alibabacloud-endpoint-util <1.0.0,>=0.0.3
|
27
27
|
|
@@ -0,0 +1,8 @@
|
|
1
|
+
alibabacloud_fc20230330/__init__.py,sha256=9s_-kFNVIJvwc6-4mHs-DFU56OCC5TEDwXiEgMZS1Yg,21
|
2
|
+
alibabacloud_fc20230330/client.py,sha256=nKYk4AqMunzCDME9p__X17GefH9Sy1I2Dpt0O5WGwK8,207793
|
3
|
+
alibabacloud_fc20230330/models.py,sha256=66bp1-tmeoW6SvU0DkvUWhRbELCGarsfkcDn6SegbYw,292628
|
4
|
+
alibabacloud_fc20230330-4.1.1.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
5
|
+
alibabacloud_fc20230330-4.1.1.dist-info/METADATA,sha256=IaiLBk_7jGoCDgjs3dCAPmorhqCtNtqlRubSQEGVxbQ,2291
|
6
|
+
alibabacloud_fc20230330-4.1.1.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
7
|
+
alibabacloud_fc20230330-4.1.1.dist-info/top_level.txt,sha256=baV3-L5IvxdXABZELkVnoxSffqdCcj44u4zGA8yQ-Ek,24
|
8
|
+
alibabacloud_fc20230330-4.1.1.dist-info/RECORD,,
|
@@ -1,8 +0,0 @@
|
|
1
|
-
alibabacloud_fc20230330/__init__.py,sha256=lxnje8P-maveQRzsNBMx8fMg2n4rtyrYtjzLXKjtYo8,21
|
2
|
-
alibabacloud_fc20230330/client.py,sha256=Wc2ufWtOej3gcdzq49drvtGCBYna97Qm_beXLkMPOt0,162189
|
3
|
-
alibabacloud_fc20230330/models.py,sha256=-jCSiOD5V43FCHKFruo1ECMm2RBXRcfSMWHr5ZHa2P8,287705
|
4
|
-
alibabacloud_fc20230330-4.1.0.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
5
|
-
alibabacloud_fc20230330-4.1.0.dist-info/METADATA,sha256=YgCkCp6SqKsTwAacj0T44e15UbkxGVXtEreDsc9vZkY,2290
|
6
|
-
alibabacloud_fc20230330-4.1.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
7
|
-
alibabacloud_fc20230330-4.1.0.dist-info/top_level.txt,sha256=baV3-L5IvxdXABZELkVnoxSffqdCcj44u4zGA8yQ-Ek,24
|
8
|
-
alibabacloud_fc20230330-4.1.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
{alibabacloud_fc20230330-4.1.0.dist-info → alibabacloud_fc20230330-4.1.1.dist-info}/top_level.txt
RENAMED
File without changes
|