You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: flightctl/models/certificate_signing_request_spec.py
+1-6Lines changed: 1 addition & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ class CertificateSigningRequestSpec(BaseModel):
30
30
expiration_seconds: Optional[StrictInt] =Field(default=None, description="Requested duration of validity for the certificate.", alias="expirationSeconds")
31
31
extra: Optional[Dict[str, List[StrictStr]]] =Field(default=None, description="Extra attributes of the user that created the CSR, populated by the API server on creation and immutable.")
32
32
request: Optional[Union[StrictBytes, StrictStr]] =Field(description="The base64-encoded PEM-encoded PKCS#10 CSR. Matches the spec.request field in a kubernetes CertificateSigningRequest resource.")
33
-
signer_name: Optional[StrictStr]=Field(description="Indicates the requested signer, and is a qualified name.", alias="signerName")
33
+
signer_name: StrictStr=Field(description="Indicates the requested signer, and is a qualified name.", alias="signerName")
34
34
uid: Optional[StrictStr] =Field(default=None, description="UID of the user that created the CSR, populated by the API server on creation and immutable.")
35
35
usages: Optional[List[StrictStr]] =Field(default=None, description="Usages specifies a set of key usages requested in the issued certificate.")
36
36
username: Optional[StrictStr] =Field(default=None, description="Name of the user that created the CSR, populated by the API server on creation and immutable.")
0 commit comments