Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.07 KB

File metadata and controls

29 lines (22 loc) · 1.07 KB

V1HTTPHeader

HTTPHeader describes a custom header to be used in HTTP probes

Properties

Name Type Description Notes
name str The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.
value str The header field value

Example

from kubernetes.client.models.v1_http_header import V1HTTPHeader

# TODO update the JSON string below
json = "{}"
# create an instance of V1HTTPHeader from a JSON string
v1_http_header_instance = V1HTTPHeader.from_json(json)
# print the JSON string representation of the object
print(V1HTTPHeader.to_json())

# convert the object into a dict
v1_http_header_dict = v1_http_header_instance.to_dict()
# create an instance of V1HTTPHeader from a dict
v1_http_header_from_dict = V1HTTPHeader.from_dict(v1_http_header_dict)

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