Skip to content

Commit 589969f

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
Update generated files with build 93875
1 parent fe25207 commit 589969f

File tree

89 files changed

+6247
-1101
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+6247
-1101
lines changed

src/Beta/Microsoft/Graph/ExternalConnectors/Model/Property.php

Lines changed: 32 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class Property extends \Beta\Microsoft\Graph\Model\Entity
2525
{
2626
/**
2727
* 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.
2929
*
3030
* @return string|null The aliases
3131
*/
@@ -40,7 +40,7 @@ public function getAliases()
4040

4141
/**
4242
* 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.
4444
*
4545
* @param string $val The value of the aliases
4646
*
@@ -52,6 +52,34 @@ public function setAliases($val)
5252
return $this;
5353
}
5454
/**
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+
public function getIsExactMatchRequired()
61+
{
62+
if (array_key_exists("isExactMatchRequired", $this->_propDict)) {
63+
return $this->_propDict["isExactMatchRequired"];
64+
} else {
65+
return null;
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+
public function setIsExactMatchRequired($val)
78+
{
79+
$this->_propDict["isExactMatchRequired"] = $val;
80+
return $this;
81+
}
82+
/**
5583
* Gets the isQueryable
5684
* Specifies if the property is queryable. Queryable properties can be used in Keyword Query Language (KQL) queries. Optional.
5785
*
@@ -198,7 +226,7 @@ public function setLabels($val)
198226
}
199227
/**
200228
* 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.
202230
*
203231
* @return string|null The name
204232
*/
@@ -213,7 +241,7 @@ public function getName()
213241

214242
/**
215243
* 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.
217245
*
218246
* @param string $val The value of the name
219247
*

src/Beta/Microsoft/Graph/ManagedTenants/Model/ManagedTenant.php

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -639,6 +639,34 @@ public function setManagementTemplateCollections($val)
639639
}
640640

641641

642+
/**
643+
* Gets the managementTemplateCollectionTenantSummaries
644+
*
645+
* @return array|null The managementTemplateCollectionTenantSummaries
646+
*/
647+
public function getManagementTemplateCollectionTenantSummaries()
648+
{
649+
if (array_key_exists("managementTemplateCollectionTenantSummaries", $this->_propDict)) {
650+
return $this->_propDict["managementTemplateCollectionTenantSummaries"];
651+
} else {
652+
return null;
653+
}
654+
}
655+
656+
/**
657+
* Sets the managementTemplateCollectionTenantSummaries
658+
*
659+
* @param ManagementTemplateCollectionTenantSummary[] $val The managementTemplateCollectionTenantSummaries
660+
*
661+
* @return ManagedTenant
662+
*/
663+
public function setManagementTemplateCollectionTenantSummaries($val)
664+
{
665+
$this->_propDict["managementTemplateCollectionTenantSummaries"] = $val;
666+
return $this;
667+
}
668+
669+
642670
/**
643671
* Gets the managementTemplates
644672
* The collection of baseline management templates across managed tenants.
@@ -697,6 +725,34 @@ public function setManagementTemplateSteps($val)
697725
}
698726

699727

728+
/**
729+
* Gets the managementTemplateStepTenantSummaries
730+
*
731+
* @return array|null The managementTemplateStepTenantSummaries
732+
*/
733+
public function getManagementTemplateStepTenantSummaries()
734+
{
735+
if (array_key_exists("managementTemplateStepTenantSummaries", $this->_propDict)) {
736+
return $this->_propDict["managementTemplateStepTenantSummaries"];
737+
} else {
738+
return null;
739+
}
740+
}
741+
742+
/**
743+
* Sets the managementTemplateStepTenantSummaries
744+
*
745+
* @param ManagementTemplateStepTenantSummary[] $val The managementTemplateStepTenantSummaries
746+
*
747+
* @return ManagedTenant
748+
*/
749+
public function setManagementTemplateStepTenantSummaries($val)
750+
{
751+
$this->_propDict["managementTemplateStepTenantSummaries"] = $val;
752+
return $this;
753+
}
754+
755+
700756
/**
701757
* Gets the managementTemplateStepVersions
702758
*

0 commit comments

Comments
 (0)