@scaleway/sdk 0.1.0-alpha.4 → 0.1.0-alpha.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -22,6 +22,7 @@ class FlexibleipAPI extends API {
22
22
  this.createFlexibleIP = request => this.client.fetch({
23
23
  body: JSON.stringify({
24
24
  description: request.description,
25
+ is_ipv6: request.isIpv6,
25
26
  project_id: request.projectId ?? this.client.settings.defaultProjectId,
26
27
  reverse: request.reverse,
27
28
  server_id: request.serverId,
@@ -152,6 +152,7 @@ class FunctionAPI extends API {
152
152
  min_scale: request.minScale,
153
153
  privacy: request.privacy ?? 'unknown_privacy',
154
154
  redeploy: request.redeploy,
155
+ runtime: request.runtime ?? 'unknown_runtime',
155
156
  secret_environment_variables: request.secretEnvironmentVariables,
156
157
  timeout: request.timeout
157
158
  }),