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: docs/CertificateSigningRequest.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ Name | Type | Description | Notes
9
9
**api_version** | **str** | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources. |
10
10
**kind** | **str** | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds. |
Copy file name to clipboardExpand all lines: docs/Repository.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ Name | Type | Description | Notes
9
9
**api_version** | **str** | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources. |
10
10
**kind** | **str** | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds. |
Copy file name to clipboardExpand all lines: flightctl/models/certificate_signing_request.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ class CertificateSigningRequest(BaseModel):
33
33
api_version: StrictStr=Field(description="APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources.", alias="apiVersion")
34
34
kind: StrictStr=Field(description="Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds.")
@@ -28,9 +28,9 @@ class DevicesSummary(BaseModel):
28
28
A summary of the devices in the fleet returned when fetching a single Fleet.
29
29
"""# noqa: E501
30
30
total: StrictInt=Field(description="The total number of devices in the fleet.")
31
-
application_status: Dict[str, StrictInt] =Field(description="A breakdown of the devices in the fleet by \"application\" status.", alias="applicationStatus")
32
-
summary_status: Dict[str, StrictInt] =Field(description="A breakdown of the devices in the fleet by \"summary\" status.", alias="summaryStatus")
33
-
update_status: Dict[str, StrictInt] =Field(description="A breakdown of the devices in the fleet by \"updated\" status.", alias="updateStatus")
31
+
application_status: Optional[Dict[str, StrictInt]]=Field(default=None, description="A breakdown of the devices in the fleet by \"application\" status.", alias="applicationStatus")
32
+
summary_status: Optional[Dict[str, StrictInt]]=Field(default=None, description="A breakdown of the devices in the fleet by \"summary\" status.", alias="summaryStatus")
33
+
update_status: Optional[Dict[str, StrictInt]]=Field(default=None, description="A breakdown of the devices in the fleet by \"updated\" status.", alias="updateStatus")
Copy file name to clipboardExpand all lines: flightctl/models/repository.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ class Repository(BaseModel):
33
33
api_version: StrictStr=Field(description="APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources.", alias="apiVersion")
34
34
kind: StrictStr=Field(description="Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds.")
0 commit comments