You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# > A Log Service project that is automatically created by SAE when you create an application is deleted when the application is deleted. Therefore, when you create an application, you cannot select a Log Service project that is automatically created by SAE for log collection.
13026
13027
self.sls_configs = sls_configs
13028
+
self.sls_log_env_tags = sls_log_env_tags
13027
13029
# Enable application startup probe.
13028
13030
#
13029
13031
# Check succeeded: Indicates that the application has started successfully. If you have configured Liveness and Readiness checks, they will be performed after the application startup is successful.
@@ -13230,6 +13232,8 @@ def to_map(self):
13230
13232
result['SidecarContainersConfig'].append(k.to_map() if k else None)
13231
13233
if self.sls_configs is not None:
13232
13234
result['SlsConfigs'] = self.sls_configs
13235
+
if self.sls_log_env_tags is not None:
13236
+
result['SlsLogEnvTags'] = self.sls_log_env_tags
13233
13237
if self.startup_probe is not None:
13234
13238
result['StartupProbe'] = self.startup_probe
13235
13239
if self.termination_grace_period_seconds is not None:
if m.get('TerminationGracePeriodSeconds') is not None:
@@ -13506,6 +13512,7 @@ def __init__(
13506
13512
service_tags: str = None,
13507
13513
sidecar_containers_config_shrink: str = None,
13508
13514
sls_configs: str = None,
13515
+
sls_log_env_tags: str = None,
13509
13516
startup_probe: str = None,
13510
13517
termination_grace_period_seconds: int = None,
13511
13518
timezone: str = None,
@@ -13879,6 +13886,7 @@ def __init__(
13879
13886
#
13880
13887
# > A Log Service project that is automatically created by SAE when you create an application is deleted when the application is deleted. Therefore, when you create an application, you cannot select a Log Service project that is automatically created by SAE for log collection.
13881
13888
self.sls_configs = sls_configs
13889
+
self.sls_log_env_tags = sls_log_env_tags
13882
13890
# Enable application startup probe.
13883
13891
#
13884
13892
# Check succeeded: Indicates that the application has started successfully. If you have configured Liveness and Readiness checks, they will be performed after the application startup is successful.
# > A Log Service project that is automatically created by SAE when you create an application is deleted when the application is deleted. Therefore, when you create an application, you cannot select a Log Service project that is automatically created by SAE for log collection.
20850
20863
self.sls_configs = sls_configs
20864
+
self.sls_log_env_tags = sls_log_env_tags
20851
20865
# Check Failure: Indicates that the application failed to start. The system will report the exception and automatically restart it.
20852
20866
#
20853
20867
# Note:
@@ -21081,6 +21095,8 @@ def to_map(self):
21081
21095
result['SidecarContainersConfig'].append(k.to_map() if k else None)
# > A Log Service project that is automatically created by SAE when you create an application is deleted when the application is deleted. Therefore, when you create an application, you cannot select a Log Service project that is automatically created by SAE for log collection.
21747
21766
self.sls_configs = sls_configs
21767
+
self.sls_log_env_tags = sls_log_env_tags
21748
21768
# Check Failure: Indicates that the application failed to start. The system will report the exception and automatically restart it.
# If you do not need to modify the logging configurations when you deploy the application, configure the **SlsConfigs** parameter only in the first request. You do not need to include this parameter in subsequent requests. If you no longer need to use Log Service, leave the **SlsConfigs** parameter empty in the request.
23949
23974
self.sls_configs = sls_configs
23975
+
self.sls_log_env_tags = sls_log_env_tags
23950
23976
# Enable startup probe.
23951
23977
self.startup_probe = startup_probe
23952
23978
# Configuration of K8s Service discovery and registration, and full-chain gray-release feature.
@@ -24225,6 +24251,8 @@ def to_map(self):
24225
24251
result['SidecarContainersConfig'].append(k.to_map() if k else None)
0 commit comments