alibabacloud-sls20201230 5.11.0__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.
@@ -1 +1 @@
1
- __version__ = '5.11.0'
1
+ __version__ = '5.11.2'
@@ -1690,6 +1690,8 @@ class Client(OpenApiClient):
1690
1690
  body['mode'] = request.mode
1691
1691
  if not DaraCore.is_null(request.processor_id):
1692
1692
  body['processorId'] = request.processor_id
1693
+ if not DaraCore.is_null(request.resource_group_id):
1694
+ body['resourceGroupId'] = request.resource_group_id
1693
1695
  if not DaraCore.is_null(request.shard_count):
1694
1696
  body['shardCount'] = request.shard_count
1695
1697
  if not DaraCore.is_null(request.sharding_policy):
@@ -1750,6 +1752,8 @@ class Client(OpenApiClient):
1750
1752
  body['mode'] = request.mode
1751
1753
  if not DaraCore.is_null(request.processor_id):
1752
1754
  body['processorId'] = request.processor_id
1755
+ if not DaraCore.is_null(request.resource_group_id):
1756
+ body['resourceGroupId'] = request.resource_group_id
1753
1757
  if not DaraCore.is_null(request.shard_count):
1754
1758
  body['shardCount'] = request.shard_count
1755
1759
  if not DaraCore.is_null(request.sharding_policy):
@@ -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
 
@@ -18,6 +18,7 @@ class CreateLogStoreRequest(DaraModel):
18
18
  max_split_shard: int = None,
19
19
  mode: str = None,
20
20
  processor_id: str = None,
21
+ resource_group_id: str = None,
21
22
  shard_count: int = None,
22
23
  sharding_policy: main_models.ShardingPolicy = None,
23
24
  telemetry_type: str = None,
@@ -66,6 +67,7 @@ class CreateLogStoreRequest(DaraModel):
66
67
  self.mode = mode
67
68
  # IngestProcessor ID
68
69
  self.processor_id = processor_id
70
+ self.resource_group_id = resource_group_id
69
71
  # The number of shards.
70
72
  #
71
73
  # > You cannot call the CreateLogStore operation to change the number of shards. You can call the SplitShard or MergeShards operation to change the number of shards.
@@ -124,6 +126,9 @@ class CreateLogStoreRequest(DaraModel):
124
126
  if self.processor_id is not None:
125
127
  result['processorId'] = self.processor_id
126
128
 
129
+ if self.resource_group_id is not None:
130
+ result['resourceGroupId'] = self.resource_group_id
131
+
127
132
  if self.shard_count is not None:
128
133
  result['shardCount'] = self.shard_count
129
134
 
@@ -171,6 +176,9 @@ class CreateLogStoreRequest(DaraModel):
171
176
  if m.get('processorId') is not None:
172
177
  self.processor_id = m.get('processorId')
173
178
 
179
+ if m.get('resourceGroupId') is not None:
180
+ self.resource_group_id = m.get('resourceGroupId')
181
+
174
182
  if m.get('shardCount') is not None:
175
183
  self.shard_count = m.get('shardCount')
176
184
 
@@ -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
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud-sls20201230
3
- Version: 5.11.0
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.1)
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)
@@ -1,5 +1,5 @@
1
- alibabacloud_sls20201230/__init__.py,sha256=KsXvkpGMNPRVfNiVFbY__v5eIHdlPJqXzLuqU9pUxmk,22
2
- alibabacloud_sls20201230/client.py,sha256=fzTYvo5rEUBD-unSixJGcVDbFI0ag3U1P7A_StR6vzw,673198
1
+ alibabacloud_sls20201230/__init__.py,sha256=06QnGSDhmvZL4Kw21sDPZgO7cGZR3i5YVpavX6kdFY8,22
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
5
5
  alibabacloud_sls20201230/models/_alert.py,sha256=dobd4zxFuxDFWIXPBkT0uspqQHeuR987Rw-8bQOdRiE,3103
@@ -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=fkh8LIinbWwZitiL2Y9_uq5OjqVhJi2kmAWel0leuuE,5167
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
@@ -51,7 +51,7 @@ alibabacloud_sls20201230/models/_create_etlrequest.py,sha256=wQ7H6Y975nH3EstF3vl
51
51
  alibabacloud_sls20201230/models/_create_etlresponse.py,sha256=exH1NDhSXKBTqoVxOpF6THkwgbX6tY2vzmBORrXpurk,1035
52
52
  alibabacloud_sls20201230/models/_create_index_request.py,sha256=V9wTAloT4Igeg4TPJE7F_DN4PIxKsttqpgTk0IOKBi8,929
53
53
  alibabacloud_sls20201230/models/_create_index_response.py,sha256=WPgyuuKa7sibE5xvdobeM8G_zufpn31iR9mYpI4LX54,1037
54
- alibabacloud_sls20201230/models/_create_log_store_request.py,sha256=rJjgiIK3NPb9vBgyrWnjncly5kMAxOdAQ0ryn71K9pw,8637
54
+ alibabacloud_sls20201230/models/_create_log_store_request.py,sha256=SugjqG6wMO1DVBc55teRmL8kc4YH0cuoilufVNliUvA,8950
55
55
  alibabacloud_sls20201230/models/_create_log_store_response.py,sha256=78ll_DtOsUHBmVSXoIDn1rFqcxMDfNlyMQw1UaOMYG4,1040
56
56
  alibabacloud_sls20201230/models/_create_logging_request.py,sha256=ej560r6-VrSHudkfxAwTeXn-Zi5t01DiJhkHbo86nRI,3379
57
57
  alibabacloud_sls20201230/models/_create_logging_response.py,sha256=Mp-3xkzzEXXNZB6hbi9gQNOHid7Q4Lga8PmddVYwXXw,1039
@@ -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=--AYmO0f01EwmD7npwcnpPU2-FICQeEhovRA4A2V1YY,3137
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.0.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
499
- alibabacloud_sls20201230-5.11.0.dist-info/METADATA,sha256=1CzD53Jqm6nybfc0MtxuZFK4N2L9zPztsJfN-cZjbd0,2355
500
- alibabacloud_sls20201230-5.11.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
501
- alibabacloud_sls20201230-5.11.0.dist-info/top_level.txt,sha256=_m_h-kYhApsSWSuotU7YSM9-BDg5IBt6N8Tw-HaO3zU,25
502
- alibabacloud_sls20201230-5.11.0.dist-info/RECORD,,
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,,