embeddedSIMActivationCodePool resource type
Namespace: microsoft.graph
Important: Microsoft Graph APIs under the /beta version are subject to change; production use is not supported.
Note: The Microsoft Graph API for Intune requires an active Intune license for the tenant.
A pool represents a group of embedded SIM activation codes.
Methods
Method | Return Type | Description |
---|---|---|
List embeddedSIMActivationCodePools | embeddedSIMActivationCodePool collection | List properties and relationships of the embeddedSIMActivationCodePool objects. |
Get embeddedSIMActivationCodePool | embeddedSIMActivationCodePool | Read properties and relationships of the embeddedSIMActivationCodePool object. |
Create embeddedSIMActivationCodePool | embeddedSIMActivationCodePool | Create a new embeddedSIMActivationCodePool object. |
Delete embeddedSIMActivationCodePool | None | Deletes a embeddedSIMActivationCodePool. |
Update embeddedSIMActivationCodePool | embeddedSIMActivationCodePool | Update the properties of a embeddedSIMActivationCodePool object. |
assign action | embeddedSIMActivationCodePoolAssignment collection |
Properties
Property | Type | Description |
---|---|---|
id | String | Unique identifier for the embedded SIM activation code pool. System generated value assigned when created. |
displayName | String | The admin defined name of the embedded SIM activation code pool. |
createdDateTime | DateTimeOffset | The time the embedded SIM activation code pool was created. Generated service side. |
modifiedDateTime | DateTimeOffset | The time the embedded SIM activation code pool was last modified. Updated service side. |
activationCodes | embeddedSIMActivationCode collection | The activation codes which belong to this pool. This navigation property is used to post activation codes to Intune but cannot be used to read activation codes from Intune. |
activationCodeCount | Int32 | The total count of activation codes which belong to this pool. |
Relationships
Relationship | Type | Description |
---|---|---|
assignments | embeddedSIMActivationCodePoolAssignment collection | Navigational property to a list of targets to which this pool is assigned. |
deviceStates | embeddedSIMDeviceState collection | Navigational property to a list of device states for this pool. |
JSON Representation
Here is a JSON representation of the resource.
{
"@odata.type": "#microsoft.graph.embeddedSIMActivationCodePool",
"id": "String (identifier)",
"displayName": "String",
"createdDateTime": "String (timestamp)",
"modifiedDateTime": "String (timestamp)",
"activationCodes": [
{
"@odata.type": "microsoft.graph.embeddedSIMActivationCode",
"integratedCircuitCardIdentifier": "String",
"matchingIdentifier": "String",
"smdpPlusServerAddress": "String"
}
],
"activationCodeCount": 1024
}