substringTransformation resource type
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Creates a new value by extracting a substring, you can provide a zero-based starting index for the substring.
Inherits from customClaimTransformation.
Properties
Property | Type | Description |
---|---|---|
index | Int32 | The start index of the substring operation, where 0 is the first character in the string. |
input | transformationAttribute | The input attribute that provides the source for the transformation. This parameter is required if it is the first or only transformation in the list of transformations to be applied. Subsequent transformations use the output of the prior transformation as input. Inherited from customClaimTransformation. |
length | Int32 | The maximum length of the string, starting from the provided index. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.substringTransformation",
"input": {
"@odata.type": "microsoft.graph.transformationAttribute"
},
"index": "Integer",
"length": "Integer"
}