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
MSISDN in E.164 format (starting with country code) of
247
245
the mobile subscription being used by the device. Optionally
248
246
prefixed with '+'.
249
247
schema:
250
-
type: string
251
-
pattern: '^\+?[0-9]{5,15}$'
248
+
$ref: "#/components/schemas/PhoneNumber"
252
249
253
250
responses:
254
251
"200":
@@ -318,20 +315,12 @@ components:
318
315
Provider object (the name of the cloud provider or operator hosting that
319
316
edge cloud zone).
320
317
properties:
321
-
edgeCloudZone:
322
-
description: |
323
-
An Edge Cloud Zone, uniquely identified by a combination
324
-
of the value of the Edge Resource Name object and the value of the
325
-
Provider object (the name of the cloud provider or operator hosting
326
-
that egde cloud zone).
327
-
type: object
328
-
properties:
329
-
edgeCloudZoneId:
330
-
$ref: "#/components/schemas/EdgeCloudZoneId"
331
-
edgeCloudZoneName:
332
-
$ref: "#/components/schemas/EdgeCloudZoneName"
333
-
edgeCloudProvider:
334
-
$ref: "#/components/schemas/EdgeCloudProvider"
318
+
edgeCloudZoneId:
319
+
$ref: "#/components/schemas/EdgeCloudZoneId"
320
+
edgeCloudZoneName:
321
+
$ref: "#/components/schemas/EdgeCloudZoneName"
322
+
edgeCloudProvider:
323
+
$ref: "#/components/schemas/EdgeCloudProvider"
335
324
336
325
EdgeCloudZoneId:
337
326
description: |
@@ -340,7 +329,6 @@ components:
340
329
format: uuid
341
330
additionalProperties: false
342
331
343
-
344
332
EdgeCloudZoneName:
345
333
description: |
346
334
Edge Cloud Zone Name - the common name for the Edge Cloud Zone.
@@ -352,8 +340,6 @@ components:
352
340
The company name of the Edge Cloud Zone provider.
353
341
type: string
354
342
355
-
356
-
357
343
ErrorResponse:
358
344
description: Error code and human-readable description.
359
345
type: object
@@ -370,6 +356,30 @@ components:
370
356
This parameter appears when there is an error.
371
357
A human readable explanation specific to this occurrence of the
372
358
problem.
359
+
360
+
PhoneNumber:
361
+
description: A public identifier addressing a telephone subscription. In mobile networks it corresponds to the MSISDN (Mobile Station International Subscriber Directory Number). In order to be globally unique it has to be formatted in international format, according to E.164 standard, prefixed with '+'.
362
+
type: string
363
+
pattern: '^\+[1-9][0-9]{4,14}$'
364
+
example: "+123456789"
365
+
366
+
NetworkAccessIdentifier:
367
+
description: A public identifier addressing a subscription in a mobile network. In 3GPP terminology, it corresponds to the GPSI formatted with the External Identifier ({Local Identifier}@{Domain Identifier}). Unlike the telephone number, the network access identifier is not subjected to portability ruling in force, and is individually managed by each operator.
description: A single IPv4 address with no subnet mask
373
+
type: string
374
+
format: ipv4
375
+
example: "84.125.93.10"
376
+
377
+
DeviceIpv6Address:
378
+
description: |
379
+
The device should be identified by the observed IPv6 address, or by any single IPv6 address from within the subnet allocated to the device (e.g. adding ::0 to the /64 prefix).
380
+
type: string
381
+
format: ipv6
382
+
example: 2001:db8:85a3:8d3:1319:8a2e:370:7344
373
383
374
384
375
385
###################################
@@ -578,3 +588,5 @@ components:
578
588
"status": 504,
579
589
"message": "The service is currently not available"
0 commit comments