Skip to content

Commit 052110c

Browse files
author
ci_volc_sdk_gen
committed
feat: auto generate for graph-Python-2025-08-15-online-1449-2025_08_13_13_57_56
1 parent c86dd7d commit 052110c

35 files changed

+5586
-5
lines changed

meta.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"lasted": "4.0.10",
3-
"meta_commit": "3986ef5bde77f0161fd6e41f1d35d20bb4560594"
2+
"lasted": "4.0.11",
3+
"meta_commit": "b48770d5818ce5b9b997424933895c8e01c13a37"
44
}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from setuptools import setup, find_packages # noqa: H301
44

55
NAME = "volcengine-python-sdk"
6-
VERSION = "4.0.10"
6+
VERSION = "4.0.11"
77
# To install the library, run the following
88
#
99
# python setup.py install

volcenginesdkcore/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
6767
self.default_headers[header_name] = header_value
6868
self.cookie = cookie
6969
# Set default User-Agent.
70-
self.user_agent = 'volcstack-python-sdk/4.0.10'
70+
self.user_agent = 'volcstack-python-sdk/4.0.11'
7171
self.client_side_validation = configuration.client_side_validation
7272

7373
self.interceptor_chain = InterceptorChain()

volcenginesdkcore/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ def to_debug_report(self):
267267
"OS: {env}\n" \
268268
"Python Version: {pyversion}\n" \
269269
"Version of the API: 0.1.0\n" \
270-
"SDK Package Version: 4.0.10".\
270+
"SDK Package Version: 4.0.11".\
271271
format(env=sys.platform, pyversion=sys.version)
272272

273273
@property
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# coding: utf-8
2+
3+
# flake8: noqa
4+
5+
"""
6+
graph20250815
7+
8+
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
9+
10+
OpenAPI spec version: common-version
11+
12+
Generated by: https://github.com/swagger-api/swagger-codegen.git
13+
"""
14+
15+
16+
from __future__ import absolute_import
17+
18+
# import apis into sdk package
19+
from volcenginesdkgraph20250815.api.graph20250815_api import GRAPH20250815Api
20+
21+
# import models into sdk package
22+
from volcenginesdkgraph20250815.models.add_graph_tables_request import AddGraphTablesRequest
23+
from volcenginesdkgraph20250815.models.add_graph_tables_response import AddGraphTablesResponse
24+
from volcenginesdkgraph20250815.models.column_for_add_graph_tables_input import ColumnForAddGraphTablesInput
25+
from volcenginesdkgraph20250815.models.column_for_get_graph_table_schema_output import ColumnForGetGraphTableSchemaOutput
26+
from volcenginesdkgraph20250815.models.column_for_modify_graph_schema_input import ColumnForModifyGraphSchemaInput
27+
from volcenginesdkgraph20250815.models.edge_for_add_graph_tables_input import EdgeForAddGraphTablesInput
28+
from volcenginesdkgraph20250815.models.edge_for_get_graph_table_schema_output import EdgeForGetGraphTableSchemaOutput
29+
from volcenginesdkgraph20250815.models.edge_for_modify_graph_schema_input import EdgeForModifyGraphSchemaInput
30+
from volcenginesdkgraph20250815.models.edge_vertex_constraint_for_add_graph_tables_input import EdgeVertexConstraintForAddGraphTablesInput
31+
from volcenginesdkgraph20250815.models.edge_vertex_constraint_for_get_graph_table_schema_output import EdgeVertexConstraintForGetGraphTableSchemaOutput
32+
from volcenginesdkgraph20250815.models.edge_vertex_constraint_for_modify_graph_schema_input import EdgeVertexConstraintForModifyGraphSchemaInput
33+
from volcenginesdkgraph20250815.models.get_graph_table_schema_request import GetGraphTableSchemaRequest
34+
from volcenginesdkgraph20250815.models.get_graph_table_schema_response import GetGraphTableSchemaResponse
35+
from volcenginesdkgraph20250815.models.get_graph_table_schema_status_request import GetGraphTableSchemaStatusRequest
36+
from volcenginesdkgraph20250815.models.get_graph_table_schema_status_response import GetGraphTableSchemaStatusResponse
37+
from volcenginesdkgraph20250815.models.get_table_request import GetTableRequest
38+
from volcenginesdkgraph20250815.models.get_table_response import GetTableResponse
39+
from volcenginesdkgraph20250815.models.modify_graph_schema_request import ModifyGraphSchemaRequest
40+
from volcenginesdkgraph20250815.models.modify_graph_schema_response import ModifyGraphSchemaResponse
41+
from volcenginesdkgraph20250815.models.secondary_index_for_add_graph_tables_input import SecondaryIndexForAddGraphTablesInput
42+
from volcenginesdkgraph20250815.models.secondary_index_for_get_graph_table_schema_output import SecondaryIndexForGetGraphTableSchemaOutput
43+
from volcenginesdkgraph20250815.models.secondary_index_for_modify_graph_schema_input import SecondaryIndexForModifyGraphSchemaInput
44+
from volcenginesdkgraph20250815.models.table_for_add_graph_tables_input import TableForAddGraphTablesInput
45+
from volcenginesdkgraph20250815.models.table_schema_for_get_graph_table_schema_output import TableSchemaForGetGraphTableSchemaOutput
46+
from volcenginesdkgraph20250815.models.vertex_for_add_graph_tables_input import VertexForAddGraphTablesInput
47+
from volcenginesdkgraph20250815.models.vertex_for_get_graph_table_schema_output import VertexForGetGraphTableSchemaOutput
48+
from volcenginesdkgraph20250815.models.vertex_for_modify_graph_schema_input import VertexForModifyGraphSchemaInput
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
from __future__ import absolute_import
2+
3+
# flake8: noqa
4+
5+
# import apis into api package
6+
from volcenginesdkgraph20250815.api.graph20250815_api import GRAPH20250815Api

0 commit comments

Comments
 (0)