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
Copy file name to clipboardExpand all lines: src/Beta/Microsoft/Graph/ExternalConnectors/Model/Property.php
+32-4Lines changed: 32 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ class Property extends \Beta\Microsoft\Graph\Model\Entity
25
25
{
26
26
/**
27
27
* Gets the aliases
28
-
* A set of aliases or a friendly names for the property. Maximum 32 characters. Only alphanumeric characters allowed. For example, each string may not contain control characters, whitespace, or any of the following: :, ;, ,, (, ), [, ], {, }, %, $, +, !, *, =, &, ?, @, #, /, ~, ', ', <, >, `, ^. Optional.
28
+
* A set of aliases or a friendly names for the property. Maximum 32 characters. Only alphanumeric characters allowed. For example, each string might not contain control characters, whitespace, or any of the following: :, ;, ,, (, ), [, ], {, }, %, $, +, !, *, =, &, ?, @, #, /, ~, ', ', <, >, `, ^. Optional.
29
29
*
30
30
* @return string|null The aliases
31
31
*/
@@ -40,7 +40,7 @@ public function getAliases()
40
40
41
41
/**
42
42
* Sets the aliases
43
-
* A set of aliases or a friendly names for the property. Maximum 32 characters. Only alphanumeric characters allowed. For example, each string may not contain control characters, whitespace, or any of the following: :, ;, ,, (, ), [, ], {, }, %, $, +, !, *, =, &, ?, @, #, /, ~, ', ', <, >, `, ^. Optional.
43
+
* A set of aliases or a friendly names for the property. Maximum 32 characters. Only alphanumeric characters allowed. For example, each string might not contain control characters, whitespace, or any of the following: :, ;, ,, (, ), [, ], {, }, %, $, +, !, *, =, &, ?, @, #, /, ~, ', ', <, >, `, ^. Optional.
44
44
*
45
45
* @param string $val The value of the aliases
46
46
*
@@ -52,6 +52,34 @@ public function setAliases($val)
52
52
return$this;
53
53
}
54
54
/**
55
+
* Gets the isExactMatchRequired
56
+
* Specifies if the property will be matched exactly for queries. Exact matching can only be set to true for non-searchable properties of type string or stringCollection. Optional.
57
+
*
58
+
* @return bool|null The isExactMatchRequired
59
+
*/
60
+
publicfunctiongetIsExactMatchRequired()
61
+
{
62
+
if (array_key_exists("isExactMatchRequired", $this->_propDict)) {
63
+
return$this->_propDict["isExactMatchRequired"];
64
+
} else {
65
+
returnnull;
66
+
}
67
+
}
68
+
69
+
/**
70
+
* Sets the isExactMatchRequired
71
+
* Specifies if the property will be matched exactly for queries. Exact matching can only be set to true for non-searchable properties of type string or stringCollection. Optional.
72
+
*
73
+
* @param bool $val The value of the isExactMatchRequired
74
+
*
75
+
* @return Property
76
+
*/
77
+
publicfunctionsetIsExactMatchRequired($val)
78
+
{
79
+
$this->_propDict["isExactMatchRequired"] = $val;
80
+
return$this;
81
+
}
82
+
/**
55
83
* Gets the isQueryable
56
84
* Specifies if the property is queryable. Queryable properties can be used in Keyword Query Language (KQL) queries. Optional.
57
85
*
@@ -198,7 +226,7 @@ public function setLabels($val)
198
226
}
199
227
/**
200
228
* Gets the name
201
-
* The name of the property. Maximum 32 characters. Only alphanumeric characters allowed. For example, each string may not contain control characters, whitespace, or any of the following: :, ;, ,, (, ), [, ], {, }, %, $, +, !, *, =, &, ?, @, #, /, ~, ', ', <, >, `, ^. Required.
229
+
* The name of the property. Maximum 32 characters. Only alphanumeric characters allowed. For example, the property name may not contain control characters, whitespace, or any of the following: :, ;, ,, (, ), [, ], {, }, %, $, +, !, *, =, &, ?, @, #, /, ~, ', ', <, >, `, ^. Required.
202
230
*
203
231
* @return string|null The name
204
232
*/
@@ -213,7 +241,7 @@ public function getName()
213
241
214
242
/**
215
243
* Sets the name
216
-
* The name of the property. Maximum 32 characters. Only alphanumeric characters allowed. For example, each string may not contain control characters, whitespace, or any of the following: :, ;, ,, (, ), [, ], {, }, %, $, +, !, *, =, &, ?, @, #, /, ~, ', ', <, >, `, ^. Required.
244
+
* The name of the property. Maximum 32 characters. Only alphanumeric characters allowed. For example, the property name may not contain control characters, whitespace, or any of the following: :, ;, ,, (, ), [, ], {, }, %, $, +, !, *, =, &, ?, @, #, /, ~, ', ', <, >, `, ^. Required.
0 commit comments