Skip to content

update: components/schemas/NodeBalancerConfig #101

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 27, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 26 additions & 12 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14724,38 +14724,52 @@ components:
ssl_commonname:
type: string
description: >
The common name for the SSL certification this port is serving
if this port is not configured to use SSL.
The read-only common name automatically derived from the SSL certificate assigned to this
NodeBalancerConfig. Please refer to this field to verify that the appropriate
certificate is assigned to your NodeBalancerConfig.
example: null
readOnly: true
x-linode-cli-display: 8
ssl_fingerprint:
type: string
description: >
The fingerprint for the SSL certification this port is serving
if this port is not configured to use SSL.
The read-only fingerprint automatically derived from the SSL certificate assigned to this
NodeBalancerConfig. Please refer to this field to verify that the appropriate
certificate is assigned to your NodeBalancerConfig.
example: null
readOnly: true
x-linode-cli-display: 9
ssl_cert:
type: string
format: ssl-cert
nullable: true
description: >
The certificate this port is serving. This is not returned. If set,
this field will come back as "<REDACTED>".
description: |
The PEM-formatted public SSL certificate (or the combined PEM-formatted SSL
certificate and Certificate Authority chain) that should be served on this
NodeBalancerConfig's port.

The contents of this field will not be shown in any responses that display
the NodeBalancerConfig. Instead, `<REDACTED>` will be printed where the field
appears.

Please use the `ssl_commonname` and `ssl_fingerprint` to identify the certificate.
The read-only `ssl_commonname` and `ssl_fingerprint` fields in a NodeBalancerConfig
response are automatically derived from your certificate. Please refer to these fields to
verify that the appropriate certificate was assigned to your NodeBalancerConfig.
example: null
ssl_key:
type: string
format: ssl-key
nullable: true
description: >
The private key corresponding to this port's certificate. This is not
returned. If set, this field will come back as "&lt;REDACTED&gt;".
description: |
The PEM-formatted private key for the SSL certificate set in the `ssl_cert` field.

The contents of this field will not be shown in any responses that display
the NodeBalancerConfig. Instead, `<REDACTED>` will be printed where the field
appears.

Please use the `ssl_commonname` and `ssl_fingerprint` to identify the certificate.
The read-only `ssl_commonname` and `ssl_fingerprint` fields in a NodeBalancerConfig
response are automatically derived from your certificate. Please refer to these fields to
verify that the appropriate certificate was assigned to your NodeBalancerConfig.
example: null
nodes_status:
type: object
Expand Down