Skip to content

Commit

Permalink
Fmc/new pmn api master (Azure#6496)
Browse files Browse the repository at this point in the history
* Copy 2022-01-01-preview API to new version folder

* Update API version number

* Remove deprecated TacList field

* Rename interfaces to be 4G/5G agnostic

* Remove SIM activation/deactivation API paths as this action is no longer supported

* Update configurationState field to be more generic and useful

* Fix linting errors

* Fix up interface documentation strings

* Commit changes from prettier

* Replace ConfigurationState with SimState in 2021-04-01-preview API

* Fix up accidental change

* Markups from ARM review

Co-authored-by: Fiona Corden <[email protected]>
  • Loading branch information
rainbowFi and rainbowFi authored Mar 11, 2022
1 parent ce5fa9f commit 7f17f65
Show file tree
Hide file tree
Showing 75 changed files with 8,017 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -170,16 +170,17 @@
},
"description": "Tags object for patch operations."
},
"ConfigurationState": {
"SimState": {
"type": "string",
"readOnly": true,
"description": "The state of the configuration for this resource - complete or incomplete.",
"description": "The state of the sim resource.",
"enum": [
"Incomplete",
"Complete"
"Disabled",
"Enabled",
"Invalid"
],
"x-ms-enum": {
"name": "ConfigurationState",
"name": "SimState",
"modelAsString": true
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"location": "testLocation",
"properties": {
"provisioningState": "Succeeded",
"configurationState": "Complete",
"simState": "Enabled",
"integratedCircuitCardIdentifier": "8900000000000000000",
"internationalMobileSubscriberIdentity": "00000",
"mobileNetwork": {
Expand Down Expand Up @@ -67,7 +67,7 @@
"location": "testLocation",
"properties": {
"provisioningState": "Succeeded",
"configurationState": "Complete",
"simState": "Enabled",
"integratedCircuitCardIdentifier": "8900000000000000000",
"internationalMobileSubscriberIdentity": "00000",
"mobileNetwork": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"location": "testLocation",
"properties": {
"provisioningState": "Succeeded",
"configurationState": "Complete",
"simState": "Enabled",
"integratedCircuitCardIdentifier": "8900000000000000000",
"internationalMobileSubscriberIdentity": "00000",
"mobileNetwork": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"location": "testLocation",
"properties": {
"provisioningState": "Succeeded",
"configurationState": "Complete",
"simState": "Enabled",
"integratedCircuitCardIdentifier": "8900000000000000000",
"internationalMobileSubscriberIdentity": "00000",
"mobileNetwork": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"location": "testLocation",
"properties": {
"provisioningState": "Succeeded",
"configurationState": "Complete",
"simState": "Enabled",
"integratedCircuitCardIdentifier": "8900000000000000000",
"internationalMobileSubscriberIdentity": "00000",
"mobileNetwork": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
},
"properties": {
"provisioningState": "Succeeded",
"configurationState": "Complete",
"simState": "Enabled",
"integratedCircuitCardIdentifier": "8900000000000000000",
"internationalMobileSubscriberIdentity": "00000",
"mobileNetwork": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1102,10 +1102,10 @@
"$ref": "./common.json#/definitions/ProvisioningState",
"description": "The provisioning state of the sim resource."
},
"configurationState": {
"simState": {
"readOnly": true,
"$ref": "./common.json#/definitions/ConfigurationState",
"description": "The configuration state of the sim resource - complete or incomplete."
"$ref": "./common.json#/definitions/SimState",
"description": "The state of the sim resource."
},
"activationState": {
"readOnly": true,
Expand Down
Loading

0 comments on commit 7f17f65

Please sign in to comment.