We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06de123 commit 4480ca9Copy full SHA for 4480ca9
1 file changed
src/OpenStack.php
@@ -182,4 +182,18 @@ public function imagesV2(array $options = []): \OpenStack\Images\v2\Service
182
$defaults = ['catalogName' => 'glance', 'catalogType' => 'image'];
183
return $this->builder->createService('Images\\v2', array_merge($defaults, $options));
184
}
185
+
186
+ /**
187
+ * Creates a new Gnocchi Metric service v1
188
+ *
189
+ * @param array $options
190
191
+ * @return \OpenStack\Metric\v1\Gnocchi\Service
192
+ */
193
+ public function metricGnocchiV1(array $options = []): \OpenStack\Metric\v1\Gnocchi\Service
194
+ {
195
+ $defaults = ['catalogName' => 'gnocchi', 'catalogType' => 'metric'];
196
197
+ return $this->builder->createService('Metric\\v1\\Gnocchi', array_merge($defaults, $options));
198
+ }
199
0 commit comments