alibabacloud-sls20201230 5.11.1__py3-none-any.whl → 5.11.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_sls20201230/__init__.py +1 -1
- alibabacloud_sls20201230/models/_azure_blob_ingestion_configuration_source.py +8 -0
- alibabacloud_sls20201230/models/_index_key.py +16 -0
- {alibabacloud_sls20201230-5.11.1.dist-info → alibabacloud_sls20201230-5.11.2.dist-info}/METADATA +2 -2
- {alibabacloud_sls20201230-5.11.1.dist-info → alibabacloud_sls20201230-5.11.2.dist-info}/RECORD +8 -8
- {alibabacloud_sls20201230-5.11.1.dist-info → alibabacloud_sls20201230-5.11.2.dist-info}/LICENSE +0 -0
- {alibabacloud_sls20201230-5.11.1.dist-info → alibabacloud_sls20201230-5.11.2.dist-info}/WHEEL +0 -0
- {alibabacloud_sls20201230-5.11.1.dist-info → alibabacloud_sls20201230-5.11.2.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '5.11.
|
|
1
|
+
__version__ = '5.11.2'
|
|
@@ -15,6 +15,7 @@ class AzureBlobIngestionConfigurationSource(DaraModel):
|
|
|
15
15
|
container_name: str = None,
|
|
16
16
|
encoding: str = None,
|
|
17
17
|
end_time: int = None,
|
|
18
|
+
endpoint: str = None,
|
|
18
19
|
format: Dict[str, Any] = None,
|
|
19
20
|
interval: str = None,
|
|
20
21
|
pattern: str = None,
|
|
@@ -38,6 +39,7 @@ class AzureBlobIngestionConfigurationSource(DaraModel):
|
|
|
38
39
|
# This parameter is required.
|
|
39
40
|
self.encoding = encoding
|
|
40
41
|
self.end_time = end_time
|
|
42
|
+
self.endpoint = endpoint
|
|
41
43
|
# This parameter is required.
|
|
42
44
|
self.format = format
|
|
43
45
|
# This parameter is required.
|
|
@@ -78,6 +80,9 @@ class AzureBlobIngestionConfigurationSource(DaraModel):
|
|
|
78
80
|
if self.end_time is not None:
|
|
79
81
|
result['endTime'] = self.end_time
|
|
80
82
|
|
|
83
|
+
if self.endpoint is not None:
|
|
84
|
+
result['endpoint'] = self.endpoint
|
|
85
|
+
|
|
81
86
|
if self.format is not None:
|
|
82
87
|
result['format'] = self.format
|
|
83
88
|
|
|
@@ -133,6 +138,9 @@ class AzureBlobIngestionConfigurationSource(DaraModel):
|
|
|
133
138
|
if m.get('endTime') is not None:
|
|
134
139
|
self.end_time = m.get('endTime')
|
|
135
140
|
|
|
141
|
+
if m.get('endpoint') is not None:
|
|
142
|
+
self.endpoint = m.get('endpoint')
|
|
143
|
+
|
|
136
144
|
if m.get('format') is not None:
|
|
137
145
|
self.format = m.get('format')
|
|
138
146
|
|
|
@@ -14,22 +14,26 @@ class IndexKey(DaraModel):
|
|
|
14
14
|
case_sensitive: bool = None,
|
|
15
15
|
chn: bool = None,
|
|
16
16
|
doc_value: bool = None,
|
|
17
|
+
embedding: str = None,
|
|
17
18
|
index_all: bool = None,
|
|
18
19
|
json_keys: Dict[str, main_models.IndexJsonKey] = None,
|
|
19
20
|
max_depth: int = None,
|
|
20
21
|
token: List[str] = None,
|
|
21
22
|
type: str = None,
|
|
23
|
+
vector_index: str = None,
|
|
22
24
|
):
|
|
23
25
|
self.alias = alias
|
|
24
26
|
self.case_sensitive = case_sensitive
|
|
25
27
|
self.chn = chn
|
|
26
28
|
self.doc_value = doc_value
|
|
29
|
+
self.embedding = embedding
|
|
27
30
|
self.index_all = index_all
|
|
28
31
|
self.json_keys = json_keys
|
|
29
32
|
self.max_depth = max_depth
|
|
30
33
|
self.token = token
|
|
31
34
|
# This parameter is required.
|
|
32
35
|
self.type = type
|
|
36
|
+
self.vector_index = vector_index
|
|
33
37
|
|
|
34
38
|
def validate(self):
|
|
35
39
|
if self.json_keys:
|
|
@@ -54,6 +58,9 @@ class IndexKey(DaraModel):
|
|
|
54
58
|
if self.doc_value is not None:
|
|
55
59
|
result['doc_value'] = self.doc_value
|
|
56
60
|
|
|
61
|
+
if self.embedding is not None:
|
|
62
|
+
result['embedding'] = self.embedding
|
|
63
|
+
|
|
57
64
|
if self.index_all is not None:
|
|
58
65
|
result['index_all'] = self.index_all
|
|
59
66
|
|
|
@@ -71,6 +78,9 @@ class IndexKey(DaraModel):
|
|
|
71
78
|
if self.type is not None:
|
|
72
79
|
result['type'] = self.type
|
|
73
80
|
|
|
81
|
+
if self.vector_index is not None:
|
|
82
|
+
result['vector_index'] = self.vector_index
|
|
83
|
+
|
|
74
84
|
return result
|
|
75
85
|
|
|
76
86
|
def from_map(self, m: dict = None):
|
|
@@ -87,6 +97,9 @@ class IndexKey(DaraModel):
|
|
|
87
97
|
if m.get('doc_value') is not None:
|
|
88
98
|
self.doc_value = m.get('doc_value')
|
|
89
99
|
|
|
100
|
+
if m.get('embedding') is not None:
|
|
101
|
+
self.embedding = m.get('embedding')
|
|
102
|
+
|
|
90
103
|
if m.get('index_all') is not None:
|
|
91
104
|
self.index_all = m.get('index_all')
|
|
92
105
|
|
|
@@ -105,5 +118,8 @@ class IndexKey(DaraModel):
|
|
|
105
118
|
if m.get('type') is not None:
|
|
106
119
|
self.type = m.get('type')
|
|
107
120
|
|
|
121
|
+
if m.get('vector_index') is not None:
|
|
122
|
+
self.vector_index = m.get('vector_index')
|
|
123
|
+
|
|
108
124
|
return self
|
|
109
125
|
|
{alibabacloud_sls20201230-5.11.1.dist-info → alibabacloud_sls20201230-5.11.2.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: alibabacloud-sls20201230
|
|
3
|
-
Version: 5.11.
|
|
3
|
+
Version: 5.11.2
|
|
4
4
|
Summary: Alibaba Cloud Log Service (20201230) SDK Library for Python
|
|
5
5
|
Home-page: https://github.com/aliyun/alibabacloud-python-sdk
|
|
6
6
|
Author: Alibaba Cloud SDK
|
|
@@ -24,7 +24,7 @@ Requires-Python: >=3.7
|
|
|
24
24
|
Description-Content-Type: text/markdown
|
|
25
25
|
License-File: LICENSE
|
|
26
26
|
Requires-Dist: alibabacloud-gateway-sls (<1.0.0,>=0.4.0)
|
|
27
|
-
Requires-Dist: alibabacloud-tea-openapi (<1.0.0,>=0.4.
|
|
27
|
+
Requires-Dist: alibabacloud-tea-openapi (<1.0.0,>=0.4.3)
|
|
28
28
|
Requires-Dist: darabonba-core (<2.0.0,>=1.0.0)
|
|
29
29
|
|
|
30
30
|
English | [简体中文](README-CN.md)
|
{alibabacloud_sls20201230-5.11.1.dist-info → alibabacloud_sls20201230-5.11.2.dist-info}/RECORD
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
alibabacloud_sls20201230/__init__.py,sha256=
|
|
1
|
+
alibabacloud_sls20201230/__init__.py,sha256=06QnGSDhmvZL4Kw21sDPZgO7cGZR3i5YVpavX6kdFY8,22
|
|
2
2
|
alibabacloud_sls20201230/client.py,sha256=r2afO4pcl8jyEXjNtnQy8V0AyzhVmMihqujLq8Xt6v0,673446
|
|
3
3
|
alibabacloud_sls20201230/models/__init__.py,sha256=r8tiWFyW9XoDIU1gjSr8cCGA3RsduW3jvWLSBwQ6Ifc,54958
|
|
4
4
|
alibabacloud_sls20201230/models/_agent_instance_config_gray_configs.py,sha256=yD8157SROkcXIqpM5YDhEqhYbjjj4CvMi474NyTZJ54,997
|
|
@@ -10,7 +10,7 @@ alibabacloud_sls20201230/models/_apply_config_to_machine_group_response.py,sha25
|
|
|
10
10
|
alibabacloud_sls20201230/models/_async_sql_response_data.py,sha256=c6QZlxe_OhVaHVJYqtuxD8E15h5BjpExdVDQY8yw0Ag,4482
|
|
11
11
|
alibabacloud_sls20201230/models/_azure_blob_ingestion.py,sha256=aIAAZDdLvmH-wzWzeNriIhznzciN-3SKhrsnBU6wnSI,3675
|
|
12
12
|
alibabacloud_sls20201230/models/_azure_blob_ingestion_configuration.py,sha256=pbnYFocfKwWnclxAExU8n-ZVtccVJkiiD0iho4YU5Ns,1238
|
|
13
|
-
alibabacloud_sls20201230/models/_azure_blob_ingestion_configuration_source.py,sha256=
|
|
13
|
+
alibabacloud_sls20201230/models/_azure_blob_ingestion_configuration_source.py,sha256=bqmh3t7L44xjGLVl9YPzLzk7wsqOgwJvs0RfW063Dj0,5405
|
|
14
14
|
alibabacloud_sls20201230/models/_call_ai_tools_request.py,sha256=1oilkNmExZGv6GY7jFDP0u269wnCUVKY1vjRWqTmvvI,1291
|
|
15
15
|
alibabacloud_sls20201230/models/_call_ai_tools_response.py,sha256=NUxvsfdoSFyzAuTnPL5jGo8fKhvU_DQCvLgaRvKWNWg,1239
|
|
16
16
|
alibabacloud_sls20201230/models/_change_resource_group_request.py,sha256=7IP4KRh_UmgNMj0EqRPYX9-BjKToekvbBvQ8PIVr8tY,1633
|
|
@@ -225,7 +225,7 @@ alibabacloud_sls20201230/models/_group_configuration.py,sha256=-v11OtDlosCUm4MJo
|
|
|
225
225
|
alibabacloud_sls20201230/models/_histogram.py,sha256=79c4zM1APdLTOVz1IGF0TqsLl5R3gQh8WjXUwH_mxuo,1341
|
|
226
226
|
alibabacloud_sls20201230/models/_index.py,sha256=h8tyuhFJ5DWCQOKsELbAjDaEyXmI2Kisk3TW9uEuPwQ,4676
|
|
227
227
|
alibabacloud_sls20201230/models/_index_json_key.py,sha256=H0Nw42HUTBuWBn3N0__H_CrvOLU7Kq3t0ddSiIYI3co,1928
|
|
228
|
-
alibabacloud_sls20201230/models/_index_key.py,sha256
|
|
228
|
+
alibabacloud_sls20201230/models/_index_key.py,sha256=UhDNb7Pxf9gtWTx29mfKbrMnzmG3dbvZ7pWMs7UsvsY,3658
|
|
229
229
|
alibabacloud_sls20201230/models/_ingest_processor.py,sha256=zzf055e4tS2Bf5pmjxWOD8yKPiEJ2W6ZqBDTyerxjWc,2506
|
|
230
230
|
alibabacloud_sls20201230/models/_ingest_processor_configuration.py,sha256=GO9iUeTPMiFIxnmYdCGciHKZU_3T7pfJhNAJMOKjrx8,1003
|
|
231
231
|
alibabacloud_sls20201230/models/_join_configuration.py,sha256=mmLg5tFjPfCTybDC2zIdgtiL-3alLsxJTcswT1rkXt0,957
|
|
@@ -495,8 +495,8 @@ alibabacloud_sls20201230/models/_update_store_view_request.py,sha256=HyIs5er9AZ3
|
|
|
495
495
|
alibabacloud_sls20201230/models/_update_store_view_response.py,sha256=y6XAVrYQKYc4bN-YtfaQgYtvxClKYcmzQZ9Rj3aOrE8,1041
|
|
496
496
|
alibabacloud_sls20201230/models/_upsert_collection_policy_request.py,sha256=vpnTa2EbAl3QK97qPfQqUhNg7zNAJPMOHAoNwjoz7qk,12241
|
|
497
497
|
alibabacloud_sls20201230/models/_upsert_collection_policy_response.py,sha256=KMLtbK2GZUGlP7k7de3LCY6bEgD0h4lzXo8zHKBXFbU,1048
|
|
498
|
-
alibabacloud_sls20201230-5.11.
|
|
499
|
-
alibabacloud_sls20201230-5.11.
|
|
500
|
-
alibabacloud_sls20201230-5.11.
|
|
501
|
-
alibabacloud_sls20201230-5.11.
|
|
502
|
-
alibabacloud_sls20201230-5.11.
|
|
498
|
+
alibabacloud_sls20201230-5.11.2.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
499
|
+
alibabacloud_sls20201230-5.11.2.dist-info/METADATA,sha256=u9NtFuZcDFwsw4tdnIGTfRNfbbRxv337QucMbX3cVJw,2355
|
|
500
|
+
alibabacloud_sls20201230-5.11.2.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
501
|
+
alibabacloud_sls20201230-5.11.2.dist-info/top_level.txt,sha256=_m_h-kYhApsSWSuotU7YSM9-BDg5IBt6N8Tw-HaO3zU,25
|
|
502
|
+
alibabacloud_sls20201230-5.11.2.dist-info/RECORD,,
|
{alibabacloud_sls20201230-5.11.1.dist-info → alibabacloud_sls20201230-5.11.2.dist-info}/LICENSE
RENAMED
|
File without changes
|
{alibabacloud_sls20201230-5.11.1.dist-info → alibabacloud_sls20201230-5.11.2.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|