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
List the user's permissions for all instances of a resource type.
244
244
@@ -262,10 +262,12 @@ func main() {
262
262
acceptVersion:="1.0.0"// string | Versioning: Optional header to request a specific version of the API. While it is possible to specify a particular major, minor or patch version it is not recommended for production use cases. Only the major version number should be specified as minor and patch versions can be updated without warning. (optional)
263
263
embed:=false// bool | Embedding: The whether or not to embed resources into the collection (rather than return links). (optional) (default to false)
264
264
ifNoneMatch:="ifNoneMatch_example"// string | Caching: Optional header to improve performance. The value of this header should be the `ETag` of the resource when last read. If this is provided and there have been no changes to the resource then a 304 will be returned without content. (optional)
265
+
limit:=int32(20) // int32 | Paging: The maximum number of items to return in a resource. (optional) (default to 20)
266
+
offset:=int32(0) // int32 | Paging: The index of the first item to return in the resource. (optional) (default to 0)
@@ -296,6 +298,8 @@ Name | Type | Description | Notes
296
298
**acceptVersion** | **string** | Versioning: Optional header to request a specific version of the API. While it is possible to specify a particular major, minor or patch version it is not recommended for production use cases. Only the major version number should be specified as minor and patch versions can be updated without warning. |
297
299
**embed** | **bool** | Embedding: The whether or not to embed resources into the collection (rather than return links). | [default to false]
298
300
**ifNoneMatch** | **string** | Caching: Optional header to improve performance. The value of this header should be the `ETag` of the resource when last read. If this is provided and there have been no changes to the resource then a 304 will be returned without content. |
301
+
**limit** | **int32** | Paging: The maximum number of items to return in a resource. | [default to 20]
302
+
**offset** | **int32** | Paging: The index of the first item to return in the resource. | [default to 0]
Copy file name to clipboardExpand all lines: client/docs/FPGAJobItem.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ Name | Type | Description | Notes
23
23
**StepsTotal** | **NullableInt32** | The total number of steps that will need to be performed to complete the job. Please note: - This value also includes additional service orchestration steps, that are outside the core process, so may differ from the job progress indicated within job messages. - This value will only be available after the job has been started. | [readonly]
24
24
**Success** | **bool** | True if the job was successful (this should be used in conjunction with the `done` property). | [readonly]
25
25
**SupportConnection** | **bool** | True when the job allows direct connection to the job instance (application running on the FPGA). | [readonly]
**Timeout** | Pointer to **int64** | The maximum time (in seconds) that the job will be allowed to run. After the timeout has expired the job will be aborted and reported as a failure. The timeout does not include any time the request spent being queued, waiting for the job to be started. | [optional][default to 300]
28
28
**Title** | Pointer to **NullableString** | Optional human-readable name of the FPGA job. | [optional]
acceptVersion:="1.0.0"// string | Versioning: Optional header to request a specific version of the API. While it is possible to specify a particular major, minor or patch version it is not recommended for production use cases. Only the major version number should be specified as minor and patch versions can be updated without warning. (optional)
**ExtraKeys** | Pointer to **map[string]string** | Additional keys which may be required to differentiate between targets when software and hardware images are not enough. | [optional]
12
+
**HardwareImage** | **string** | identifier of the hardware image |
13
+
**SoftwareImage** | **string** | identifier of the software image |
NewFPGATargetIDWithDefaults instantiates a new FPGATargetID object
31
+
This constructor will only assign default values to properties that have it defined,
32
+
but it doesn't guarantee that properties required by API are set
33
+
34
+
### GetExtraKeys
35
+
36
+
`func (o *FPGATargetID) GetExtraKeys() map[string]string`
37
+
38
+
GetExtraKeys returns the ExtraKeys field if non-nil, zero value otherwise.
39
+
40
+
### GetExtraKeysOk
41
+
42
+
`func (o *FPGATargetID) GetExtraKeysOk() (*map[string]string, bool)`
43
+
44
+
GetExtraKeysOk returns a tuple with the ExtraKeys field if it's non-nil, zero value otherwise
45
+
and a boolean to check if the value has been set.
46
+
47
+
### SetExtraKeys
48
+
49
+
`func (o *FPGATargetID) SetExtraKeys(v map[string]string)`
50
+
51
+
SetExtraKeys sets ExtraKeys field to given value.
52
+
53
+
### HasExtraKeys
54
+
55
+
`func (o *FPGATargetID) HasExtraKeys() bool`
56
+
57
+
HasExtraKeys returns a boolean if a field has been set.
58
+
59
+
### SetExtraKeysNil
60
+
61
+
`func (o *FPGATargetID) SetExtraKeysNil(b bool)`
62
+
63
+
SetExtraKeysNil sets the value for ExtraKeys to be an explicit nil
64
+
65
+
### UnsetExtraKeys
66
+
`func (o *FPGATargetID) UnsetExtraKeys()`
67
+
68
+
UnsetExtraKeys ensures that no value is present for ExtraKeys, not even an explicit nil
69
+
### GetHardwareImage
70
+
71
+
`func (o *FPGATargetID) GetHardwareImage() string`
72
+
73
+
GetHardwareImage returns the HardwareImage field if non-nil, zero value otherwise.
74
+
75
+
### GetHardwareImageOk
76
+
77
+
`func (o *FPGATargetID) GetHardwareImageOk() (*string, bool)`
78
+
79
+
GetHardwareImageOk returns a tuple with the HardwareImage field if it's non-nil, zero value otherwise
80
+
and a boolean to check if the value has been set.
81
+
82
+
### SetHardwareImage
83
+
84
+
`func (o *FPGATargetID) SetHardwareImage(v string)`
85
+
86
+
SetHardwareImage sets HardwareImage field to given value.
87
+
88
+
89
+
### GetSoftwareImage
90
+
91
+
`func (o *FPGATargetID) GetSoftwareImage() string`
92
+
93
+
GetSoftwareImage returns the SoftwareImage field if non-nil, zero value otherwise.
94
+
95
+
### GetSoftwareImageOk
96
+
97
+
`func (o *FPGATargetID) GetSoftwareImageOk() (*string, bool)`
98
+
99
+
GetSoftwareImageOk returns a tuple with the SoftwareImage field if it's non-nil, zero value otherwise
100
+
and a boolean to check if the value has been set.
101
+
102
+
### SetSoftwareImage
103
+
104
+
`func (o *FPGATargetID) SetSoftwareImage(v string)`
105
+
106
+
SetSoftwareImage sets SoftwareImage field to given value.
107
+
108
+
109
+
110
+
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
0 commit comments