vstats endpoints: update spec
The
update_spec
structure contains fields that can be updated in an endpoint. Warning: This structure is part of a new feature in development. It may be changed at any time and may not have all supported functionality implemented.Representation:
{
"port" : "string",
"name" : "string",
"push_data_format" : "string",
"uri" : "string",
"auth_data" : {
"basic" : {
"password" : "secret string",
"username" : "string"
},
"token" : "secret string"
},
"status" : "ENABLED"
}
"port" : "string",
"name" : "string",
"push_data_format" : "string",
"uri" : "string",
"auth_data" : {
"basic" : {
"password" : "secret string",
"username" : "string"
},
"token" : "secret string"
},
"status" : "ENABLED"
}
Attributes:
Name | Type | Description |
---|---|---|
Required | ||
auth_data.basic.username | string | Username to get access to endpoint. Warning: This attribute is part of a new feature in development. It may be changed at any time and may not have all supported functionality implemented. |
auth_data.basic.password | secret | Password to get access to endpoint. Warning: This attribute is part of a new feature in development. It may be changed at any time and may not have all supported functionality implemented. |
Optional | ||
uri | string | Designates the uniform resource identifier of an endpoint. Warning: This attribute is part of a new feature in development. It may be changed at any time and may not have all supported functionality implemented. Optional. If unset the value is unchanged. |
port | string | Designates the port of an endpoint. Warning: This attribute is part of a new feature in development. It may be changed at any time and may not have all supported functionality implemented. Optional. If unset the value is unchanged. |
name | string | Designates the endpoint name to identify an endpoint. Warning: This attribute is part of a new feature in development. It may be changed at any time and may not have all supported functionality implemented. Optional. If unset the value is unchanged. |
auth_data | auth_spec | Designates the authentication details of an endpoint. Warning: This attribute is part of a new feature in development. It may be changed at any time and may not have all supported functionality implemented. Optional. If unset the value is unchanged. |
auth_data.basic | basic_auth | Basic authentication details of the endpoint. Warning: This attribute is part of a new feature in development. It may be changed at any time and may not have all supported functionality implemented. Optional. When unset the token field will be used. |
auth_data.token | secret | Token based authentication information of the endpoint. Warning: This attribute is part of a new feature in development. It may be changed at any time and may not have all supported functionality implemented. Optional. When unset the basic field will be used. |
push_data_format | string | Designates the type of data format supported for stats data at endpoint. Warning: This attribute is part of a new feature in development. It may be changed at any time and may not have all supported functionality implemented. Optional. If unset the value is unchanged. |
status | string | Endpoint status. Warning: This attribute is part of a new feature in development. It may be changed at any time and may not have all supported functionality implemented. Optional. If unset the value is unchanged. |