alibabacloud-fc20230330 4.1.0__py3-none-any.whl → 4.1.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.
- alibabacloud_fc20230330/__init__.py +1 -1
- alibabacloud_fc20230330/client.py +1456 -0
- alibabacloud_fc20230330/models.py +127 -0
- {alibabacloud_fc20230330-4.1.0.dist-info → alibabacloud_fc20230330-4.1.2.dist-info}/METADATA +3 -3
- alibabacloud_fc20230330-4.1.2.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.2.dist-info}/LICENSE +0 -0
- {alibabacloud_fc20230330-4.1.0.dist-info → alibabacloud_fc20230330-4.1.2.dist-info}/WHEEL +0 -0
- {alibabacloud_fc20230330-4.1.0.dist-info → alibabacloud_fc20230330-4.1.2.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
|
|
@@ -4082,6 +4114,7 @@ class ProvisionConfig(TeaModel):
|
|
4082
4114
|
def __init__(
|
4083
4115
|
self,
|
4084
4116
|
always_allocate_cpu: bool = None,
|
4117
|
+
always_allocate_gpu: bool = None,
|
4085
4118
|
current: int = None,
|
4086
4119
|
current_error: str = None,
|
4087
4120
|
function_arn: str = None,
|
@@ -4090,6 +4123,7 @@ class ProvisionConfig(TeaModel):
|
|
4090
4123
|
target_tracking_policies: List[TargetTrackingPolicy] = None,
|
4091
4124
|
):
|
4092
4125
|
self.always_allocate_cpu = always_allocate_cpu
|
4126
|
+
self.always_allocate_gpu = always_allocate_gpu
|
4093
4127
|
self.current = current
|
4094
4128
|
self.current_error = current_error
|
4095
4129
|
self.function_arn = function_arn
|
@@ -4115,6 +4149,8 @@ class ProvisionConfig(TeaModel):
|
|
4115
4149
|
result = dict()
|
4116
4150
|
if self.always_allocate_cpu is not None:
|
4117
4151
|
result['alwaysAllocateCPU'] = self.always_allocate_cpu
|
4152
|
+
if self.always_allocate_gpu is not None:
|
4153
|
+
result['alwaysAllocateGPU'] = self.always_allocate_gpu
|
4118
4154
|
if self.current is not None:
|
4119
4155
|
result['current'] = self.current
|
4120
4156
|
if self.current_error is not None:
|
@@ -4137,6 +4173,8 @@ class ProvisionConfig(TeaModel):
|
|
4137
4173
|
m = m or dict()
|
4138
4174
|
if m.get('alwaysAllocateCPU') is not None:
|
4139
4175
|
self.always_allocate_cpu = m.get('alwaysAllocateCPU')
|
4176
|
+
if m.get('alwaysAllocateGPU') is not None:
|
4177
|
+
self.always_allocate_gpu = m.get('alwaysAllocateGPU')
|
4140
4178
|
if m.get('current') is not None:
|
4141
4179
|
self.current = m.get('current')
|
4142
4180
|
if m.get('currentError') is not None:
|
@@ -4818,6 +4856,7 @@ class PutConcurrencyInput(TeaModel):
|
|
4818
4856
|
self,
|
4819
4857
|
reserved_concurrency: int = None,
|
4820
4858
|
):
|
4859
|
+
# This parameter is required.
|
4821
4860
|
self.reserved_concurrency = reserved_concurrency
|
4822
4861
|
|
4823
4862
|
def validate(self):
|
@@ -4844,12 +4883,15 @@ class PutProvisionConfigInput(TeaModel):
|
|
4844
4883
|
def __init__(
|
4845
4884
|
self,
|
4846
4885
|
always_allocate_cpu: bool = None,
|
4886
|
+
always_allocate_gpu: bool = None,
|
4847
4887
|
scheduled_actions: List[ScheduledAction] = None,
|
4848
4888
|
target: int = None,
|
4849
4889
|
target_tracking_policies: List[TargetTrackingPolicy] = None,
|
4850
4890
|
):
|
4851
4891
|
self.always_allocate_cpu = always_allocate_cpu
|
4892
|
+
self.always_allocate_gpu = always_allocate_gpu
|
4852
4893
|
self.scheduled_actions = scheduled_actions
|
4894
|
+
# This parameter is required.
|
4853
4895
|
self.target = target
|
4854
4896
|
self.target_tracking_policies = target_tracking_policies
|
4855
4897
|
|
@@ -4871,6 +4913,8 @@ class PutProvisionConfigInput(TeaModel):
|
|
4871
4913
|
result = dict()
|
4872
4914
|
if self.always_allocate_cpu is not None:
|
4873
4915
|
result['alwaysAllocateCPU'] = self.always_allocate_cpu
|
4916
|
+
if self.always_allocate_gpu is not None:
|
4917
|
+
result['alwaysAllocateGPU'] = self.always_allocate_gpu
|
4874
4918
|
result['scheduledActions'] = []
|
4875
4919
|
if self.scheduled_actions is not None:
|
4876
4920
|
for k in self.scheduled_actions:
|
@@ -4887,6 +4931,8 @@ class PutProvisionConfigInput(TeaModel):
|
|
4887
4931
|
m = m or dict()
|
4888
4932
|
if m.get('alwaysAllocateCPU') is not None:
|
4889
4933
|
self.always_allocate_cpu = m.get('alwaysAllocateCPU')
|
4934
|
+
if m.get('alwaysAllocateGPU') is not None:
|
4935
|
+
self.always_allocate_gpu = m.get('alwaysAllocateGPU')
|
4890
4936
|
self.scheduled_actions = []
|
4891
4937
|
if m.get('scheduledActions') is not None:
|
4892
4938
|
for k in m.get('scheduledActions'):
|
@@ -5066,7 +5112,9 @@ class TagResourceInput(TeaModel):
|
|
5066
5112
|
resource_arn: str = None,
|
5067
5113
|
tags: Dict[str, str] = None,
|
5068
5114
|
):
|
5115
|
+
# This parameter is required.
|
5069
5116
|
self.resource_arn = resource_arn
|
5117
|
+
# This parameter is required.
|
5070
5118
|
self.tags = tags
|
5071
5119
|
|
5072
5120
|
def validate(self):
|
@@ -5100,8 +5148,10 @@ class TagResourcesInput(TeaModel):
|
|
5100
5148
|
resource_type: str = None,
|
5101
5149
|
tag: List[Tag] = None,
|
5102
5150
|
):
|
5151
|
+
# This parameter is required.
|
5103
5152
|
self.resource_id = resource_id
|
5104
5153
|
self.resource_type = resource_type
|
5154
|
+
# This parameter is required.
|
5105
5155
|
self.tag = tag
|
5106
5156
|
|
5107
5157
|
def validate(self):
|
@@ -5531,6 +5581,8 @@ class CreateAliasRequest(TeaModel):
|
|
5531
5581
|
body: CreateAliasInput = None,
|
5532
5582
|
):
|
5533
5583
|
# The request parameters for creating an alias.
|
5584
|
+
#
|
5585
|
+
# This parameter is required.
|
5534
5586
|
self.body = body
|
5535
5587
|
|
5536
5588
|
def validate(self):
|
@@ -5602,6 +5654,8 @@ class CreateCustomDomainRequest(TeaModel):
|
|
5602
5654
|
body: CreateCustomDomainInput = None,
|
5603
5655
|
):
|
5604
5656
|
# The information about the custom domain name.
|
5657
|
+
#
|
5658
|
+
# This parameter is required.
|
5605
5659
|
self.body = body
|
5606
5660
|
|
5607
5661
|
def validate(self):
|
@@ -5673,6 +5727,8 @@ class CreateFunctionRequest(TeaModel):
|
|
5673
5727
|
body: CreateFunctionInput = None,
|
5674
5728
|
):
|
5675
5729
|
# The information about function configurations.
|
5730
|
+
#
|
5731
|
+
# This parameter is required.
|
5676
5732
|
self.body = body
|
5677
5733
|
|
5678
5734
|
def validate(self):
|
@@ -5744,6 +5800,8 @@ class CreateLayerVersionRequest(TeaModel):
|
|
5744
5800
|
body: CreateLayerVersionInput = None,
|
5745
5801
|
):
|
5746
5802
|
# The information about layer configurations.
|
5803
|
+
#
|
5804
|
+
# This parameter is required.
|
5747
5805
|
self.body = body
|
5748
5806
|
|
5749
5807
|
def validate(self):
|
@@ -5815,6 +5873,8 @@ class CreateTriggerRequest(TeaModel):
|
|
5815
5873
|
body: CreateTriggerInput = None,
|
5816
5874
|
):
|
5817
5875
|
# The trigger configurations.
|
5876
|
+
#
|
5877
|
+
# This parameter is required.
|
5818
5878
|
self.body = body
|
5819
5879
|
|
5820
5880
|
def validate(self):
|
@@ -5886,6 +5946,8 @@ class CreateVpcBindingRequest(TeaModel):
|
|
5886
5946
|
body: CreateVpcBindingInput = None,
|
5887
5947
|
):
|
5888
5948
|
# The configurations of the virtual private cloud (VPC) binding.
|
5949
|
+
#
|
5950
|
+
# This parameter is required.
|
5889
5951
|
self.body = body
|
5890
5952
|
|
5891
5953
|
def validate(self):
|
@@ -6444,6 +6506,7 @@ class GetAsyncTaskRequest(TeaModel):
|
|
6444
6506
|
self,
|
6445
6507
|
qualifier: str = None,
|
6446
6508
|
):
|
6509
|
+
# The function version or alias.
|
6447
6510
|
self.qualifier = qualifier
|
6448
6511
|
|
6449
6512
|
def validate(self):
|
@@ -7219,14 +7282,41 @@ class ListAsyncTasksRequest(TeaModel):
|
|
7219
7282
|
started_time_end: int = None,
|
7220
7283
|
status: str = None,
|
7221
7284
|
):
|
7285
|
+
# Specifies whether to return input parameters of the asynchronous tasks. Valid values:
|
7286
|
+
#
|
7287
|
+
# * true: returns the `invocationPayload` parameter in the response.
|
7288
|
+
# * false: does not return the `invocationPayload` parameter in the response.
|
7289
|
+
#
|
7290
|
+
# > The `invocationPayload` parameter indicates the input parameters of an asynchronous task.
|
7222
7291
|
self.include_payload = include_payload
|
7292
|
+
# The number of asynchronous tasks to return. Valid values: [1,100]. Default value: 50.
|
7223
7293
|
self.limit = limit
|
7294
|
+
# 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
7295
|
self.next_token = next_token
|
7296
|
+
# The ID prefix of asynchronous tasks. If this parameter is specified, a list of asynchronous tasks whose IDs match the prefix is returned.
|
7225
7297
|
self.prefix = prefix
|
7298
|
+
# The function version or alias.
|
7226
7299
|
self.qualifier = qualifier
|
7300
|
+
# The order in which the returned asynchronous tasks are sorted.
|
7301
|
+
#
|
7302
|
+
# * asc: in ascending order.
|
7303
|
+
# * desc: in descending order.
|
7227
7304
|
self.sort_order_by_time = sort_order_by_time
|
7305
|
+
# The start time of the period in which the asynchronous tasks are launched.
|
7228
7306
|
self.started_time_begin = started_time_begin
|
7307
|
+
# The end time of the period in which the asynchronous tasks are launched.
|
7229
7308
|
self.started_time_end = started_time_end
|
7309
|
+
# The state of asynchronous tasks. The following items list the states of an asynchronous task:
|
7310
|
+
#
|
7311
|
+
# * Enqueued: The asynchronous invocation is enqueued and is waiting to be executed.
|
7312
|
+
# * Succeeded: The invocation is successful.
|
7313
|
+
# * Failed: The invocation fails.
|
7314
|
+
# * Running: The invocation is being executed.
|
7315
|
+
# * Stopped: The invocation is terminated.
|
7316
|
+
# * Stopping: The invocation is being terminated.
|
7317
|
+
# * Invalid: The invocation is invalid and not executed due to specific reasons. For example, the function is deleted.
|
7318
|
+
# * 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.
|
7319
|
+
# * Retrying: The asynchronous invocation is being retried due to an execution error.
|
7230
7320
|
self.status = status
|
7231
7321
|
|
7232
7322
|
def validate(self):
|
@@ -8041,6 +8131,8 @@ class ListTagResourcesRequest(TeaModel):
|
|
8041
8131
|
# The resource IDs.
|
8042
8132
|
self.resource_id = resource_id
|
8043
8133
|
# The resource type.
|
8134
|
+
#
|
8135
|
+
# This parameter is required.
|
8044
8136
|
self.resource_type = resource_type
|
8045
8137
|
# The tags.
|
8046
8138
|
#
|
@@ -8107,6 +8199,8 @@ class ListTagResourcesShrinkRequest(TeaModel):
|
|
8107
8199
|
# The resource IDs.
|
8108
8200
|
self.resource_id_shrink = resource_id_shrink
|
8109
8201
|
# The resource type.
|
8202
|
+
#
|
8203
|
+
# This parameter is required.
|
8110
8204
|
self.resource_type = resource_type
|
8111
8205
|
# The tags.
|
8112
8206
|
#
|
@@ -8320,6 +8414,8 @@ class PublishFunctionVersionRequest(TeaModel):
|
|
8320
8414
|
body: PublishVersionInput = None,
|
8321
8415
|
):
|
8322
8416
|
# The information about the function version.
|
8417
|
+
#
|
8418
|
+
# This parameter is required.
|
8323
8419
|
self.body = body
|
8324
8420
|
|
8325
8421
|
def validate(self):
|
@@ -8392,6 +8488,8 @@ class PutAsyncInvokeConfigRequest(TeaModel):
|
|
8392
8488
|
qualifier: str = None,
|
8393
8489
|
):
|
8394
8490
|
# The configurations of asynchronous function invocation.
|
8491
|
+
#
|
8492
|
+
# This parameter is required.
|
8395
8493
|
self.body = body
|
8396
8494
|
# The version or alias of the function.
|
8397
8495
|
self.qualifier = qualifier
|
@@ -8469,6 +8567,8 @@ class PutConcurrencyConfigRequest(TeaModel):
|
|
8469
8567
|
body: PutConcurrencyInput = None,
|
8470
8568
|
):
|
8471
8569
|
# The concurrency configurations.
|
8570
|
+
#
|
8571
|
+
# This parameter is required.
|
8472
8572
|
self.body = body
|
8473
8573
|
|
8474
8574
|
def validate(self):
|
@@ -8537,8 +8637,10 @@ class PutConcurrencyConfigResponse(TeaModel):
|
|
8537
8637
|
class PutLayerACLRequest(TeaModel):
|
8538
8638
|
def __init__(
|
8539
8639
|
self,
|
8640
|
+
acl: str = None,
|
8540
8641
|
public: str = None,
|
8541
8642
|
):
|
8643
|
+
self.acl = acl
|
8542
8644
|
# Specifies whether the layer is a public layer. Valid values: true and false.
|
8543
8645
|
self.public = public
|
8544
8646
|
|
@@ -8551,12 +8653,16 @@ class PutLayerACLRequest(TeaModel):
|
|
8551
8653
|
return _map
|
8552
8654
|
|
8553
8655
|
result = dict()
|
8656
|
+
if self.acl is not None:
|
8657
|
+
result['acl'] = self.acl
|
8554
8658
|
if self.public is not None:
|
8555
8659
|
result['public'] = self.public
|
8556
8660
|
return result
|
8557
8661
|
|
8558
8662
|
def from_map(self, m: dict = None):
|
8559
8663
|
m = m or dict()
|
8664
|
+
if m.get('acl') is not None:
|
8665
|
+
self.acl = m.get('acl')
|
8560
8666
|
if m.get('public') is not None:
|
8561
8667
|
self.public = m.get('public')
|
8562
8668
|
return self
|
@@ -8602,6 +8708,8 @@ class PutProvisionConfigRequest(TeaModel):
|
|
8602
8708
|
qualifier: str = None,
|
8603
8709
|
):
|
8604
8710
|
# The information about the provisioned configuration.
|
8711
|
+
#
|
8712
|
+
# This parameter is required.
|
8605
8713
|
self.body = body
|
8606
8714
|
# The function alias or LATEST.
|
8607
8715
|
self.qualifier = qualifier
|
@@ -8678,6 +8786,7 @@ class StopAsyncTaskRequest(TeaModel):
|
|
8678
8786
|
self,
|
8679
8787
|
qualifier: str = None,
|
8680
8788
|
):
|
8789
|
+
# The function version or alias.
|
8681
8790
|
self.qualifier = qualifier
|
8682
8791
|
|
8683
8792
|
def validate(self):
|
@@ -8739,6 +8848,8 @@ class TagResourcesRequest(TeaModel):
|
|
8739
8848
|
body: TagResourcesInput = None,
|
8740
8849
|
):
|
8741
8850
|
# The configuration of the resource tag.
|
8851
|
+
#
|
8852
|
+
# This parameter is required.
|
8742
8853
|
self.body = body
|
8743
8854
|
|
8744
8855
|
def validate(self):
|
@@ -8807,8 +8918,12 @@ class UntagResourcesRequest(TeaModel):
|
|
8807
8918
|
# Specifies whether to delete all tags.
|
8808
8919
|
self.all = all
|
8809
8920
|
# The resource identifiers.
|
8921
|
+
#
|
8922
|
+
# This parameter is required.
|
8810
8923
|
self.resource_id = resource_id
|
8811
8924
|
# The resource type.
|
8925
|
+
#
|
8926
|
+
# This parameter is required.
|
8812
8927
|
self.resource_type = resource_type
|
8813
8928
|
# The tag to remove. You can specify a maximum of 50 tags.
|
8814
8929
|
self.tag_key = tag_key
|
@@ -8856,8 +8971,12 @@ class UntagResourcesShrinkRequest(TeaModel):
|
|
8856
8971
|
# Specifies whether to delete all tags.
|
8857
8972
|
self.all = all
|
8858
8973
|
# The resource identifiers.
|
8974
|
+
#
|
8975
|
+
# This parameter is required.
|
8859
8976
|
self.resource_id_shrink = resource_id_shrink
|
8860
8977
|
# The resource type.
|
8978
|
+
#
|
8979
|
+
# This parameter is required.
|
8861
8980
|
self.resource_type = resource_type
|
8862
8981
|
# The tag to remove. You can specify a maximum of 50 tags.
|
8863
8982
|
self.tag_key_shrink = tag_key_shrink
|
@@ -8933,6 +9052,8 @@ class UpdateAliasRequest(TeaModel):
|
|
8933
9052
|
body: UpdateAliasInput = None,
|
8934
9053
|
):
|
8935
9054
|
# The alias information to be updated.
|
9055
|
+
#
|
9056
|
+
# This parameter is required.
|
8936
9057
|
self.body = body
|
8937
9058
|
|
8938
9059
|
def validate(self):
|
@@ -9004,6 +9125,8 @@ class UpdateCustomDomainRequest(TeaModel):
|
|
9004
9125
|
body: UpdateCustomDomainInput = None,
|
9005
9126
|
):
|
9006
9127
|
# The information about the custom domain name.
|
9128
|
+
#
|
9129
|
+
# This parameter is required.
|
9007
9130
|
self.body = body
|
9008
9131
|
|
9009
9132
|
def validate(self):
|
@@ -9075,6 +9198,8 @@ class UpdateFunctionRequest(TeaModel):
|
|
9075
9198
|
body: UpdateFunctionInput = None,
|
9076
9199
|
):
|
9077
9200
|
# The function information
|
9201
|
+
#
|
9202
|
+
# This parameter is required.
|
9078
9203
|
self.body = body
|
9079
9204
|
|
9080
9205
|
def validate(self):
|
@@ -9146,6 +9271,8 @@ class UpdateTriggerRequest(TeaModel):
|
|
9146
9271
|
body: UpdateTriggerInput = None,
|
9147
9272
|
):
|
9148
9273
|
# The trigger configurations.
|
9274
|
+
#
|
9275
|
+
# This parameter is required.
|
9149
9276
|
self.body = body
|
9150
9277
|
|
9151
9278
|
def validate(self):
|
{alibabacloud_fc20230330-4.1.0.dist-info → alibabacloud_fc20230330-4.1.2.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.2
|
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=Q1kc4yZVJCde5u2k5QGBDcAyUKkNxEYKZUaMCnMKYIg,21
|
2
|
+
alibabacloud_fc20230330/client.py,sha256=nKYk4AqMunzCDME9p__X17GefH9Sy1I2Dpt0O5WGwK8,207793
|
3
|
+
alibabacloud_fc20230330/models.py,sha256=02zr6ypojScE3fwOskZtyWa3eMklrvuS-TN4ZMD9LaU,293288
|
4
|
+
alibabacloud_fc20230330-4.1.2.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
5
|
+
alibabacloud_fc20230330-4.1.2.dist-info/METADATA,sha256=klt2u7Tn1YSvfGs2kLjDiil2W6ue1qqdCmlNAZvb3hI,2291
|
6
|
+
alibabacloud_fc20230330-4.1.2.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
7
|
+
alibabacloud_fc20230330-4.1.2.dist-info/top_level.txt,sha256=baV3-L5IvxdXABZELkVnoxSffqdCcj44u4zGA8yQ-Ek,24
|
8
|
+
alibabacloud_fc20230330-4.1.2.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.2.dist-info}/top_level.txt
RENAMED
File without changes
|