alibabacloud-fc20230330 4.6.1__py3-none-any.whl → 4.6.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/models.py +149 -2
- {alibabacloud_fc20230330-4.6.1.dist-info → alibabacloud_fc20230330-4.6.2.dist-info}/METADATA +1 -1
- alibabacloud_fc20230330-4.6.2.dist-info/RECORD +8 -0
- alibabacloud_fc20230330-4.6.1.dist-info/RECORD +0 -8
- {alibabacloud_fc20230330-4.6.1.dist-info → alibabacloud_fc20230330-4.6.2.dist-info}/LICENSE +0 -0
- {alibabacloud_fc20230330-4.6.1.dist-info → alibabacloud_fc20230330-4.6.2.dist-info}/WHEEL +0 -0
- {alibabacloud_fc20230330-4.6.1.dist-info → alibabacloud_fc20230330-4.6.2.dist-info}/top_level.txt +0 -0
@@ -1 +1 @@
|
|
1
|
-
__version__ = '4.6.
|
1
|
+
__version__ = '4.6.2'
|
@@ -1941,6 +1941,92 @@ class OSSMountConfig(TeaModel):
|
|
1941
1941
|
return self
|
1942
1942
|
|
1943
1943
|
|
1944
|
+
class PolarFsMountConfig(TeaModel):
|
1945
|
+
def __init__(
|
1946
|
+
self,
|
1947
|
+
instance_id: str = None,
|
1948
|
+
mount_dir: str = None,
|
1949
|
+
remote_dir: str = None,
|
1950
|
+
):
|
1951
|
+
self.instance_id = instance_id
|
1952
|
+
self.mount_dir = mount_dir
|
1953
|
+
self.remote_dir = remote_dir
|
1954
|
+
|
1955
|
+
def validate(self):
|
1956
|
+
pass
|
1957
|
+
|
1958
|
+
def to_map(self):
|
1959
|
+
_map = super().to_map()
|
1960
|
+
if _map is not None:
|
1961
|
+
return _map
|
1962
|
+
|
1963
|
+
result = dict()
|
1964
|
+
if self.instance_id is not None:
|
1965
|
+
result['instanceId'] = self.instance_id
|
1966
|
+
if self.mount_dir is not None:
|
1967
|
+
result['mountDir'] = self.mount_dir
|
1968
|
+
if self.remote_dir is not None:
|
1969
|
+
result['remoteDir'] = self.remote_dir
|
1970
|
+
return result
|
1971
|
+
|
1972
|
+
def from_map(self, m: dict = None):
|
1973
|
+
m = m or dict()
|
1974
|
+
if m.get('instanceId') is not None:
|
1975
|
+
self.instance_id = m.get('instanceId')
|
1976
|
+
if m.get('mountDir') is not None:
|
1977
|
+
self.mount_dir = m.get('mountDir')
|
1978
|
+
if m.get('remoteDir') is not None:
|
1979
|
+
self.remote_dir = m.get('remoteDir')
|
1980
|
+
return self
|
1981
|
+
|
1982
|
+
|
1983
|
+
class PolarFsConfig(TeaModel):
|
1984
|
+
def __init__(
|
1985
|
+
self,
|
1986
|
+
group_id: int = None,
|
1987
|
+
mount_points: List[PolarFsMountConfig] = None,
|
1988
|
+
user_id: int = None,
|
1989
|
+
):
|
1990
|
+
self.group_id = group_id
|
1991
|
+
self.mount_points = mount_points
|
1992
|
+
self.user_id = user_id
|
1993
|
+
|
1994
|
+
def validate(self):
|
1995
|
+
if self.mount_points:
|
1996
|
+
for k in self.mount_points:
|
1997
|
+
if k:
|
1998
|
+
k.validate()
|
1999
|
+
|
2000
|
+
def to_map(self):
|
2001
|
+
_map = super().to_map()
|
2002
|
+
if _map is not None:
|
2003
|
+
return _map
|
2004
|
+
|
2005
|
+
result = dict()
|
2006
|
+
if self.group_id is not None:
|
2007
|
+
result['groupId'] = self.group_id
|
2008
|
+
result['mountPoints'] = []
|
2009
|
+
if self.mount_points is not None:
|
2010
|
+
for k in self.mount_points:
|
2011
|
+
result['mountPoints'].append(k.to_map() if k else None)
|
2012
|
+
if self.user_id is not None:
|
2013
|
+
result['userId'] = self.user_id
|
2014
|
+
return result
|
2015
|
+
|
2016
|
+
def from_map(self, m: dict = None):
|
2017
|
+
m = m or dict()
|
2018
|
+
if m.get('groupId') is not None:
|
2019
|
+
self.group_id = m.get('groupId')
|
2020
|
+
self.mount_points = []
|
2021
|
+
if m.get('mountPoints') is not None:
|
2022
|
+
for k in m.get('mountPoints'):
|
2023
|
+
temp_model = PolarFsMountConfig()
|
2024
|
+
self.mount_points.append(temp_model.from_map(k))
|
2025
|
+
if m.get('userId') is not None:
|
2026
|
+
self.user_id = m.get('userId')
|
2027
|
+
return self
|
2028
|
+
|
2029
|
+
|
1944
2030
|
class Tag(TeaModel):
|
1945
2031
|
def __init__(
|
1946
2032
|
self,
|
@@ -2061,6 +2147,7 @@ class CreateFunctionInput(TeaModel):
|
|
2061
2147
|
custom_dns: CustomDNS = None,
|
2062
2148
|
custom_runtime_config: CustomRuntimeConfig = None,
|
2063
2149
|
description: str = None,
|
2150
|
+
disable_inject_credentials: str = None,
|
2064
2151
|
disable_ondemand: bool = None,
|
2065
2152
|
disk_size: int = None,
|
2066
2153
|
enable_long_living: bool = None,
|
@@ -2078,6 +2165,7 @@ class CreateFunctionInput(TeaModel):
|
|
2078
2165
|
memory_size: int = None,
|
2079
2166
|
nas_config: NASConfig = None,
|
2080
2167
|
oss_mount_config: OSSMountConfig = None,
|
2168
|
+
polar_fs_config: PolarFsConfig = None,
|
2081
2169
|
resource_group_id: str = None,
|
2082
2170
|
role: str = None,
|
2083
2171
|
runtime: str = None,
|
@@ -2094,6 +2182,7 @@ class CreateFunctionInput(TeaModel):
|
|
2094
2182
|
self.custom_dns = custom_dns
|
2095
2183
|
self.custom_runtime_config = custom_runtime_config
|
2096
2184
|
self.description = description
|
2185
|
+
self.disable_inject_credentials = disable_inject_credentials
|
2097
2186
|
self.disable_ondemand = disable_ondemand
|
2098
2187
|
self.disk_size = disk_size
|
2099
2188
|
self.enable_long_living = enable_long_living
|
@@ -2113,6 +2202,7 @@ class CreateFunctionInput(TeaModel):
|
|
2113
2202
|
self.memory_size = memory_size
|
2114
2203
|
self.nas_config = nas_config
|
2115
2204
|
self.oss_mount_config = oss_mount_config
|
2205
|
+
self.polar_fs_config = polar_fs_config
|
2116
2206
|
self.resource_group_id = resource_group_id
|
2117
2207
|
self.role = role
|
2118
2208
|
# This parameter is required.
|
@@ -2143,6 +2233,8 @@ class CreateFunctionInput(TeaModel):
|
|
2143
2233
|
self.nas_config.validate()
|
2144
2234
|
if self.oss_mount_config:
|
2145
2235
|
self.oss_mount_config.validate()
|
2236
|
+
if self.polar_fs_config:
|
2237
|
+
self.polar_fs_config.validate()
|
2146
2238
|
if self.tags:
|
2147
2239
|
for k in self.tags:
|
2148
2240
|
if k:
|
@@ -2170,6 +2262,8 @@ class CreateFunctionInput(TeaModel):
|
|
2170
2262
|
result['customRuntimeConfig'] = self.custom_runtime_config.to_map()
|
2171
2263
|
if self.description is not None:
|
2172
2264
|
result['description'] = self.description
|
2265
|
+
if self.disable_inject_credentials is not None:
|
2266
|
+
result['disableInjectCredentials'] = self.disable_inject_credentials
|
2173
2267
|
if self.disable_ondemand is not None:
|
2174
2268
|
result['disableOndemand'] = self.disable_ondemand
|
2175
2269
|
if self.disk_size is not None:
|
@@ -2204,6 +2298,8 @@ class CreateFunctionInput(TeaModel):
|
|
2204
2298
|
result['nasConfig'] = self.nas_config.to_map()
|
2205
2299
|
if self.oss_mount_config is not None:
|
2206
2300
|
result['ossMountConfig'] = self.oss_mount_config.to_map()
|
2301
|
+
if self.polar_fs_config is not None:
|
2302
|
+
result['polarFsConfig'] = self.polar_fs_config.to_map()
|
2207
2303
|
if self.resource_group_id is not None:
|
2208
2304
|
result['resourceGroupId'] = self.resource_group_id
|
2209
2305
|
if self.role is not None:
|
@@ -2244,6 +2340,8 @@ class CreateFunctionInput(TeaModel):
|
|
2244
2340
|
self.custom_runtime_config = temp_model.from_map(m['customRuntimeConfig'])
|
2245
2341
|
if m.get('description') is not None:
|
2246
2342
|
self.description = m.get('description')
|
2343
|
+
if m.get('disableInjectCredentials') is not None:
|
2344
|
+
self.disable_inject_credentials = m.get('disableInjectCredentials')
|
2247
2345
|
if m.get('disableOndemand') is not None:
|
2248
2346
|
self.disable_ondemand = m.get('disableOndemand')
|
2249
2347
|
if m.get('diskSize') is not None:
|
@@ -2283,6 +2381,9 @@ class CreateFunctionInput(TeaModel):
|
|
2283
2381
|
if m.get('ossMountConfig') is not None:
|
2284
2382
|
temp_model = OSSMountConfig()
|
2285
2383
|
self.oss_mount_config = temp_model.from_map(m['ossMountConfig'])
|
2384
|
+
if m.get('polarFsConfig') is not None:
|
2385
|
+
temp_model = PolarFsConfig()
|
2386
|
+
self.polar_fs_config = temp_model.from_map(m['polarFsConfig'])
|
2286
2387
|
if m.get('resourceGroupId') is not None:
|
2287
2388
|
self.resource_group_id = m.get('resourceGroupId')
|
2288
2389
|
if m.get('role') is not None:
|
@@ -2359,14 +2460,17 @@ class CreateLayerVersionInput(TeaModel):
|
|
2359
2460
|
class CreateSessionInput(TeaModel):
|
2360
2461
|
def __init__(
|
2361
2462
|
self,
|
2463
|
+
nas_config: NASConfig = None,
|
2362
2464
|
session_idle_timeout_in_seconds: int = None,
|
2363
2465
|
session_ttlin_seconds: int = None,
|
2364
2466
|
):
|
2467
|
+
self.nas_config = nas_config
|
2365
2468
|
self.session_idle_timeout_in_seconds = session_idle_timeout_in_seconds
|
2366
2469
|
self.session_ttlin_seconds = session_ttlin_seconds
|
2367
2470
|
|
2368
2471
|
def validate(self):
|
2369
|
-
|
2472
|
+
if self.nas_config:
|
2473
|
+
self.nas_config.validate()
|
2370
2474
|
|
2371
2475
|
def to_map(self):
|
2372
2476
|
_map = super().to_map()
|
@@ -2374,6 +2478,8 @@ class CreateSessionInput(TeaModel):
|
|
2374
2478
|
return _map
|
2375
2479
|
|
2376
2480
|
result = dict()
|
2481
|
+
if self.nas_config is not None:
|
2482
|
+
result['nasConfig'] = self.nas_config.to_map()
|
2377
2483
|
if self.session_idle_timeout_in_seconds is not None:
|
2378
2484
|
result['sessionIdleTimeoutInSeconds'] = self.session_idle_timeout_in_seconds
|
2379
2485
|
if self.session_ttlin_seconds is not None:
|
@@ -2382,6 +2488,9 @@ class CreateSessionInput(TeaModel):
|
|
2382
2488
|
|
2383
2489
|
def from_map(self, m: dict = None):
|
2384
2490
|
m = m or dict()
|
2491
|
+
if m.get('nasConfig') is not None:
|
2492
|
+
temp_model = NASConfig()
|
2493
|
+
self.nas_config = temp_model.from_map(m['nasConfig'])
|
2385
2494
|
if m.get('sessionIdleTimeoutInSeconds') is not None:
|
2386
2495
|
self.session_idle_timeout_in_seconds = m.get('sessionIdleTimeoutInSeconds')
|
2387
2496
|
if m.get('sessionTTLInSeconds') is not None:
|
@@ -3822,6 +3931,7 @@ class Function(TeaModel):
|
|
3822
3931
|
custom_dns: CustomDNS = None,
|
3823
3932
|
custom_runtime_config: CustomRuntimeConfig = None,
|
3824
3933
|
description: str = None,
|
3934
|
+
disable_inject_credentials: str = None,
|
3825
3935
|
disable_ondemand: bool = None,
|
3826
3936
|
disk_size: int = None,
|
3827
3937
|
enable_long_living: bool = None,
|
@@ -3846,6 +3956,7 @@ class Function(TeaModel):
|
|
3846
3956
|
memory_size: int = None,
|
3847
3957
|
nas_config: NASConfig = None,
|
3848
3958
|
oss_mount_config: OSSMountConfig = None,
|
3959
|
+
polar_fs_config: PolarFsConfig = None,
|
3849
3960
|
resource_group_id: str = None,
|
3850
3961
|
role: str = None,
|
3851
3962
|
runtime: str = None,
|
@@ -3867,6 +3978,7 @@ class Function(TeaModel):
|
|
3867
3978
|
self.custom_dns = custom_dns
|
3868
3979
|
self.custom_runtime_config = custom_runtime_config
|
3869
3980
|
self.description = description
|
3981
|
+
self.disable_inject_credentials = disable_inject_credentials
|
3870
3982
|
self.disable_ondemand = disable_ondemand
|
3871
3983
|
self.disk_size = disk_size
|
3872
3984
|
self.enable_long_living = enable_long_living
|
@@ -3891,6 +4003,7 @@ class Function(TeaModel):
|
|
3891
4003
|
self.memory_size = memory_size
|
3892
4004
|
self.nas_config = nas_config
|
3893
4005
|
self.oss_mount_config = oss_mount_config
|
4006
|
+
self.polar_fs_config = polar_fs_config
|
3894
4007
|
self.resource_group_id = resource_group_id
|
3895
4008
|
self.role = role
|
3896
4009
|
self.runtime = runtime
|
@@ -3927,6 +4040,8 @@ class Function(TeaModel):
|
|
3927
4040
|
self.nas_config.validate()
|
3928
4041
|
if self.oss_mount_config:
|
3929
4042
|
self.oss_mount_config.validate()
|
4043
|
+
if self.polar_fs_config:
|
4044
|
+
self.polar_fs_config.validate()
|
3930
4045
|
if self.tags:
|
3931
4046
|
for k in self.tags:
|
3932
4047
|
if k:
|
@@ -3958,6 +4073,8 @@ class Function(TeaModel):
|
|
3958
4073
|
result['customRuntimeConfig'] = self.custom_runtime_config.to_map()
|
3959
4074
|
if self.description is not None:
|
3960
4075
|
result['description'] = self.description
|
4076
|
+
if self.disable_inject_credentials is not None:
|
4077
|
+
result['disableInjectCredentials'] = self.disable_inject_credentials
|
3961
4078
|
if self.disable_ondemand is not None:
|
3962
4079
|
result['disableOndemand'] = self.disable_ondemand
|
3963
4080
|
if self.disk_size is not None:
|
@@ -4008,6 +4125,8 @@ class Function(TeaModel):
|
|
4008
4125
|
result['nasConfig'] = self.nas_config.to_map()
|
4009
4126
|
if self.oss_mount_config is not None:
|
4010
4127
|
result['ossMountConfig'] = self.oss_mount_config.to_map()
|
4128
|
+
if self.polar_fs_config is not None:
|
4129
|
+
result['polarFsConfig'] = self.polar_fs_config.to_map()
|
4011
4130
|
if self.resource_group_id is not None:
|
4012
4131
|
result['resourceGroupId'] = self.resource_group_id
|
4013
4132
|
if self.role is not None:
|
@@ -4057,6 +4176,8 @@ class Function(TeaModel):
|
|
4057
4176
|
self.custom_runtime_config = temp_model.from_map(m['customRuntimeConfig'])
|
4058
4177
|
if m.get('description') is not None:
|
4059
4178
|
self.description = m.get('description')
|
4179
|
+
if m.get('disableInjectCredentials') is not None:
|
4180
|
+
self.disable_inject_credentials = m.get('disableInjectCredentials')
|
4060
4181
|
if m.get('disableOndemand') is not None:
|
4061
4182
|
self.disable_ondemand = m.get('disableOndemand')
|
4062
4183
|
if m.get('diskSize') is not None:
|
@@ -4114,6 +4235,9 @@ class Function(TeaModel):
|
|
4114
4235
|
if m.get('ossMountConfig') is not None:
|
4115
4236
|
temp_model = OSSMountConfig()
|
4116
4237
|
self.oss_mount_config = temp_model.from_map(m['ossMountConfig'])
|
4238
|
+
if m.get('polarFsConfig') is not None:
|
4239
|
+
temp_model = PolarFsConfig()
|
4240
|
+
self.polar_fs_config = temp_model.from_map(m['polarFsConfig'])
|
4117
4241
|
if m.get('resourceGroupId') is not None:
|
4118
4242
|
self.resource_group_id = m.get('resourceGroupId')
|
4119
4243
|
if m.get('role') is not None:
|
@@ -5772,6 +5896,7 @@ class Session(TeaModel):
|
|
5772
5896
|
created_time: str = None,
|
5773
5897
|
function_name: str = None,
|
5774
5898
|
last_modified_time: str = None,
|
5899
|
+
nas_config: NASConfig = None,
|
5775
5900
|
qualifier: str = None,
|
5776
5901
|
session_affinity_type: str = None,
|
5777
5902
|
session_id: str = None,
|
@@ -5783,6 +5908,7 @@ class Session(TeaModel):
|
|
5783
5908
|
self.created_time = created_time
|
5784
5909
|
self.function_name = function_name
|
5785
5910
|
self.last_modified_time = last_modified_time
|
5911
|
+
self.nas_config = nas_config
|
5786
5912
|
self.qualifier = qualifier
|
5787
5913
|
self.session_affinity_type = session_affinity_type
|
5788
5914
|
self.session_id = session_id
|
@@ -5791,7 +5917,8 @@ class Session(TeaModel):
|
|
5791
5917
|
self.session_ttlin_seconds = session_ttlin_seconds
|
5792
5918
|
|
5793
5919
|
def validate(self):
|
5794
|
-
|
5920
|
+
if self.nas_config:
|
5921
|
+
self.nas_config.validate()
|
5795
5922
|
|
5796
5923
|
def to_map(self):
|
5797
5924
|
_map = super().to_map()
|
@@ -5807,6 +5934,8 @@ class Session(TeaModel):
|
|
5807
5934
|
result['functionName'] = self.function_name
|
5808
5935
|
if self.last_modified_time is not None:
|
5809
5936
|
result['lastModifiedTime'] = self.last_modified_time
|
5937
|
+
if self.nas_config is not None:
|
5938
|
+
result['nasConfig'] = self.nas_config.to_map()
|
5810
5939
|
if self.qualifier is not None:
|
5811
5940
|
result['qualifier'] = self.qualifier
|
5812
5941
|
if self.session_affinity_type is not None:
|
@@ -5831,6 +5960,9 @@ class Session(TeaModel):
|
|
5831
5960
|
self.function_name = m.get('functionName')
|
5832
5961
|
if m.get('lastModifiedTime') is not None:
|
5833
5962
|
self.last_modified_time = m.get('lastModifiedTime')
|
5963
|
+
if m.get('nasConfig') is not None:
|
5964
|
+
temp_model = NASConfig()
|
5965
|
+
self.nas_config = temp_model.from_map(m['nasConfig'])
|
5834
5966
|
if m.get('qualifier') is not None:
|
5835
5967
|
self.qualifier = m.get('qualifier')
|
5836
5968
|
if m.get('sessionAffinityType') is not None:
|
@@ -7253,6 +7385,7 @@ class UpdateFunctionInput(TeaModel):
|
|
7253
7385
|
custom_dns: CustomDNS = None,
|
7254
7386
|
custom_runtime_config: CustomRuntimeConfig = None,
|
7255
7387
|
description: str = None,
|
7388
|
+
disable_inject_credentials: str = None,
|
7256
7389
|
disable_ondemand: bool = None,
|
7257
7390
|
disk_size: int = None,
|
7258
7391
|
enable_long_living: bool = None,
|
@@ -7269,6 +7402,7 @@ class UpdateFunctionInput(TeaModel):
|
|
7269
7402
|
memory_size: int = None,
|
7270
7403
|
nas_config: NASConfig = None,
|
7271
7404
|
oss_mount_config: OSSMountConfig = None,
|
7405
|
+
polar_fs_config: PolarFsConfig = None,
|
7272
7406
|
role: str = None,
|
7273
7407
|
runtime: str = None,
|
7274
7408
|
session_affinity: str = None,
|
@@ -7283,6 +7417,7 @@ class UpdateFunctionInput(TeaModel):
|
|
7283
7417
|
self.custom_dns = custom_dns
|
7284
7418
|
self.custom_runtime_config = custom_runtime_config
|
7285
7419
|
self.description = description
|
7420
|
+
self.disable_inject_credentials = disable_inject_credentials
|
7286
7421
|
self.disable_ondemand = disable_ondemand
|
7287
7422
|
self.disk_size = disk_size
|
7288
7423
|
self.enable_long_living = enable_long_living
|
@@ -7299,6 +7434,7 @@ class UpdateFunctionInput(TeaModel):
|
|
7299
7434
|
self.memory_size = memory_size
|
7300
7435
|
self.nas_config = nas_config
|
7301
7436
|
self.oss_mount_config = oss_mount_config
|
7437
|
+
self.polar_fs_config = polar_fs_config
|
7302
7438
|
self.role = role
|
7303
7439
|
self.runtime = runtime
|
7304
7440
|
self.session_affinity = session_affinity
|
@@ -7326,6 +7462,8 @@ class UpdateFunctionInput(TeaModel):
|
|
7326
7462
|
self.nas_config.validate()
|
7327
7463
|
if self.oss_mount_config:
|
7328
7464
|
self.oss_mount_config.validate()
|
7465
|
+
if self.polar_fs_config:
|
7466
|
+
self.polar_fs_config.validate()
|
7329
7467
|
if self.tracing_config:
|
7330
7468
|
self.tracing_config.validate()
|
7331
7469
|
if self.vpc_config:
|
@@ -7349,6 +7487,8 @@ class UpdateFunctionInput(TeaModel):
|
|
7349
7487
|
result['customRuntimeConfig'] = self.custom_runtime_config.to_map()
|
7350
7488
|
if self.description is not None:
|
7351
7489
|
result['description'] = self.description
|
7490
|
+
if self.disable_inject_credentials is not None:
|
7491
|
+
result['disableInjectCredentials'] = self.disable_inject_credentials
|
7352
7492
|
if self.disable_ondemand is not None:
|
7353
7493
|
result['disableOndemand'] = self.disable_ondemand
|
7354
7494
|
if self.disk_size is not None:
|
@@ -7381,6 +7521,8 @@ class UpdateFunctionInput(TeaModel):
|
|
7381
7521
|
result['nasConfig'] = self.nas_config.to_map()
|
7382
7522
|
if self.oss_mount_config is not None:
|
7383
7523
|
result['ossMountConfig'] = self.oss_mount_config.to_map()
|
7524
|
+
if self.polar_fs_config is not None:
|
7525
|
+
result['polarFsConfig'] = self.polar_fs_config.to_map()
|
7384
7526
|
if self.role is not None:
|
7385
7527
|
result['role'] = self.role
|
7386
7528
|
if self.runtime is not None:
|
@@ -7415,6 +7557,8 @@ class UpdateFunctionInput(TeaModel):
|
|
7415
7557
|
self.custom_runtime_config = temp_model.from_map(m['customRuntimeConfig'])
|
7416
7558
|
if m.get('description') is not None:
|
7417
7559
|
self.description = m.get('description')
|
7560
|
+
if m.get('disableInjectCredentials') is not None:
|
7561
|
+
self.disable_inject_credentials = m.get('disableInjectCredentials')
|
7418
7562
|
if m.get('disableOndemand') is not None:
|
7419
7563
|
self.disable_ondemand = m.get('disableOndemand')
|
7420
7564
|
if m.get('diskSize') is not None:
|
@@ -7452,6 +7596,9 @@ class UpdateFunctionInput(TeaModel):
|
|
7452
7596
|
if m.get('ossMountConfig') is not None:
|
7453
7597
|
temp_model = OSSMountConfig()
|
7454
7598
|
self.oss_mount_config = temp_model.from_map(m['ossMountConfig'])
|
7599
|
+
if m.get('polarFsConfig') is not None:
|
7600
|
+
temp_model = PolarFsConfig()
|
7601
|
+
self.polar_fs_config = temp_model.from_map(m['polarFsConfig'])
|
7455
7602
|
if m.get('role') is not None:
|
7456
7603
|
self.role = m.get('role')
|
7457
7604
|
if m.get('runtime') is not None:
|
@@ -0,0 +1,8 @@
|
|
1
|
+
alibabacloud_fc20230330/__init__.py,sha256=hHsfaeL8eE3B2PddTV2pG2imfblY1SF58FQ9hhoHmEo,21
|
2
|
+
alibabacloud_fc20230330/client.py,sha256=EWffIKYHmoI_bpbGpndUEYmy59oc5Ifm5zJJDM-s9zA,269897
|
3
|
+
alibabacloud_fc20230330/models.py,sha256=rEg2oJoxr6VVI9U2dpQnRW-Da6zLMlPXJtTsgojqRVs,408905
|
4
|
+
alibabacloud_fc20230330-4.6.2.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
5
|
+
alibabacloud_fc20230330-4.6.2.dist-info/METADATA,sha256=2FYd0pqNoEq8j-UA4h0C1SndXi_XauqJaWRB-dwMYKU,2319
|
6
|
+
alibabacloud_fc20230330-4.6.2.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
7
|
+
alibabacloud_fc20230330-4.6.2.dist-info/top_level.txt,sha256=baV3-L5IvxdXABZELkVnoxSffqdCcj44u4zGA8yQ-Ek,24
|
8
|
+
alibabacloud_fc20230330-4.6.2.dist-info/RECORD,,
|
@@ -1,8 +0,0 @@
|
|
1
|
-
alibabacloud_fc20230330/__init__.py,sha256=cvOAYcVCOqEGT6xtvMbRqTAGJKE1tRHbaFlYIOqBPcA,21
|
2
|
-
alibabacloud_fc20230330/client.py,sha256=EWffIKYHmoI_bpbGpndUEYmy59oc5Ifm5zJJDM-s9zA,269897
|
3
|
-
alibabacloud_fc20230330/models.py,sha256=DppE73Jl4_hitoi67woG29RHWotU59cFd7Mc1xB-uCc,403094
|
4
|
-
alibabacloud_fc20230330-4.6.1.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
5
|
-
alibabacloud_fc20230330-4.6.1.dist-info/METADATA,sha256=KOE-DainGoOKbTxoYFWUQDsPzG8HXq3G1_BTkWxkoZc,2319
|
6
|
-
alibabacloud_fc20230330-4.6.1.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
7
|
-
alibabacloud_fc20230330-4.6.1.dist-info/top_level.txt,sha256=baV3-L5IvxdXABZELkVnoxSffqdCcj44u4zGA8yQ-Ek,24
|
8
|
-
alibabacloud_fc20230330-4.6.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
{alibabacloud_fc20230330-4.6.1.dist-info → alibabacloud_fc20230330-4.6.2.dist-info}/top_level.txt
RENAMED
File without changes
|