Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 32 additions & 4 deletions src/Beta/Microsoft/Graph/ExternalConnectors/Model/Property.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class Property extends \Beta\Microsoft\Graph\Model\Entity
{
/**
* Gets the aliases
* 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.
* 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.
*
* @return string|null The aliases
*/
Expand All @@ -40,7 +40,7 @@ public function getAliases()

/**
* Sets the aliases
* 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.
* 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.
*
* @param string $val The value of the aliases
*
Expand All @@ -52,6 +52,34 @@ public function setAliases($val)
return $this;
}
/**
* Gets the isExactMatchRequired
* 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.
*
* @return bool|null The isExactMatchRequired
*/
public function getIsExactMatchRequired()
{
if (array_key_exists("isExactMatchRequired", $this->_propDict)) {
return $this->_propDict["isExactMatchRequired"];
} else {
return null;
}
}

/**
* Sets the isExactMatchRequired
* 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.
*
* @param bool $val The value of the isExactMatchRequired
*
* @return Property
*/
public function setIsExactMatchRequired($val)
{
$this->_propDict["isExactMatchRequired"] = $val;
return $this;
}
/**
* Gets the isQueryable
* Specifies if the property is queryable. Queryable properties can be used in Keyword Query Language (KQL) queries. Optional.
*
Expand Down Expand Up @@ -198,7 +226,7 @@ public function setLabels($val)
}
/**
* Gets the name
* 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.
* 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.
*
* @return string|null The name
*/
Expand All @@ -213,7 +241,7 @@ public function getName()

/**
* Sets the name
* 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.
* 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.
*
* @param string $val The value of the name
*
Expand Down
56 changes: 56 additions & 0 deletions src/Beta/Microsoft/Graph/ManagedTenants/Model/ManagedTenant.php
Original file line number Diff line number Diff line change
Expand Up @@ -639,6 +639,34 @@ public function setManagementTemplateCollections($val)
}


/**
* Gets the managementTemplateCollectionTenantSummaries
*
* @return array|null The managementTemplateCollectionTenantSummaries
*/
public function getManagementTemplateCollectionTenantSummaries()
{
if (array_key_exists("managementTemplateCollectionTenantSummaries", $this->_propDict)) {
return $this->_propDict["managementTemplateCollectionTenantSummaries"];
} else {
return null;
}
}

/**
* Sets the managementTemplateCollectionTenantSummaries
*
* @param ManagementTemplateCollectionTenantSummary[] $val The managementTemplateCollectionTenantSummaries
*
* @return ManagedTenant
*/
public function setManagementTemplateCollectionTenantSummaries($val)
{
$this->_propDict["managementTemplateCollectionTenantSummaries"] = $val;
return $this;
}


/**
* Gets the managementTemplates
* The collection of baseline management templates across managed tenants.
Expand Down Expand Up @@ -697,6 +725,34 @@ public function setManagementTemplateSteps($val)
}


/**
* Gets the managementTemplateStepTenantSummaries
*
* @return array|null The managementTemplateStepTenantSummaries
*/
public function getManagementTemplateStepTenantSummaries()
{
if (array_key_exists("managementTemplateStepTenantSummaries", $this->_propDict)) {
return $this->_propDict["managementTemplateStepTenantSummaries"];
} else {
return null;
}
}

/**
* Sets the managementTemplateStepTenantSummaries
*
* @param ManagementTemplateStepTenantSummary[] $val The managementTemplateStepTenantSummaries
*
* @return ManagedTenant
*/
public function setManagementTemplateStepTenantSummaries($val)
{
$this->_propDict["managementTemplateStepTenantSummaries"] = $val;
return $this;
}


/**
* Gets the managementTemplateStepVersions
*
Expand Down
Loading