OBJECT

Mutation

link GraphQL Schema definition

1type Mutation {
2
3# Update configuration of extended logger asynchronously.
4#
5# Equivalent to PUT /extendedlogger/asyncconfig
6#
7# Arguments
8# containerNames: This container names is used to assign the
9# containers who will be enabled extended logging.
10# customFields: This custom fields query param is used to set the
11# customized extended log for their own specification.
12# enableFlag: This enable flag is used to enable/disable the
13# extended logging.
14# registrationFlag: This registration flag is used to
15# register/unregister the custom fields. When registrationFlag value is false,
16# and customFields doesn't exist, it means to unregister all custom fields.
17# responseFormat: The response format. Valid values are json and
18# xml. If the request contains an input body, it must use the format specified in
19# responseFormat. If the responseFormat is not specified, the accept HTTP header
20# determines the format of the response. If the accept HTTP header is not
21# specified then default response format is json.
22putExtendedloggerAsyncconfig(
23containerNames: String,
24customFields: String,
25enableFlag: String,
26registrationFlag: String,
27responseFormat: ResponseFormat
28): ExtendedloggerBehavior
30
31}

link Required by

This element is not required by anyone