@@ -138,8 +138,14 @@ class BodyPilotsAddPilotStamps(_serialization.Model):
138
138
:vartype vo: str
139
139
:ivar grid_type: Grid type of the pilots.
140
140
:vartype grid_type: str
141
+ :ivar grid_site: Pilots grid site.
142
+ :vartype grid_site: str
143
+ :ivar destination_site: Pilots destination site.
144
+ :vartype destination_site: str
141
145
:ivar pilot_references: Association of a pilot reference with a pilot stamp.
142
146
:vartype pilot_references: dict[str, str]
147
+ :ivar status_reason: Status reason of the pilots.
148
+ :vartype status_reason: str
143
149
:ivar generate_secrets: If we want to create secrets with the pilots.
144
150
:vartype generate_secrets: bool
145
151
:ivar pilot_secret_use_count_max: How much time can a secret be used.
@@ -155,7 +161,10 @@ class BodyPilotsAddPilotStamps(_serialization.Model):
155
161
"pilot_stamps" : {"key" : "pilot_stamps" , "type" : "[str]" },
156
162
"vo" : {"key" : "vo" , "type" : "str" },
157
163
"grid_type" : {"key" : "grid_type" , "type" : "str" },
164
+ "grid_site" : {"key" : "grid_site" , "type" : "str" },
165
+ "destination_site" : {"key" : "destination_site" , "type" : "str" },
158
166
"pilot_references" : {"key" : "pilot_references" , "type" : "{str}" },
167
+ "status_reason" : {"key" : "status_reason" , "type" : "str" },
159
168
"generate_secrets" : {"key" : "generate_secrets" , "type" : "bool" },
160
169
"pilot_secret_use_count_max" : {"key" : "pilot_secret_use_count_max" , "type" : "int" },
161
170
}
@@ -166,7 +175,10 @@ def __init__(
166
175
pilot_stamps : List [str ],
167
176
vo : str ,
168
177
grid_type : str = "Dirac" ,
178
+ grid_site : str = "Unknown" ,
179
+ destination_site : str = "NotAssigned" ,
169
180
pilot_references : Optional [Dict [str , str ]] = None ,
181
+ status_reason : str = "Unknown" ,
170
182
generate_secrets : bool = True ,
171
183
pilot_secret_use_count_max : int = 1 ,
172
184
** kwargs : Any
@@ -178,8 +190,14 @@ def __init__(
178
190
:paramtype vo: str
179
191
:keyword grid_type: Grid type of the pilots.
180
192
:paramtype grid_type: str
193
+ :keyword grid_site: Pilots grid site.
194
+ :paramtype grid_site: str
195
+ :keyword destination_site: Pilots destination site.
196
+ :paramtype destination_site: str
181
197
:keyword pilot_references: Association of a pilot reference with a pilot stamp.
182
198
:paramtype pilot_references: dict[str, str]
199
+ :keyword status_reason: Status reason of the pilots.
200
+ :paramtype status_reason: str
183
201
:keyword generate_secrets: If we want to create secrets with the pilots.
184
202
:paramtype generate_secrets: bool
185
203
:keyword pilot_secret_use_count_max: How much time can a secret be used.
@@ -189,7 +207,10 @@ def __init__(
189
207
self .pilot_stamps = pilot_stamps
190
208
self .vo = vo
191
209
self .grid_type = grid_type
210
+ self .grid_site = grid_site
211
+ self .destination_site = destination_site
192
212
self .pilot_references = pilot_references
213
+ self .status_reason = status_reason
193
214
self .generate_secrets = generate_secrets
194
215
self .pilot_secret_use_count_max = pilot_secret_use_count_max
195
216
@@ -234,8 +255,8 @@ def __init__(self, *, n: int, expiration_minutes: int, pilot_secret_use_count_ma
234
255
self .pilot_secret_use_count_max = pilot_secret_use_count_max
235
256
236
257
237
- class BodyPilotsPilotLogin (_serialization .Model ):
238
- """Body_pilots_pilot_login .
258
+ class BodyPilotsPerformSecretExchange (_serialization .Model ):
259
+ """Body_pilots_perform_secret_exchange .
239
260
240
261
All required parameters must be populated in order to send to server.
241
262
0 commit comments