tccli 3.0.1395.1__py2.py3-none-any.whl → 3.0.1396.1__py2.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.
- tccli/__init__.py +1 -1
- tccli/services/ai3d/v20250513/api.json +3 -3
- tccli/services/cdn/cdn_client.py +4 -163
- tccli/services/cdn/v20180606/api.json +0 -297
- tccli/services/cdn/v20180606/examples.json +0 -24
- tccli/services/ckafka/v20190819/api.json +1 -1
- tccli/services/ckafka/v20190819/examples.json +1 -1
- tccli/services/essbasic/v20210526/examples.json +2 -2
- tccli/services/iai/v20180301/api.json +49 -49
- tccli/services/iai/v20180301/examples.json +7 -7
- tccli/services/iai/v20200303/api.json +3 -3
- tccli/services/iai/v20200303/examples.json +1 -1
- tccli/services/iotexplorer/v20190423/api.json +18 -0
- tccli/services/lcic/v20220817/api.json +6 -6
- tccli/services/lke/lke_client.py +0 -106
- tccli/services/lke/v20231130/api.json +0 -106
- tccli/services/lke/v20231130/examples.json +0 -16
- tccli/services/mongodb/v20190725/api.json +38 -36
- tccli/services/mongodb/v20190725/examples.json +3 -3
- tccli/services/mps/mps_client.py +220 -8
- tccli/services/mps/v20190612/api.json +420 -3
- tccli/services/mps/v20190612/examples.json +50 -0
- tccli/services/redis/v20180412/api.json +4 -4
- tccli/services/tcss/v20201101/api.json +21 -1
- tccli/services/teo/v20220901/api.json +10 -0
- tccli/services/trtc/v20190722/api.json +10 -10
- tccli/services/tse/v20201207/api.json +39 -1
- tccli/services/tse/v20201207/examples.json +3 -3
- tccli/services/vpc/v20170312/api.json +1 -1
- tccli/services/waf/v20180125/api.json +792 -142
- tccli/services/waf/v20180125/examples.json +1 -1
- {tccli-3.0.1395.1.dist-info → tccli-3.0.1396.1.dist-info}/METADATA +2 -2
- {tccli-3.0.1395.1.dist-info → tccli-3.0.1396.1.dist-info}/RECORD +36 -36
- {tccli-3.0.1395.1.dist-info → tccli-3.0.1396.1.dist-info}/WHEEL +0 -0
- {tccli-3.0.1395.1.dist-info → tccli-3.0.1396.1.dist-info}/entry_points.txt +0 -0
- {tccli-3.0.1395.1.dist-info → tccli-3.0.1396.1.dist-info}/license_files/LICENSE +0 -0
tccli/services/mps/mps_client.py
CHANGED
@@ -3137,6 +3137,110 @@ def doModifyStreamLinkInput(args, parsed_globals):
|
|
3137
3137
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
3138
3138
|
|
3139
3139
|
|
3140
|
+
def doDescribeSmartEraseTemplates(args, parsed_globals):
|
3141
|
+
g_param = parse_global_arg(parsed_globals)
|
3142
|
+
|
3143
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
3144
|
+
cred = credential.CVMRoleCredential()
|
3145
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
3146
|
+
cred = credential.STSAssumeRoleCredential(
|
3147
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
3148
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
3149
|
+
)
|
3150
|
+
elif os.getenv(OptionsDefine.ENV_TKE_REGION) and os.getenv(OptionsDefine.ENV_TKE_PROVIDER_ID) and os.getenv(OptionsDefine.ENV_TKE_WEB_IDENTITY_TOKEN_FILE) and os.getenv(OptionsDefine.ENV_TKE_ROLE_ARN):
|
3151
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
3152
|
+
else:
|
3153
|
+
cred = credential.Credential(
|
3154
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
3155
|
+
)
|
3156
|
+
http_profile = HttpProfile(
|
3157
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
3158
|
+
reqMethod="POST",
|
3159
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
3160
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
3161
|
+
)
|
3162
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
3163
|
+
if g_param[OptionsDefine.Language]:
|
3164
|
+
profile.language = g_param[OptionsDefine.Language]
|
3165
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
3166
|
+
client = mod.MpsClient(cred, g_param[OptionsDefine.Region], profile)
|
3167
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
3168
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
3169
|
+
model = models.DescribeSmartEraseTemplatesRequest()
|
3170
|
+
model.from_json_string(json.dumps(args))
|
3171
|
+
start_time = time.time()
|
3172
|
+
while True:
|
3173
|
+
rsp = client.DescribeSmartEraseTemplates(model)
|
3174
|
+
result = rsp.to_json_string()
|
3175
|
+
try:
|
3176
|
+
json_obj = json.loads(result)
|
3177
|
+
except TypeError as e:
|
3178
|
+
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
3179
|
+
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
3180
|
+
break
|
3181
|
+
cur_time = time.time()
|
3182
|
+
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
3183
|
+
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
3184
|
+
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
3185
|
+
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
3186
|
+
else:
|
3187
|
+
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
3188
|
+
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
3189
|
+
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
3190
|
+
|
3191
|
+
|
3192
|
+
def doModifySmartEraseTemplate(args, parsed_globals):
|
3193
|
+
g_param = parse_global_arg(parsed_globals)
|
3194
|
+
|
3195
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
3196
|
+
cred = credential.CVMRoleCredential()
|
3197
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
3198
|
+
cred = credential.STSAssumeRoleCredential(
|
3199
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
3200
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
3201
|
+
)
|
3202
|
+
elif os.getenv(OptionsDefine.ENV_TKE_REGION) and os.getenv(OptionsDefine.ENV_TKE_PROVIDER_ID) and os.getenv(OptionsDefine.ENV_TKE_WEB_IDENTITY_TOKEN_FILE) and os.getenv(OptionsDefine.ENV_TKE_ROLE_ARN):
|
3203
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
3204
|
+
else:
|
3205
|
+
cred = credential.Credential(
|
3206
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
3207
|
+
)
|
3208
|
+
http_profile = HttpProfile(
|
3209
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
3210
|
+
reqMethod="POST",
|
3211
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
3212
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
3213
|
+
)
|
3214
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
3215
|
+
if g_param[OptionsDefine.Language]:
|
3216
|
+
profile.language = g_param[OptionsDefine.Language]
|
3217
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
3218
|
+
client = mod.MpsClient(cred, g_param[OptionsDefine.Region], profile)
|
3219
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
3220
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
3221
|
+
model = models.ModifySmartEraseTemplateRequest()
|
3222
|
+
model.from_json_string(json.dumps(args))
|
3223
|
+
start_time = time.time()
|
3224
|
+
while True:
|
3225
|
+
rsp = client.ModifySmartEraseTemplate(model)
|
3226
|
+
result = rsp.to_json_string()
|
3227
|
+
try:
|
3228
|
+
json_obj = json.loads(result)
|
3229
|
+
except TypeError as e:
|
3230
|
+
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
3231
|
+
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
3232
|
+
break
|
3233
|
+
cur_time = time.time()
|
3234
|
+
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
3235
|
+
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
3236
|
+
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
3237
|
+
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
3238
|
+
else:
|
3239
|
+
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
3240
|
+
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
3241
|
+
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
3242
|
+
|
3243
|
+
|
3140
3244
|
def doCreateSmartSubtitleTemplate(args, parsed_globals):
|
3141
3245
|
g_param = parse_global_arg(parsed_globals)
|
3142
3246
|
|
@@ -5425,7 +5529,7 @@ def doDescribeStreamLinkFlow(args, parsed_globals):
|
|
5425
5529
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
5426
5530
|
|
5427
5531
|
|
5428
|
-
def
|
5532
|
+
def doModifyAIRecognitionTemplate(args, parsed_globals):
|
5429
5533
|
g_param = parse_global_arg(parsed_globals)
|
5430
5534
|
|
5431
5535
|
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
@@ -5454,11 +5558,11 @@ def doDeleteSchedule(args, parsed_globals):
|
|
5454
5558
|
client = mod.MpsClient(cred, g_param[OptionsDefine.Region], profile)
|
5455
5559
|
client._sdkVersion += ("_CLI_" + __version__)
|
5456
5560
|
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
5457
|
-
model = models.
|
5561
|
+
model = models.ModifyAIRecognitionTemplateRequest()
|
5458
5562
|
model.from_json_string(json.dumps(args))
|
5459
5563
|
start_time = time.time()
|
5460
5564
|
while True:
|
5461
|
-
rsp = client.
|
5565
|
+
rsp = client.ModifyAIRecognitionTemplate(model)
|
5462
5566
|
result = rsp.to_json_string()
|
5463
5567
|
try:
|
5464
5568
|
json_obj = json.loads(result)
|
@@ -6517,6 +6621,58 @@ def doDisassociateSecurityGroup(args, parsed_globals):
|
|
6517
6621
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
6518
6622
|
|
6519
6623
|
|
6624
|
+
def doCreateSmartEraseTemplate(args, parsed_globals):
|
6625
|
+
g_param = parse_global_arg(parsed_globals)
|
6626
|
+
|
6627
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
6628
|
+
cred = credential.CVMRoleCredential()
|
6629
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
6630
|
+
cred = credential.STSAssumeRoleCredential(
|
6631
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
6632
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
6633
|
+
)
|
6634
|
+
elif os.getenv(OptionsDefine.ENV_TKE_REGION) and os.getenv(OptionsDefine.ENV_TKE_PROVIDER_ID) and os.getenv(OptionsDefine.ENV_TKE_WEB_IDENTITY_TOKEN_FILE) and os.getenv(OptionsDefine.ENV_TKE_ROLE_ARN):
|
6635
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
6636
|
+
else:
|
6637
|
+
cred = credential.Credential(
|
6638
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
6639
|
+
)
|
6640
|
+
http_profile = HttpProfile(
|
6641
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
6642
|
+
reqMethod="POST",
|
6643
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
6644
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
6645
|
+
)
|
6646
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
6647
|
+
if g_param[OptionsDefine.Language]:
|
6648
|
+
profile.language = g_param[OptionsDefine.Language]
|
6649
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
6650
|
+
client = mod.MpsClient(cred, g_param[OptionsDefine.Region], profile)
|
6651
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
6652
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
6653
|
+
model = models.CreateSmartEraseTemplateRequest()
|
6654
|
+
model.from_json_string(json.dumps(args))
|
6655
|
+
start_time = time.time()
|
6656
|
+
while True:
|
6657
|
+
rsp = client.CreateSmartEraseTemplate(model)
|
6658
|
+
result = rsp.to_json_string()
|
6659
|
+
try:
|
6660
|
+
json_obj = json.loads(result)
|
6661
|
+
except TypeError as e:
|
6662
|
+
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
6663
|
+
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
6664
|
+
break
|
6665
|
+
cur_time = time.time()
|
6666
|
+
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
6667
|
+
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
6668
|
+
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
6669
|
+
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
6670
|
+
else:
|
6671
|
+
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
6672
|
+
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
6673
|
+
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
6674
|
+
|
6675
|
+
|
6520
6676
|
def doModifyContentReviewTemplate(args, parsed_globals):
|
6521
6677
|
g_param = parse_global_arg(parsed_globals)
|
6522
6678
|
|
@@ -6673,7 +6829,7 @@ def doBatchStopStreamLinkFlow(args, parsed_globals):
|
|
6673
6829
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
6674
6830
|
|
6675
6831
|
|
6676
|
-
def
|
6832
|
+
def doDeleteSchedule(args, parsed_globals):
|
6677
6833
|
g_param = parse_global_arg(parsed_globals)
|
6678
6834
|
|
6679
6835
|
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
@@ -6702,11 +6858,11 @@ def doModifyAIRecognitionTemplate(args, parsed_globals):
|
|
6702
6858
|
client = mod.MpsClient(cred, g_param[OptionsDefine.Region], profile)
|
6703
6859
|
client._sdkVersion += ("_CLI_" + __version__)
|
6704
6860
|
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
6705
|
-
model = models.
|
6861
|
+
model = models.DeleteScheduleRequest()
|
6706
6862
|
model.from_json_string(json.dumps(args))
|
6707
6863
|
start_time = time.time()
|
6708
6864
|
while True:
|
6709
|
-
rsp = client.
|
6865
|
+
rsp = client.DeleteSchedule(model)
|
6710
6866
|
result = rsp.to_json_string()
|
6711
6867
|
try:
|
6712
6868
|
json_obj = json.loads(result)
|
@@ -6777,6 +6933,58 @@ def doDeleteStreamLinkEvent(args, parsed_globals):
|
|
6777
6933
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
6778
6934
|
|
6779
6935
|
|
6936
|
+
def doDeleteSmartEraseTemplate(args, parsed_globals):
|
6937
|
+
g_param = parse_global_arg(parsed_globals)
|
6938
|
+
|
6939
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
6940
|
+
cred = credential.CVMRoleCredential()
|
6941
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
6942
|
+
cred = credential.STSAssumeRoleCredential(
|
6943
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
6944
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
6945
|
+
)
|
6946
|
+
elif os.getenv(OptionsDefine.ENV_TKE_REGION) and os.getenv(OptionsDefine.ENV_TKE_PROVIDER_ID) and os.getenv(OptionsDefine.ENV_TKE_WEB_IDENTITY_TOKEN_FILE) and os.getenv(OptionsDefine.ENV_TKE_ROLE_ARN):
|
6947
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
6948
|
+
else:
|
6949
|
+
cred = credential.Credential(
|
6950
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
6951
|
+
)
|
6952
|
+
http_profile = HttpProfile(
|
6953
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
6954
|
+
reqMethod="POST",
|
6955
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
6956
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
6957
|
+
)
|
6958
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
6959
|
+
if g_param[OptionsDefine.Language]:
|
6960
|
+
profile.language = g_param[OptionsDefine.Language]
|
6961
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
6962
|
+
client = mod.MpsClient(cred, g_param[OptionsDefine.Region], profile)
|
6963
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
6964
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
6965
|
+
model = models.DeleteSmartEraseTemplateRequest()
|
6966
|
+
model.from_json_string(json.dumps(args))
|
6967
|
+
start_time = time.time()
|
6968
|
+
while True:
|
6969
|
+
rsp = client.DeleteSmartEraseTemplate(model)
|
6970
|
+
result = rsp.to_json_string()
|
6971
|
+
try:
|
6972
|
+
json_obj = json.loads(result)
|
6973
|
+
except TypeError as e:
|
6974
|
+
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
6975
|
+
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
6976
|
+
break
|
6977
|
+
cur_time = time.time()
|
6978
|
+
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
6979
|
+
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
6980
|
+
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
6981
|
+
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
6982
|
+
else:
|
6983
|
+
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
6984
|
+
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
6985
|
+
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
6986
|
+
|
6987
|
+
|
6780
6988
|
def doDescribeStreamLinkFlowLogs(args, parsed_globals):
|
6781
6989
|
g_param = parse_global_arg(parsed_globals)
|
6782
6990
|
|
@@ -6952,6 +7160,8 @@ ACTION_MAP = {
|
|
6952
7160
|
"StartStreamLinkFlow": doStartStreamLinkFlow,
|
6953
7161
|
"ProcessImage": doProcessImage,
|
6954
7162
|
"ModifyStreamLinkInput": doModifyStreamLinkInput,
|
7163
|
+
"DescribeSmartEraseTemplates": doDescribeSmartEraseTemplates,
|
7164
|
+
"ModifySmartEraseTemplate": doModifySmartEraseTemplate,
|
6955
7165
|
"CreateSmartSubtitleTemplate": doCreateSmartSubtitleTemplate,
|
6956
7166
|
"DescribeStreamLinkRegions": doDescribeStreamLinkRegions,
|
6957
7167
|
"DescribeSchedules": doDescribeSchedules,
|
@@ -6996,7 +7206,7 @@ ACTION_MAP = {
|
|
6996
7206
|
"DescribeContentReviewTemplates": doDescribeContentReviewTemplates,
|
6997
7207
|
"WithdrawsWatermark": doWithdrawsWatermark,
|
6998
7208
|
"DescribeStreamLinkFlow": doDescribeStreamLinkFlow,
|
6999
|
-
"
|
7209
|
+
"ModifyAIRecognitionTemplate": doModifyAIRecognitionTemplate,
|
7000
7210
|
"ModifyAdaptiveDynamicStreamingTemplate": doModifyAdaptiveDynamicStreamingTemplate,
|
7001
7211
|
"ModifySmartSubtitleTemplate": doModifySmartSubtitleTemplate,
|
7002
7212
|
"DeletePersonSample": doDeletePersonSample,
|
@@ -7017,11 +7227,13 @@ ACTION_MAP = {
|
|
7017
7227
|
"DisableSchedule": doDisableSchedule,
|
7018
7228
|
"CreateStreamLinkInput": doCreateStreamLinkInput,
|
7019
7229
|
"DisassociateSecurityGroup": doDisassociateSecurityGroup,
|
7230
|
+
"CreateSmartEraseTemplate": doCreateSmartEraseTemplate,
|
7020
7231
|
"ModifyContentReviewTemplate": doModifyContentReviewTemplate,
|
7021
7232
|
"CreateAIRecognitionTemplate": doCreateAIRecognitionTemplate,
|
7022
7233
|
"BatchStopStreamLinkFlow": doBatchStopStreamLinkFlow,
|
7023
|
-
"
|
7234
|
+
"DeleteSchedule": doDeleteSchedule,
|
7024
7235
|
"DeleteStreamLinkEvent": doDeleteStreamLinkEvent,
|
7236
|
+
"DeleteSmartEraseTemplate": doDeleteSmartEraseTemplate,
|
7025
7237
|
"DescribeStreamLinkFlowLogs": doDescribeStreamLinkFlowLogs,
|
7026
7238
|
"DeleteImageSpriteTemplate": doDeleteImageSpriteTemplate,
|
7027
7239
|
|