Skip to content

Latest commit

 

History

History
342 lines (243 loc) · 13.4 KB

SettingMetasApi.md

File metadata and controls

342 lines (243 loc) · 13.4 KB

bkuser_sdk.SettingMetasApi

All URIs are relative to http://localhost:8004/

Method HTTP request Description
v2_setting_metas_create POST /api/v2/setting_metas/
v2_setting_metas_delete DELETE /api/v2/setting_metas/{lookup_value}/
v2_setting_metas_list GET /api/v2/setting_metas/
v2_setting_metas_partial_update PATCH /api/v2/setting_metas/{lookup_value}/
v2_setting_metas_read GET /api/v2/setting_metas/{lookup_value}/
v2_setting_metas_update PUT /api/v2/setting_metas/{lookup_value}/

v2_setting_metas_create

SettingMeta v2_setting_metas_create(body)

配置信息

Example

from __future__ import print_function
import time
import bkuser_sdk
from bkuser_sdk.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = bkuser_sdk.SettingMetasApi()
body = bkuser_sdk.SettingMeta() # SettingMeta | 

try:
    api_response = api_instance.v2_setting_metas_create(body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling SettingMetasApi->v2_setting_metas_create: %s\n" % e)

Parameters

Name Type Description Notes
body SettingMeta

Return type

SettingMeta

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

v2_setting_metas_delete

v2_setting_metas_delete(lookup_value, fields=fields, lookup_field=lookup_field, include_disabled=include_disabled)

删除对象

Example

from __future__ import print_function
import time
import bkuser_sdk
from bkuser_sdk.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = bkuser_sdk.SettingMetasApi()
lookup_value = 'lookup_value_example' # str | 
fields = 'fields_example' # str | 指定对象返回字段,支持多选,以逗号分隔,例如: username,status,id (optional)
lookup_field = 'lookup_field_example' # str | 指定查询字段,内容为 lookup_value 所属字段, 例如: username (optional)
include_disabled = true # bool | 是否包含已软删除的数据 (optional)

try:
    api_instance.v2_setting_metas_delete(lookup_value, fields=fields, lookup_field=lookup_field, include_disabled=include_disabled)
except ApiException as e:
    print("Exception when calling SettingMetasApi->v2_setting_metas_delete: %s\n" % e)

Parameters

Name Type Description Notes
lookup_value str
fields str 指定对象返回字段,支持多选,以逗号分隔,例如: username,status,id [optional]
lookup_field str 指定查询字段,内容为 lookup_value 所属字段, 例如: username [optional]
include_disabled bool 是否包含已软删除的数据 [optional]

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

[Back to top] [Back to API list] [Back to Model list] [Back to README]

v2_setting_metas_list

object v2_setting_metas_list(ordering=ordering, page=page, page_size=page_size, fields=fields, lookup_field=lookup_field, exact_lookups=exact_lookups, fuzzy_lookups=fuzzy_lookups, wildcard_search=wildcard_search, wildcard_search_fields=wildcard_search_fields, best_match=best_match, time_field=time_field, since=since, until=until, include_disabled=include_disabled)

获取对象列表

Example

from __future__ import print_function
import time
import bkuser_sdk
from bkuser_sdk.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = bkuser_sdk.SettingMetasApi()
ordering = 'ordering_example' # str | Which field to use when ordering the results. (optional)
page = 56 # int | A page number within the paginated result set. (optional)
page_size = 56 # int | Number of results to return per page. (optional)
fields = ['fields_example'] # list[str] | 指定对象返回字段,支持多选,以逗号分隔,例如: username,status,id (optional)
lookup_field = 'lookup_field_example' # str | 查询字段,针对 exact_lookups,fuzzy_lookups 生效 (optional)
exact_lookups = ['exact_lookups_example'] # list[str] | 精确查询 lookup_field 所指定的字段, 支持多选,以逗号分隔,例如: cat,dog,fish (optional)
fuzzy_lookups = ['fuzzy_lookups_example'] # list[str] | 模糊查询 lookup_field 所指定的字段, 支持多选,以逗号分隔,例如: cat,dog,fish (optional)
wildcard_search = 'wildcard_search_example' # str | 在多个字段模糊搜索的内容 (optional)
wildcard_search_fields = ['wildcard_search_fields_example'] # list[str] | 指定多个模糊搜索字段 (optional)
best_match = true # bool | 是否按照最短匹配排序 (optional)
time_field = 'time_field_example' # str | 时间过滤字段,支持 update_time, create_time (optional)
since = '2013-10-20T19:20:30+01:00' # datetime | 筛选某个时间点后的记录 (optional)
until = '2013-10-20T19:20:30+01:00' # datetime | 筛选某个时间点前的记录 (optional)
include_disabled = true # bool | 是否包含已软删除的数据 (optional)

try:
    api_response = api_instance.v2_setting_metas_list(ordering=ordering, page=page, page_size=page_size, fields=fields, lookup_field=lookup_field, exact_lookups=exact_lookups, fuzzy_lookups=fuzzy_lookups, wildcard_search=wildcard_search, wildcard_search_fields=wildcard_search_fields, best_match=best_match, time_field=time_field, since=since, until=until, include_disabled=include_disabled)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling SettingMetasApi->v2_setting_metas_list: %s\n" % e)

Parameters

Name Type Description Notes
ordering str Which field to use when ordering the results. [optional]
page int A page number within the paginated result set. [optional]
page_size int Number of results to return per page. [optional]
fields list[str] 指定对象返回字段,支持多选,以逗号分隔,例如: username,status,id [optional]
lookup_field str 查询字段,针对 exact_lookups,fuzzy_lookups 生效 [optional]
exact_lookups list[str] 精确查询 lookup_field 所指定的字段, 支持多选,以逗号分隔,例如: cat,dog,fish [optional]
fuzzy_lookups list[str] 模糊查询 lookup_field 所指定的字段, 支持多选,以逗号分隔,例如: cat,dog,fish [optional]
wildcard_search str 在多个字段模糊搜索的内容 [optional]
wildcard_search_fields list[str] 指定多个模糊搜索字段 [optional]
best_match bool 是否按照最短匹配排序 [optional]
time_field str 时间过滤字段,支持 update_time, create_time [optional]
since datetime 筛选某个时间点后的记录 [optional]
until datetime 筛选某个时间点前的记录 [optional]
include_disabled bool 是否包含已软删除的数据 [optional]

Return type

object

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

v2_setting_metas_partial_update

SettingMeta v2_setting_metas_partial_update(body, lookup_value)

配置信息

Example

from __future__ import print_function
import time
import bkuser_sdk
from bkuser_sdk.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = bkuser_sdk.SettingMetasApi()
body = bkuser_sdk.SettingMeta() # SettingMeta | 
lookup_value = 'lookup_value_example' # str | 

try:
    api_response = api_instance.v2_setting_metas_partial_update(body, lookup_value)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling SettingMetasApi->v2_setting_metas_partial_update: %s\n" % e)

Parameters

Name Type Description Notes
body SettingMeta
lookup_value str

Return type

SettingMeta

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

v2_setting_metas_read

SettingMeta v2_setting_metas_read(lookup_value, fields=fields, lookup_field=lookup_field, include_disabled=include_disabled)

获取详细信息

Example

from __future__ import print_function
import time
import bkuser_sdk
from bkuser_sdk.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = bkuser_sdk.SettingMetasApi()
lookup_value = 'lookup_value_example' # str | 
fields = 'fields_example' # str | 指定对象返回字段,支持多选,以逗号分隔,例如: username,status,id (optional)
lookup_field = 'lookup_field_example' # str | 指定查询字段,内容为 lookup_value 所属字段, 例如: username (optional)
include_disabled = true # bool | 是否包含已软删除的数据 (optional)

try:
    api_response = api_instance.v2_setting_metas_read(lookup_value, fields=fields, lookup_field=lookup_field, include_disabled=include_disabled)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling SettingMetasApi->v2_setting_metas_read: %s\n" % e)

Parameters

Name Type Description Notes
lookup_value str
fields str 指定对象返回字段,支持多选,以逗号分隔,例如: username,status,id [optional]
lookup_field str 指定查询字段,内容为 lookup_value 所属字段, 例如: username [optional]
include_disabled bool 是否包含已软删除的数据 [optional]

Return type

SettingMeta

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

v2_setting_metas_update

SettingMeta v2_setting_metas_update(body, lookup_value, fields=fields, lookup_field=lookup_field, include_disabled=include_disabled)

更新对象

Example

from __future__ import print_function
import time
import bkuser_sdk
from bkuser_sdk.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = bkuser_sdk.SettingMetasApi()
body = bkuser_sdk.SettingMeta() # SettingMeta | 
lookup_value = 'lookup_value_example' # str | 
fields = 'fields_example' # str | 指定对象返回字段,支持多选,以逗号分隔,例如: username,status,id (optional)
lookup_field = 'lookup_field_example' # str | 指定查询字段,内容为 lookup_value 所属字段, 例如: username (optional)
include_disabled = true # bool | 是否包含已软删除的数据 (optional)

try:
    api_response = api_instance.v2_setting_metas_update(body, lookup_value, fields=fields, lookup_field=lookup_field, include_disabled=include_disabled)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling SettingMetasApi->v2_setting_metas_update: %s\n" % e)

Parameters

Name Type Description Notes
body SettingMeta
lookup_value str
fields str 指定对象返回字段,支持多选,以逗号分隔,例如: username,status,id [optional]
lookup_field str 指定查询字段,内容为 lookup_value 所属字段, 例如: username [optional]
include_disabled bool 是否包含已软删除的数据 [optional]

Return type

SettingMeta

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]