We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 15aca73 + f8bedb6 commit 1419eb2Copy full SHA for 1419eb2
src/Compute/v2/Api.php
@@ -163,6 +163,7 @@ public function postServer()
163
'availabilityZone' => $this->params->availabilityZone(),
164
'networks' => $this->params->networks(),
165
'blockDeviceMapping' => $this->params->blockDeviceMapping(),
166
+ 'keyName' => $this->params->keyName()
167
]
168
];
169
}
src/Compute/v2/Params.php
@@ -369,4 +369,14 @@ public function networkLabel()
369
'required' => true,
370
371
372
+
373
+ public function keyName()
374
+ {
375
+ return [
376
+ 'type' => self::STRING_TYPE,
377
+ 'required' => false,
378
+ 'sentAs' => 'key_name',
379
+ 'description' => 'The key name',
380
+ ];
381
+ }
382
0 commit comments