diff --git a/composer.json b/composer.json index d7167b31eee..8b48071d5da 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ "php": "^8.0 || ^7.3", "guzzlehttp/guzzle": "^6.0 || ^7.0", "ext-json": "*", - "psr/http-message": "^1.0" + "psr/http-message": "^1.0 || ^2.0" }, "require-dev": { "phpunit/phpunit": "^8.0 || ^9.0", diff --git a/src/Beta/Microsoft/Graph/Model/AccessReviewInstanceDecisionItemServicePrincipalResource.php b/src/Beta/Microsoft/Graph/Model/AccessReviewInstanceDecisionItemServicePrincipalResource.php index c233d6a8ba2..f25580d9fb4 100644 --- a/src/Beta/Microsoft/Graph/Model/AccessReviewInstanceDecisionItemServicePrincipalResource.php +++ b/src/Beta/Microsoft/Graph/Model/AccessReviewInstanceDecisionItemServicePrincipalResource.php @@ -25,6 +25,7 @@ class AccessReviewInstanceDecisionItemServicePrincipalResource extends AccessRev { /** * Gets the appId + * The globally unique identifier of the application to which access has been granted. * * @return string|null The appId */ @@ -39,6 +40,7 @@ public function getAppId() /** * Sets the appId + * The globally unique identifier of the application to which access has been granted. * * @param string $val The value of the appId * diff --git a/src/Beta/Microsoft/Graph/Model/AttackSimulationUser.php b/src/Beta/Microsoft/Graph/Model/AttackSimulationUser.php index 63443b83226..07b74b4f157 100644 --- a/src/Beta/Microsoft/Graph/Model/AttackSimulationUser.php +++ b/src/Beta/Microsoft/Graph/Model/AttackSimulationUser.php @@ -80,8 +80,34 @@ public function setEmail($val) return $this; } /** + * Gets the outOfOfficeDays + * + * @return int|null The outOfOfficeDays + */ + public function getOutOfOfficeDays() + { + if (array_key_exists("outOfOfficeDays", $this->_propDict)) { + return $this->_propDict["outOfOfficeDays"]; + } else { + return null; + } + } + + /** + * Sets the outOfOfficeDays + * + * @param int $val The value of the outOfOfficeDays + * + * @return AttackSimulationUser + */ + public function setOutOfOfficeDays($val) + { + $this->_propDict["outOfOfficeDays"] = $val; + return $this; + } + /** * Gets the userId - * This is the id property value of the user resource that represents the user in the Azure Active Directory tenant. + * id property value of the user resource that represents the user in the Azure Active Directory tenant. * * @return string|null The userId */ @@ -96,7 +122,7 @@ public function getUserId() /** * Sets the userId - * This is the id property value of the user resource that represents the user in the Azure Active Directory tenant. + * id property value of the user resource that represents the user in the Azure Active Directory tenant. * * @param string $val The value of the userId * diff --git a/src/Beta/Microsoft/Graph/Model/AuthenticationConditionApplication.php b/src/Beta/Microsoft/Graph/Model/AuthenticationConditionApplication.php index 00e6cd7aae3..b91bf4eac10 100644 --- a/src/Beta/Microsoft/Graph/Model/AuthenticationConditionApplication.php +++ b/src/Beta/Microsoft/Graph/Model/AuthenticationConditionApplication.php @@ -57,6 +57,7 @@ public function getProperties() /** * Gets the appId + * The identifier for an application corresponding to a condition which will trigger an authenticationEventListener. * * @return string|null The appId */ @@ -71,6 +72,7 @@ public function getAppId() /** * Sets the appId + * The identifier for an application corresponding to a condition which will trigger an authenticationEventListener. * * @param string $val The appId * diff --git a/src/Beta/Microsoft/Graph/Model/AuthenticationConditions.php b/src/Beta/Microsoft/Graph/Model/AuthenticationConditions.php index f291eea61ac..12b0b33a8f2 100644 --- a/src/Beta/Microsoft/Graph/Model/AuthenticationConditions.php +++ b/src/Beta/Microsoft/Graph/Model/AuthenticationConditions.php @@ -26,6 +26,7 @@ class AuthenticationConditions extends Entity /** * Gets the applications + * Applications which will trigger a custom authentication extension. * * @return AuthenticationConditionsApplications|null The applications */ @@ -44,6 +45,7 @@ public function getApplications() /** * Sets the applications + * Applications which will trigger a custom authentication extension. * * @param AuthenticationConditionsApplications $val The value to assign to the applications * diff --git a/src/Beta/Microsoft/Graph/Model/AuthenticationConditionsApplications.php b/src/Beta/Microsoft/Graph/Model/AuthenticationConditionsApplications.php index 535b66acb7e..94e2a994b62 100644 --- a/src/Beta/Microsoft/Graph/Model/AuthenticationConditionsApplications.php +++ b/src/Beta/Microsoft/Graph/Model/AuthenticationConditionsApplications.php @@ -25,6 +25,7 @@ class AuthenticationConditionsApplications extends Entity { /** * Gets the includeAllApplications + * Whether the custom authentication extension should trigger for all applications with appIds specified in the includeApplications relationship. This property must be set to false for listener of type onTokenIssuanceStartListener. * * @return bool|null The includeAllApplications */ @@ -39,6 +40,7 @@ public function getIncludeAllApplications() /** * Sets the includeAllApplications + * Whether the custom authentication extension should trigger for all applications with appIds specified in the includeApplications relationship. This property must be set to false for listener of type onTokenIssuanceStartListener. * * @param bool $val The value of the includeAllApplications * diff --git a/src/Beta/Microsoft/Graph/Model/AuthenticationConfigurationValidation.php b/src/Beta/Microsoft/Graph/Model/AuthenticationConfigurationValidation.php index 59a6e30baf2..0ce144c99a7 100644 --- a/src/Beta/Microsoft/Graph/Model/AuthenticationConfigurationValidation.php +++ b/src/Beta/Microsoft/Graph/Model/AuthenticationConfigurationValidation.php @@ -26,6 +26,7 @@ class AuthenticationConfigurationValidation extends Entity /** * Gets the errors + * Errors in the validation result of a customAuthenticationExtension. * * @return GenericError|null The errors */ @@ -44,6 +45,7 @@ public function getErrors() /** * Sets the errors + * Errors in the validation result of a customAuthenticationExtension. * * @param GenericError $val The value to assign to the errors * @@ -57,6 +59,7 @@ public function setErrors($val) /** * Gets the warnings + * Warnings in the validation result of a customAuthenticationExtension. * * @return GenericError|null The warnings */ @@ -75,6 +78,7 @@ public function getWarnings() /** * Sets the warnings + * Warnings in the validation result of a customAuthenticationExtension. * * @param GenericError $val The value to assign to the warnings * diff --git a/src/Beta/Microsoft/Graph/Model/AuthenticationEventListener.php b/src/Beta/Microsoft/Graph/Model/AuthenticationEventListener.php index 2a33d77c44f..0f512ba45fb 100644 --- a/src/Beta/Microsoft/Graph/Model/AuthenticationEventListener.php +++ b/src/Beta/Microsoft/Graph/Model/AuthenticationEventListener.php @@ -26,6 +26,7 @@ class AuthenticationEventListener extends Entity { /** * Gets the authenticationEventsFlowId + * The identifier of the authenticationEventsFlow object. * * @return string|null The authenticationEventsFlowId */ @@ -40,6 +41,7 @@ public function getAuthenticationEventsFlowId() /** * Sets the authenticationEventsFlowId + * The identifier of the authenticationEventsFlow object. * * @param string $val The authenticationEventsFlowId * @@ -53,6 +55,7 @@ public function setAuthenticationEventsFlowId($val) /** * Gets the conditions + * The conditions on which this authenticationEventListener should trigger. * * @return AuthenticationConditions|null The conditions */ @@ -71,6 +74,7 @@ public function getConditions() /** * Sets the conditions + * The conditions on which this authenticationEventListener should trigger. * * @param AuthenticationConditions $val The conditions * @@ -84,6 +88,7 @@ public function setConditions($val) /** * Gets the priority + * The priority of this handler. Between 0 (lower priority) and 1000 (higher priority). * * @return int|null The priority */ @@ -98,6 +103,7 @@ public function getPriority() /** * Sets the priority + * The priority of this handler. Between 0 (lower priority) and 1000 (higher priority). * * @param int $val The priority * diff --git a/src/Beta/Microsoft/Graph/Model/AuthorizationPolicy.php b/src/Beta/Microsoft/Graph/Model/AuthorizationPolicy.php index 79e18b392da..aa044f3a9d2 100644 --- a/src/Beta/Microsoft/Graph/Model/AuthorizationPolicy.php +++ b/src/Beta/Microsoft/Graph/Model/AuthorizationPolicy.php @@ -55,7 +55,7 @@ public function setAllowedToSignUpEmailBasedSubscriptions($val) /** * Gets the allowedToUseSSPR - * Indicates whether the Self-Serve Password Reset feature can be used by users on the tenant. + * Indicates whether the Admin Self-Serve Password Reset feature is enabled on the tenant. * * @return bool|null The allowedToUseSSPR */ @@ -70,7 +70,7 @@ public function getAllowedToUseSSPR() /** * Sets the allowedToUseSSPR - * Indicates whether the Self-Serve Password Reset feature can be used by users on the tenant. + * Indicates whether the Admin Self-Serve Password Reset feature is enabled on the tenant. * * @param bool $val The allowedToUseSSPR * @@ -146,7 +146,7 @@ public function setAllowInvitesFrom($val) /** * Gets the allowUserConsentForRiskyApps - * Indicates whether user consent for risky apps is allowed. We recommend to keep this as false. + * Indicates whether user consent for risky apps is allowed. Default value is false. We recommend that you keep the value set to false. * * @return bool|null The allowUserConsentForRiskyApps */ @@ -161,7 +161,7 @@ public function getAllowUserConsentForRiskyApps() /** * Sets the allowUserConsentForRiskyApps - * Indicates whether user consent for risky apps is allowed. We recommend to keep this as false. + * Indicates whether user consent for risky apps is allowed. Default value is false. We recommend that you keep the value set to false. * * @param bool $val The allowUserConsentForRiskyApps * diff --git a/src/Beta/Microsoft/Graph/Model/Contract.php b/src/Beta/Microsoft/Graph/Model/Contract.php index 4b23c96c2f3..13aa766b341 100644 --- a/src/Beta/Microsoft/Graph/Model/Contract.php +++ b/src/Beta/Microsoft/Graph/Model/Contract.php @@ -26,6 +26,7 @@ class Contract extends DirectoryObject { /** * Gets the contractType + * Type of contract. Possible values are: SyndicationPartner, BreadthPartner, ResellerPartner. See more in the table below. * * @return string|null The contractType */ @@ -40,6 +41,7 @@ public function getContractType() /** * Sets the contractType + * Type of contract. Possible values are: SyndicationPartner, BreadthPartner, ResellerPartner. See more in the table below. * * @param string $val The contractType * @@ -53,6 +55,7 @@ public function setContractType($val) /** * Gets the customerId + * The unique identifier for the customer tenant referenced by this partnership. Corresponds to the id property of the customer tenant's organization resource. * * @return string|null The customerId */ @@ -67,6 +70,7 @@ public function getCustomerId() /** * Sets the customerId + * The unique identifier for the customer tenant referenced by this partnership. Corresponds to the id property of the customer tenant's organization resource. * * @param string $val The customerId * @@ -80,6 +84,7 @@ public function setCustomerId($val) /** * Gets the defaultDomainName + * A copy of the customer tenant's default domain name. The copy is made when the partnership with the customer is established. It is not automatically updated if the customer tenant's default domain name changes. * * @return string|null The defaultDomainName */ @@ -94,6 +99,7 @@ public function getDefaultDomainName() /** * Sets the defaultDomainName + * A copy of the customer tenant's default domain name. The copy is made when the partnership with the customer is established. It is not automatically updated if the customer tenant's default domain name changes. * * @param string $val The defaultDomainName * @@ -107,6 +113,7 @@ public function setDefaultDomainName($val) /** * Gets the displayName + * A copy of the customer tenant's display name. The copy is made when the partnership with the customer is established. It is not automatically updated if the customer tenant's display name changes. * * @return string|null The displayName */ @@ -121,6 +128,7 @@ public function getDisplayName() /** * Sets the displayName + * A copy of the customer tenant's display name. The copy is made when the partnership with the customer is established. It is not automatically updated if the customer tenant's display name changes. * * @param string $val The displayName * diff --git a/src/Beta/Microsoft/Graph/Model/CredentialUserRegistrationCount.php b/src/Beta/Microsoft/Graph/Model/CredentialUserRegistrationCount.php index 8c8989abd98..9324d8aaa70 100644 --- a/src/Beta/Microsoft/Graph/Model/CredentialUserRegistrationCount.php +++ b/src/Beta/Microsoft/Graph/Model/CredentialUserRegistrationCount.php @@ -26,7 +26,7 @@ class CredentialUserRegistrationCount extends Entity { /** * Gets the totalUserCount - * Provides the total user count in the tenant. + * Provides the count of users with accountEnabled set to true in the tenant. * * @return int|null The totalUserCount */ @@ -41,7 +41,7 @@ public function getTotalUserCount() /** * Sets the totalUserCount - * Provides the total user count in the tenant. + * Provides the count of users with accountEnabled set to true in the tenant. * * @param int $val The totalUserCount * diff --git a/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationDefault.php b/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationDefault.php index 3bdd609ada4..dbec41f70ac 100644 --- a/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationDefault.php +++ b/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationDefault.php @@ -26,7 +26,7 @@ class CrossTenantAccessPolicyConfigurationDefault extends Entity { /** * Gets the automaticUserConsentSettings - * Determines the default configuration for automatic user consent settings. inboundAllowed and outboundAllowed will always be false and cannot be updated in the default configuration. Read only. + * Determines the default configuration for automatic user consent settings. The inboundAllowed and outboundAllowed properties are always false and cannot be updated in the default configuration. Read-only. * * @return InboundOutboundPolicyConfiguration|null The automaticUserConsentSettings */ @@ -45,7 +45,7 @@ public function getAutomaticUserConsentSettings() /** * Sets the automaticUserConsentSettings - * Determines the default configuration for automatic user consent settings. inboundAllowed and outboundAllowed will always be false and cannot be updated in the default configuration. Read only. + * Determines the default configuration for automatic user consent settings. The inboundAllowed and outboundAllowed properties are always false and cannot be updated in the default configuration. Read-only. * * @param InboundOutboundPolicyConfiguration $val The automaticUserConsentSettings * diff --git a/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php b/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php index 32eb83e93fc..b5ced4fea2f 100644 --- a/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php +++ b/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php @@ -57,7 +57,7 @@ public function getProperties() /** * Gets the automaticUserConsentSettings - * Determines the partner-specific configuration for automatic user consent settings. Unless specifically configured, the inboundAllowed and outboundAllowed properties will be null and inherit from the default settings, which is always false. + * Determines the partner-specific configuration for automatic user consent settings. Unless specifically configured, the inboundAllowed and outboundAllowed properties are null and inherit from the default settings, which is always false. * * @return InboundOutboundPolicyConfiguration|null The automaticUserConsentSettings */ @@ -76,7 +76,7 @@ public function getAutomaticUserConsentSettings() /** * Sets the automaticUserConsentSettings - * Determines the partner-specific configuration for automatic user consent settings. Unless specifically configured, the inboundAllowed and outboundAllowed properties will be null and inherit from the default settings, which is always false. + * Determines the partner-specific configuration for automatic user consent settings. Unless specifically configured, the inboundAllowed and outboundAllowed properties are null and inherit from the default settings, which is always false. * * @param InboundOutboundPolicyConfiguration $val The automaticUserConsentSettings * @@ -344,7 +344,7 @@ public function setTenantRestrictions($val) /** * Gets the identitySynchronization - * Defines the cross-tenant policy for synchronization of users from a partner tenant. Use this user synchronization policy to streamline collaboration between users in a multi-tenant organization by automating creating, updating, and deleting users from one tenant to another. + * Defines the cross-tenant policy for the synchronization of users from a partner tenant. Use this user synchronization policy to streamline collaboration between users in a multi-tenant organization by automating the creation, update, and deletion of users from one tenant to another. * * @return CrossTenantIdentitySyncPolicyPartner|null The identitySynchronization */ @@ -363,7 +363,7 @@ public function getIdentitySynchronization() /** * Sets the identitySynchronization - * Defines the cross-tenant policy for synchronization of users from a partner tenant. Use this user synchronization policy to streamline collaboration between users in a multi-tenant organization by automating creating, updating, and deleting users from one tenant to another. + * Defines the cross-tenant policy for the synchronization of users from a partner tenant. Use this user synchronization policy to streamline collaboration between users in a multi-tenant organization by automating the creation, update, and deletion of users from one tenant to another. * * @param CrossTenantIdentitySyncPolicyPartner $val The identitySynchronization * diff --git a/src/Beta/Microsoft/Graph/Model/CrossTenantIdentitySyncPolicyPartner.php b/src/Beta/Microsoft/Graph/Model/CrossTenantIdentitySyncPolicyPartner.php index d642f60ab05..ec3bae62243 100644 --- a/src/Beta/Microsoft/Graph/Model/CrossTenantIdentitySyncPolicyPartner.php +++ b/src/Beta/Microsoft/Graph/Model/CrossTenantIdentitySyncPolicyPartner.php @@ -57,7 +57,7 @@ public function getProperties() /** * Gets the displayName - * Display name for the cross-tenant user synchronization policy. Use the name of the partner Azure AD tenant to easily identify the policy. Optional. + * Display name for the cross-tenant user synchronization policy. Use the name of the partner Azure AD (Azure Active Directory) tenant to easily identify the policy. Optional. * * @return string|null The displayName */ @@ -72,7 +72,7 @@ public function getDisplayName() /** * Sets the displayName - * Display name for the cross-tenant user synchronization policy. Use the name of the partner Azure AD tenant to easily identify the policy. Optional. + * Display name for the cross-tenant user synchronization policy. Use the name of the partner Azure AD (Azure Active Directory) tenant to easily identify the policy. Optional. * * @param string $val The displayName * diff --git a/src/Beta/Microsoft/Graph/Model/CrossTenantUserSyncInbound.php b/src/Beta/Microsoft/Graph/Model/CrossTenantUserSyncInbound.php index 91b8d8c86b7..2c583a4400c 100644 --- a/src/Beta/Microsoft/Graph/Model/CrossTenantUserSyncInbound.php +++ b/src/Beta/Microsoft/Graph/Model/CrossTenantUserSyncInbound.php @@ -25,7 +25,7 @@ class CrossTenantUserSyncInbound extends Entity { /** * Gets the isSyncAllowed - * Defines whether user objects should be synchronized from the partner tenant. If set to false, any current user synchronization from the source tenant to the target tenant will stop. There is no impact on existing users that have already been synchronized. + * Defines whether user objects should be synchronized from the partner tenant. false causes any current user synchronization from the source tenant to the target tenant to stop. This property has no impact on existing users who have already been synchronized. * * @return bool|null The isSyncAllowed */ @@ -40,7 +40,7 @@ public function getIsSyncAllowed() /** * Sets the isSyncAllowed - * Defines whether user objects should be synchronized from the partner tenant. If set to false, any current user synchronization from the source tenant to the target tenant will stop. There is no impact on existing users that have already been synchronized. + * Defines whether user objects should be synchronized from the partner tenant. false causes any current user synchronization from the source tenant to the target tenant to stop. This property has no impact on existing users who have already been synchronized. * * @param bool $val The value of the isSyncAllowed * diff --git a/src/Beta/Microsoft/Graph/Model/CustomExtensionClientConfiguration.php b/src/Beta/Microsoft/Graph/Model/CustomExtensionClientConfiguration.php index f4556e66d28..f07f1977564 100644 --- a/src/Beta/Microsoft/Graph/Model/CustomExtensionClientConfiguration.php +++ b/src/Beta/Microsoft/Graph/Model/CustomExtensionClientConfiguration.php @@ -25,7 +25,7 @@ class CustomExtensionClientConfiguration extends Entity { /** * Gets the timeoutInMilliseconds - * The max duration in milliseconds that Azure AD will wait for a response from the logic app before it shuts down the connection. The valid range is between 200 and 2000 milliseconds. Default duration is 1000. + * The max duration in milliseconds that Azure AD will wait for a response from the external app before it shuts down the connection. The valid range is between 200 and 2000 milliseconds. Default duration is 1000. * * @return int|null The timeoutInMilliseconds */ @@ -40,7 +40,7 @@ public function getTimeoutInMilliseconds() /** * Sets the timeoutInMilliseconds - * The max duration in milliseconds that Azure AD will wait for a response from the logic app before it shuts down the connection. The valid range is between 200 and 2000 milliseconds. Default duration is 1000. + * The max duration in milliseconds that Azure AD will wait for a response from the external app before it shuts down the connection. The valid range is between 200 and 2000 milliseconds. Default duration is 1000. * * @param int $val The value of the timeoutInMilliseconds * diff --git a/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationChoiceSettingCollectionDefinition.php b/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationChoiceSettingCollectionDefinition.php index 772f407516e..1dd8ea6b20b 100644 --- a/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationChoiceSettingCollectionDefinition.php +++ b/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationChoiceSettingCollectionDefinition.php @@ -26,7 +26,7 @@ class DeviceManagementConfigurationChoiceSettingCollectionDefinition extends Dev { /** * Gets the maximumCount - * Maximum number of choices in the collection + * Maximum number of choices in the collection. Valid values 1 to 100 * * @return int|null The maximumCount */ @@ -41,7 +41,7 @@ public function getMaximumCount() /** * Sets the maximumCount - * Maximum number of choices in the collection + * Maximum number of choices in the collection. Valid values 1 to 100 * * @param int $val The maximumCount * @@ -55,7 +55,7 @@ public function setMaximumCount($val) /** * Gets the minimumCount - * Minimum number of choices in the collection + * Minimum number of choices in the collection. Valid values 1 to 100 * * @return int|null The minimumCount */ @@ -70,7 +70,7 @@ public function getMinimumCount() /** * Sets the minimumCount - * Minimum number of choices in the collection + * Minimum number of choices in the collection. Valid values 1 to 100 * * @param int $val The minimumCount * diff --git a/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationReferredSettingInformation.php b/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationReferredSettingInformation.php index 7818161a161..62f8fe8d53d 100644 --- a/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationReferredSettingInformation.php +++ b/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationReferredSettingInformation.php @@ -25,7 +25,7 @@ class DeviceManagementConfigurationReferredSettingInformation extends Entity { /** * Gets the settingDefinitionId - * Setting definition id that is being referred to a setting. Applicable for reusable setting. + * Setting definition id that is being referred to a setting. Applicable for reusable setting * * @return string|null The settingDefinitionId */ @@ -40,7 +40,7 @@ public function getSettingDefinitionId() /** * Sets the settingDefinitionId - * Setting definition id that is being referred to a setting. Applicable for reusable setting. + * Setting definition id that is being referred to a setting. Applicable for reusable setting * * @param string $val The value of the settingDefinitionId * diff --git a/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSettingDefinition.php b/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSettingDefinition.php index f86396f11eb..a8b2772c491 100644 --- a/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSettingDefinition.php +++ b/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSettingDefinition.php @@ -59,7 +59,7 @@ public function setAccessTypes($val) /** * Gets the applicability - * Details which device setting is applicable on + * Details which device setting is applicable on. Supports: $filters. * * @return DeviceManagementConfigurationSettingApplicability|null The applicability */ @@ -78,7 +78,7 @@ public function getApplicability() /** * Sets the applicability - * Details which device setting is applicable on + * Details which device setting is applicable on. Supports: $filters. * * @param DeviceManagementConfigurationSettingApplicability $val The applicability * @@ -121,7 +121,7 @@ public function setBaseUri($val) /** * Gets the categoryId - * Specifies the area group under which the setting is configured in a specified configuration service provider (CSP) + * Specify category in which the setting is under. Support $filters. * * @return string|null The categoryId */ @@ -136,7 +136,7 @@ public function getCategoryId() /** * Sets the categoryId - * Specifies the area group under which the setting is configured in a specified configuration service provider (CSP) + * Specify category in which the setting is under. Support $filters. * * @param string $val The categoryId * @@ -150,7 +150,7 @@ public function setCategoryId($val) /** * Gets the description - * Description of the item + * Description of the setting. * * @return string|null The description */ @@ -165,7 +165,7 @@ public function getDescription() /** * Sets the description - * Description of the item + * Description of the setting. * * @param string $val The description * @@ -179,7 +179,7 @@ public function setDescription($val) /** * Gets the displayName - * Display name of the item + * Name of the setting. For example: Allow Toast. * * @return string|null The displayName */ @@ -194,7 +194,7 @@ public function getDisplayName() /** * Sets the displayName - * Display name of the item + * Name of the setting. For example: Allow Toast. * * @param string $val The displayName * @@ -208,7 +208,7 @@ public function setDisplayName($val) /** * Gets the helpText - * Help text of the item + * Help text of the setting. Give more details of the setting. * * @return string|null The helpText */ @@ -223,7 +223,7 @@ public function getHelpText() /** * Sets the helpText - * Help text of the item + * Help text of the setting. Give more details of the setting. * * @param string $val The helpText * @@ -237,7 +237,7 @@ public function setHelpText($val) /** * Gets the infoUrls - * List of links more info for the setting can be found at + * List of links more info for the setting can be found at. * * @return array|null The infoUrls */ @@ -252,7 +252,7 @@ public function getInfoUrls() /** * Sets the infoUrls - * List of links more info for the setting can be found at + * List of links more info for the setting can be found at. * * @param string[] $val The infoUrls * @@ -416,7 +416,7 @@ public function setReferredSettingInformationList($val) /** * Gets the rootDefinitionId - * Root setting definition if the setting is a child setting. + * Root setting definition id if the setting is a child setting. * * @return string|null The rootDefinitionId */ @@ -431,7 +431,7 @@ public function getRootDefinitionId() /** * Sets the rootDefinitionId - * Root setting definition if the setting is a child setting. + * Root setting definition id if the setting is a child setting. * * @param string $val The rootDefinitionId * @@ -445,7 +445,7 @@ public function setRootDefinitionId($val) /** * Gets the settingUsage - * Setting type, for example, configuration and compliance. Possible values are: none, configuration, compliance. + * Indicate setting type for the setting. Possible values are: configuration, compliance, reusableSetting. Each setting usage has separate API end-point to call. Possible values are: none, configuration, compliance, unknownFutureValue. * * @return DeviceManagementConfigurationSettingUsage|null The settingUsage */ @@ -464,7 +464,7 @@ public function getSettingUsage() /** * Sets the settingUsage - * Setting type, for example, configuration and compliance. Possible values are: none, configuration, compliance. + * Indicate setting type for the setting. Possible values are: configuration, compliance, reusableSetting. Each setting usage has separate API end-point to call. Possible values are: none, configuration, compliance, unknownFutureValue. * * @param DeviceManagementConfigurationSettingUsage $val The settingUsage * @@ -478,7 +478,7 @@ public function setSettingUsage($val) /** * Gets the uxBehavior - * Setting control type representation in the UX. Possible values are: default, dropdown, smallTextBox, largeTextBox, toggle, multiheaderGrid, contextPane. + * Setting control type representation in the UX. Possible values are: default, dropdown, smallTextBox, largeTextBox, toggle, multiheaderGrid, contextPane. Possible values are: default, dropdown, smallTextBox, largeTextBox, toggle, multiheaderGrid, contextPane, unknownFutureValue. * * @return DeviceManagementConfigurationControlType|null The uxBehavior */ @@ -497,7 +497,7 @@ public function getUxBehavior() /** * Sets the uxBehavior - * Setting control type representation in the UX. Possible values are: default, dropdown, smallTextBox, largeTextBox, toggle, multiheaderGrid, contextPane. + * Setting control type representation in the UX. Possible values are: default, dropdown, smallTextBox, largeTextBox, toggle, multiheaderGrid, contextPane. Possible values are: default, dropdown, smallTextBox, largeTextBox, toggle, multiheaderGrid, contextPane, unknownFutureValue. * * @param DeviceManagementConfigurationControlType $val The uxBehavior * @@ -540,7 +540,7 @@ public function setVersion($val) /** * Gets the visibility - * Setting visibility scope to UX. Possible values are: none, settingsCatalog, template. + * Setting visibility scope to UX. Possible values are: none, settingsCatalog, template. Possible values are: none, settingsCatalog, template, unknownFutureValue. * * @return DeviceManagementConfigurationSettingVisibility|null The visibility */ @@ -559,7 +559,7 @@ public function getVisibility() /** * Sets the visibility - * Setting visibility scope to UX. Possible values are: none, settingsCatalog, template. + * Setting visibility scope to UX. Possible values are: none, settingsCatalog, template. Possible values are: none, settingsCatalog, template, unknownFutureValue. * * @param DeviceManagementConfigurationSettingVisibility $val The visibility * diff --git a/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSettingGroupCollectionDefinition.php b/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSettingGroupCollectionDefinition.php index 84d921c2cdd..10e62e20a65 100644 --- a/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSettingGroupCollectionDefinition.php +++ b/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSettingGroupCollectionDefinition.php @@ -26,7 +26,7 @@ class DeviceManagementConfigurationSettingGroupCollectionDefinition extends Devi { /** * Gets the maximumCount - * Maximum number of setting group count in the collection. Valid values 1 to 100 + * Maximum number of setting group count in the collection * * @return int|null The maximumCount */ @@ -41,7 +41,7 @@ public function getMaximumCount() /** * Sets the maximumCount - * Maximum number of setting group count in the collection. Valid values 1 to 100 + * Maximum number of setting group count in the collection * * @param int $val The maximumCount * @@ -55,7 +55,7 @@ public function setMaximumCount($val) /** * Gets the minimumCount - * Minimum number of setting group count in the collection. Valid values 1 to 100 + * Minimum number of setting group count in the collection * * @return int|null The minimumCount */ @@ -70,7 +70,7 @@ public function getMinimumCount() /** * Sets the minimumCount - * Minimum number of setting group count in the collection. Valid values 1 to 100 + * Minimum number of setting group count in the collection * * @param int $val The minimumCount * diff --git a/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSettingGroupDefinition.php b/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSettingGroupDefinition.php index 0563d36dd58..9a6c46313c3 100644 --- a/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSettingGroupDefinition.php +++ b/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSettingGroupDefinition.php @@ -26,7 +26,7 @@ class DeviceManagementConfigurationSettingGroupDefinition extends DeviceManageme { /** * Gets the childIds - * Dependent child settings to this group of settings. + * Dependent child settings to this group of settings * * @return array|null The childIds */ @@ -41,7 +41,7 @@ public function getChildIds() /** * Sets the childIds - * Dependent child settings to this group of settings. + * Dependent child settings to this group of settings * * @param string[] $val The childIds * diff --git a/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSimpleSettingCollectionDefinition.php b/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSimpleSettingCollectionDefinition.php index 60995c914c7..68ed03d5cbc 100644 --- a/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSimpleSettingCollectionDefinition.php +++ b/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSimpleSettingCollectionDefinition.php @@ -26,7 +26,7 @@ class DeviceManagementConfigurationSimpleSettingCollectionDefinition extends Dev { /** * Gets the maximumCount - * Maximum number of simple settings in the collection. Valid values 1 to 100 + * Maximum number of simple settings in the collection * * @return int|null The maximumCount */ @@ -41,7 +41,7 @@ public function getMaximumCount() /** * Sets the maximumCount - * Maximum number of simple settings in the collection. Valid values 1 to 100 + * Maximum number of simple settings in the collection * * @param int $val The maximumCount * @@ -55,7 +55,7 @@ public function setMaximumCount($val) /** * Gets the minimumCount - * Minimum number of simple settings in the collection. Valid values 1 to 100 + * Minimum number of simple settings in the collection * * @return int|null The minimumCount */ @@ -70,7 +70,7 @@ public function getMinimumCount() /** * Sets the minimumCount - * Minimum number of simple settings in the collection. Valid values 1 to 100 + * Minimum number of simple settings in the collection * * @param int $val The minimumCount * diff --git a/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSimpleSettingDefinition.php b/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSimpleSettingDefinition.php index 245b38ef0d2..cfb59dc09c9 100644 --- a/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSimpleSettingDefinition.php +++ b/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSimpleSettingDefinition.php @@ -26,7 +26,7 @@ class DeviceManagementConfigurationSimpleSettingDefinition extends DeviceManagem { /** * Gets the defaultValue - * Default setting value for this setting + * Default setting value for this setting. * * @return DeviceManagementConfigurationSettingValue|null The defaultValue */ @@ -45,7 +45,7 @@ public function getDefaultValue() /** * Sets the defaultValue - * Default setting value for this setting + * Default setting value for this setting. * * @param DeviceManagementConfigurationSettingValue $val The defaultValue * @@ -60,7 +60,7 @@ public function setDefaultValue($val) /** * Gets the dependedOnBy - * list of child settings that depend on this setting + * list of child settings that depend on this setting. * * @return array|null The dependedOnBy */ @@ -75,7 +75,7 @@ public function getDependedOnBy() /** * Sets the dependedOnBy - * list of child settings that depend on this setting + * list of child settings that depend on this setting. * * @param DeviceManagementConfigurationSettingDependedOnBy[] $val The dependedOnBy * @@ -90,7 +90,7 @@ public function setDependedOnBy($val) /** * Gets the dependentOn - * list of parent settings this setting is dependent on + * list of parent settings this setting is dependent on. * * @return array|null The dependentOn */ @@ -105,7 +105,7 @@ public function getDependentOn() /** * Sets the dependentOn - * list of parent settings this setting is dependent on + * list of parent settings this setting is dependent on. * * @param DeviceManagementConfigurationDependentOn[] $val The dependentOn * @@ -119,7 +119,7 @@ public function setDependentOn($val) /** * Gets the valueDefinition - * Definition of the value for this setting + * Definition of the value for this setting. * * @return DeviceManagementConfigurationSettingValueDefinition|null The valueDefinition */ @@ -138,7 +138,7 @@ public function getValueDefinition() /** * Sets the valueDefinition - * Definition of the value for this setting + * Definition of the value for this setting. * * @param DeviceManagementConfigurationSettingValueDefinition $val The valueDefinition * diff --git a/src/Beta/Microsoft/Graph/Model/EducationAssignmentSettings.php b/src/Beta/Microsoft/Graph/Model/EducationAssignmentSettings.php index 4129d6992c9..dd66641e09b 100644 --- a/src/Beta/Microsoft/Graph/Model/EducationAssignmentSettings.php +++ b/src/Beta/Microsoft/Graph/Model/EducationAssignmentSettings.php @@ -26,7 +26,7 @@ class EducationAssignmentSettings extends Entity { /** * Gets the submissionAnimationDisabled - * Indicates whether turn-in celebration animation will be shown. A value of true indicates that the animation will not be shown. Default value is false. + * Indicates whether turn-in celebration animation will be shown. If true, the animation will not be shown. The default value is false. * * @return bool|null The submissionAnimationDisabled */ @@ -41,7 +41,7 @@ public function getSubmissionAnimationDisabled() /** * Sets the submissionAnimationDisabled - * Indicates whether turn-in celebration animation will be shown. A value of true indicates that the animation will not be shown. Default value is false. + * Indicates whether turn-in celebration animation will be shown. If true, the animation will not be shown. The default value is false. * * @param bool $val The submissionAnimationDisabled * diff --git a/src/Beta/Microsoft/Graph/Model/EducationGradingCategory.php b/src/Beta/Microsoft/Graph/Model/EducationGradingCategory.php index d05e344d9ba..67ad128e532 100644 --- a/src/Beta/Microsoft/Graph/Model/EducationGradingCategory.php +++ b/src/Beta/Microsoft/Graph/Model/EducationGradingCategory.php @@ -26,6 +26,7 @@ class EducationGradingCategory extends Entity { /** * Gets the displayName + * The name of the grading category. * * @return string|null The displayName */ @@ -40,6 +41,7 @@ public function getDisplayName() /** * Sets the displayName + * The name of the grading category. * * @param string $val The displayName * @@ -53,6 +55,7 @@ public function setDisplayName($val) /** * Gets the percentageWeight + * The weight of the category; an integer between 0 and 100. * * @return int|null The percentageWeight */ @@ -67,6 +70,7 @@ public function getPercentageWeight() /** * Sets the percentageWeight + * The weight of the category; an integer between 0 and 100. * * @param int $val The percentageWeight * diff --git a/src/Beta/Microsoft/Graph/Model/EducationOneRosterApiDataProvider.php b/src/Beta/Microsoft/Graph/Model/EducationOneRosterApiDataProvider.php index 089d69c873e..778a531595f 100644 --- a/src/Beta/Microsoft/Graph/Model/EducationOneRosterApiDataProvider.php +++ b/src/Beta/Microsoft/Graph/Model/EducationOneRosterApiDataProvider.php @@ -37,6 +37,7 @@ public function __construct($propDict = array()) /** * Gets the connectionSettings + * The [OAuth 1.0][onerosteroauth1] or [OAuth 2.0][onerosteroauth2] settings for the OneRoster instance. * * @return EducationSynchronizationConnectionSettings|null The connectionSettings */ @@ -55,6 +56,7 @@ public function getConnectionSettings() /** * Sets the connectionSettings + * The [OAuth 1.0][onerosteroauth1] or [OAuth 2.0][onerosteroauth2] settings for the OneRoster instance. * * @param EducationSynchronizationConnectionSettings $val The value to assign to the connectionSettings * @@ -67,6 +69,7 @@ public function setConnectionSettings($val) } /** * Gets the connectionUrl + * The connection URL to the OneRoster instance. * * @return string|null The connectionUrl */ @@ -81,6 +84,7 @@ public function getConnectionUrl() /** * Sets the connectionUrl + * The connection URL to the OneRoster instance. * * @param string $val The value of the connectionUrl * @@ -94,6 +98,7 @@ public function setConnectionUrl($val) /** * Gets the customizations + * Optional customization to be applied to the synchronization profile. * * @return EducationSynchronizationCustomizations|null The customizations */ @@ -112,6 +117,7 @@ public function getCustomizations() /** * Sets the customizations + * Optional customization to be applied to the synchronization profile. * * @param EducationSynchronizationCustomizations $val The value to assign to the customizations * @@ -124,6 +130,7 @@ public function setCustomizations($val) } /** * Gets the providerName + * The OneRoster Service Provider name as defined by the [OneRoster specification][oneroster]. * * @return string|null The providerName */ @@ -138,6 +145,7 @@ public function getProviderName() /** * Sets the providerName + * The OneRoster Service Provider name as defined by the [OneRoster specification][oneroster]. * * @param string $val The value of the providerName * @@ -150,6 +158,7 @@ public function setProviderName($val) } /** * Gets the schoolsIds + * The list of [School/Org][orgs] sourcedId to sync. * * @return string|null The schoolsIds */ @@ -164,6 +173,7 @@ public function getSchoolsIds() /** * Sets the schoolsIds + * The list of [School/Org][orgs] sourcedId to sync. * * @param string $val The value of the schoolsIds * @@ -176,6 +186,7 @@ public function setSchoolsIds($val) } /** * Gets the termIds + * The list of [academic sessions][terms] to sync. * * @return string|null The termIds */ @@ -190,6 +201,7 @@ public function getTermIds() /** * Sets the termIds + * The list of [academic sessions][terms] to sync. * * @param string $val The value of the termIds * diff --git a/src/Beta/Microsoft/Graph/Model/Group.php b/src/Beta/Microsoft/Graph/Model/Group.php index 6ddeeb740d6..fae5f3788f8 100644 --- a/src/Beta/Microsoft/Graph/Model/Group.php +++ b/src/Beta/Microsoft/Graph/Model/Group.php @@ -1061,6 +1061,7 @@ public function setSecurityIdentifier($val) /** * Gets the serviceProvisioningErrors + * Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). * * @return array|null The serviceProvisioningErrors */ @@ -1075,6 +1076,7 @@ public function getServiceProvisioningErrors() /** * Sets the serviceProvisioningErrors + * Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object . Supports $filter (eq, not, for isResolved and serviceInstance). * * @param ServiceProvisioningError[] $val The serviceProvisioningErrors * diff --git a/src/Beta/Microsoft/Graph/Model/HttpRequestEndpoint.php b/src/Beta/Microsoft/Graph/Model/HttpRequestEndpoint.php index bad04f949b9..191e5687d78 100644 --- a/src/Beta/Microsoft/Graph/Model/HttpRequestEndpoint.php +++ b/src/Beta/Microsoft/Graph/Model/HttpRequestEndpoint.php @@ -36,6 +36,7 @@ public function __construct($propDict = array()) /** * Gets the targetUrl + * The HTTP endpoint that a custom extension calls. * * @return string|null The targetUrl */ @@ -50,6 +51,7 @@ public function getTargetUrl() /** * Sets the targetUrl + * The HTTP endpoint that a custom extension calls. * * @param string $val The value of the targetUrl * diff --git a/src/Beta/Microsoft/Graph/Model/Identity.php b/src/Beta/Microsoft/Graph/Model/Identity.php index 03a9de8a01b..79a5705bc43 100644 --- a/src/Beta/Microsoft/Graph/Model/Identity.php +++ b/src/Beta/Microsoft/Graph/Model/Identity.php @@ -25,7 +25,7 @@ class Identity extends Entity { /** * Gets the displayName - * The display name of the identity. This property is read-only. + * The display name of the identity. Note that this might not always be available or up to date. For example, if a user changes their display name, the API might show the new value in a future response, but the items associated with the user won't show up as having changed when using delta. * * @return string|null The displayName */ @@ -40,7 +40,7 @@ public function getDisplayName() /** * Sets the displayName - * The display name of the identity. This property is read-only. + * The display name of the identity. Note that this might not always be available or up to date. For example, if a user changes their display name, the API might show the new value in a future response, but the items associated with the user won't show up as having changed when using delta. * * @param string $val The value of the displayName * @@ -53,7 +53,7 @@ public function setDisplayName($val) } /** * Gets the id - * The identifier of the identity. This property is read-only. + * Unique identifier for the identity. * * @return string|null The id */ @@ -68,7 +68,7 @@ public function getId() /** * Sets the id - * The identifier of the identity. This property is read-only. + * Unique identifier for the identity. * * @param string $val The value of the id * diff --git a/src/Beta/Microsoft/Graph/Model/IdentitySet.php b/src/Beta/Microsoft/Graph/Model/IdentitySet.php index 655759bfd9f..2046ffd53d1 100644 --- a/src/Beta/Microsoft/Graph/Model/IdentitySet.php +++ b/src/Beta/Microsoft/Graph/Model/IdentitySet.php @@ -26,7 +26,7 @@ class IdentitySet extends Entity /** * Gets the application - * Optional. The application associated with this action. + * The Identity of the Application. This property is read-only. * * @return Identity|null The application */ @@ -45,7 +45,7 @@ public function getApplication() /** * Sets the application - * Optional. The application associated with this action. + * The Identity of the Application. This property is read-only. * * @param Identity $val The value to assign to the application * @@ -59,7 +59,7 @@ public function setApplication($val) /** * Gets the device - * Optional. The device associated with this action. + * The Identity of the Device. This property is read-only. * * @return Identity|null The device */ @@ -78,7 +78,7 @@ public function getDevice() /** * Sets the device - * Optional. The device associated with this action. + * The Identity of the Device. This property is read-only. * * @param Identity $val The value to assign to the device * @@ -92,7 +92,7 @@ public function setDevice($val) /** * Gets the user - * Optional. The user associated with this action. + * The Identity of the User. This property is read-only. * * @return Identity|null The user */ @@ -111,7 +111,7 @@ public function getUser() /** * Sets the user - * Optional. The user associated with this action. + * The Identity of the User. This property is read-only. * * @param Identity $val The value to assign to the user * diff --git a/src/Beta/Microsoft/Graph/Model/KeyCredential.php b/src/Beta/Microsoft/Graph/Model/KeyCredential.php index 6baf9e4f8ba..4e650585966 100644 --- a/src/Beta/Microsoft/Graph/Model/KeyCredential.php +++ b/src/Beta/Microsoft/Graph/Model/KeyCredential.php @@ -213,7 +213,7 @@ public function setStartDateTime($val) } /** * Gets the type - * The type of key credential; for example, Symmetric, AsymmetricX509Cert. + * The type of key credential; for example, Symmetric, AsymmetricX509Cert, or X509CertAndPassword. * * @return string|null The type */ @@ -228,7 +228,7 @@ public function getType() /** * Sets the type - * The type of key credential; for example, Symmetric, AsymmetricX509Cert. + * The type of key credential; for example, Symmetric, AsymmetricX509Cert, or X509CertAndPassword. * * @param string $val The value of the type * @@ -241,7 +241,7 @@ public function setType($val) } /** * Gets the usage - * A string that describes the purpose for which the key can be used; for example, Verify. + * A string that describes the purpose for which the key can be used; for example, None​, Verify​, PairwiseIdentifier​, Delegation​, Decrypt​, Encrypt​, HashedIdentifier​, SelfSignedTls, or Sign. If usage is Sign​, the type should be X509CertAndPassword​, and the passwordCredentials​ for signing should be defined. * * @return string|null The usage */ @@ -256,7 +256,7 @@ public function getUsage() /** * Sets the usage - * A string that describes the purpose for which the key can be used; for example, Verify. + * A string that describes the purpose for which the key can be used; for example, None​, Verify​, PairwiseIdentifier​, Delegation​, Decrypt​, Encrypt​, HashedIdentifier​, SelfSignedTls, or Sign. If usage is Sign​, the type should be X509CertAndPassword​, and the passwordCredentials​ for signing should be defined. * * @param string $val The value of the usage * diff --git a/src/Beta/Microsoft/Graph/Model/KeyValue.php b/src/Beta/Microsoft/Graph/Model/KeyValue.php index 2dfdabba03a..7dfa6735406 100644 --- a/src/Beta/Microsoft/Graph/Model/KeyValue.php +++ b/src/Beta/Microsoft/Graph/Model/KeyValue.php @@ -25,7 +25,7 @@ class KeyValue extends Entity { /** * Gets the key - * Key. + * Contains the name of the field that a value is associated with. When a sign in or domain hint is included in the sign-in request, corresponding fields are included as key-value pairs. Possible keys: Login hint present, Domain hint present. * * @return string|null The key */ @@ -40,7 +40,7 @@ public function getKey() /** * Sets the key - * Key. + * Contains the name of the field that a value is associated with. When a sign in or domain hint is included in the sign-in request, corresponding fields are included as key-value pairs. Possible keys: Login hint present, Domain hint present. * * @param string $val The value of the key * @@ -53,7 +53,7 @@ public function setKey($val) } /** * Gets the value - * Value. + * Contains the corresponding value for the specified key. The value is true if a sign in hint was included in the sign-in request; otherwise false. The value is true if a domain hint was included in the sign-in request; otherwise false. * * @return string|null The value */ @@ -68,7 +68,7 @@ public function getValue() /** * Sets the value - * Value. + * Contains the corresponding value for the specified key. The value is true if a sign in hint was included in the sign-in request; otherwise false. The value is true if a domain hint was included in the sign-in request; otherwise false. * * @param string $val The value of the value * diff --git a/src/Beta/Microsoft/Graph/Model/KeyValuePair.php b/src/Beta/Microsoft/Graph/Model/KeyValuePair.php index e82157217f0..7ba63886b10 100644 --- a/src/Beta/Microsoft/Graph/Model/KeyValuePair.php +++ b/src/Beta/Microsoft/Graph/Model/KeyValuePair.php @@ -25,7 +25,7 @@ class KeyValuePair extends Entity { /** * Gets the name - * Name for this key-value pair + * Name for this key-value pair. For more information about possible names for each resource type that uses this configuration, see keyValuePair names and values. * * @return string|null The name */ @@ -40,7 +40,7 @@ public function getName() /** * Sets the name - * Name for this key-value pair + * Name for this key-value pair. For more information about possible names for each resource type that uses this configuration, see keyValuePair names and values. * * @param string $val The value of the name * @@ -53,7 +53,7 @@ public function setName($val) } /** * Gets the value - * Value for this key-value pair + * Value for this key-value pair. For more information about possible values for each resource type that uses this configuration, see keyValuePair names and values. * * @return string|null The value */ @@ -68,7 +68,7 @@ public function getValue() /** * Sets the value - * Value for this key-value pair + * Value for this key-value pair. For more information about possible values for each resource type that uses this configuration, see keyValuePair names and values. * * @param string $val The value of the value * diff --git a/src/Beta/Microsoft/Graph/Model/OnPremisesCurrentExportData.php b/src/Beta/Microsoft/Graph/Model/OnPremisesCurrentExportData.php new file mode 100644 index 00000000000..16279d8fdcb --- /dev/null +++ b/src/Beta/Microsoft/Graph/Model/OnPremisesCurrentExportData.php @@ -0,0 +1,250 @@ +_propDict)) { + return $this->_propDict["clientMachineName"]; + } else { + return null; + } + } + + /** + * Sets the clientMachineName + * The name of the onPremises client machine which ran the last export. + * + * @param string $val The value of the clientMachineName + * + * @return OnPremisesCurrentExportData + */ + public function setClientMachineName($val) + { + $this->_propDict["clientMachineName"] = $val; + return $this; + } + /** + * Gets the pendingObjectsAddition + * The count of pending adds from on-premises directory. + * + * @return int|null The pendingObjectsAddition + */ + public function getPendingObjectsAddition() + { + if (array_key_exists("pendingObjectsAddition", $this->_propDict)) { + return $this->_propDict["pendingObjectsAddition"]; + } else { + return null; + } + } + + /** + * Sets the pendingObjectsAddition + * The count of pending adds from on-premises directory. + * + * @param int $val The value of the pendingObjectsAddition + * + * @return OnPremisesCurrentExportData + */ + public function setPendingObjectsAddition($val) + { + $this->_propDict["pendingObjectsAddition"] = $val; + return $this; + } + /** + * Gets the pendingObjectsDeletion + * The count of pending deletes from on-premises directory. + * + * @return int|null The pendingObjectsDeletion + */ + public function getPendingObjectsDeletion() + { + if (array_key_exists("pendingObjectsDeletion", $this->_propDict)) { + return $this->_propDict["pendingObjectsDeletion"]; + } else { + return null; + } + } + + /** + * Sets the pendingObjectsDeletion + * The count of pending deletes from on-premises directory. + * + * @param int $val The value of the pendingObjectsDeletion + * + * @return OnPremisesCurrentExportData + */ + public function setPendingObjectsDeletion($val) + { + $this->_propDict["pendingObjectsDeletion"] = $val; + return $this; + } + /** + * Gets the pendingObjectsUpdate + * The count of pending updates from on-premises directory. + * + * @return int|null The pendingObjectsUpdate + */ + public function getPendingObjectsUpdate() + { + if (array_key_exists("pendingObjectsUpdate", $this->_propDict)) { + return $this->_propDict["pendingObjectsUpdate"]; + } else { + return null; + } + } + + /** + * Sets the pendingObjectsUpdate + * The count of pending updates from on-premises directory. + * + * @param int $val The value of the pendingObjectsUpdate + * + * @return OnPremisesCurrentExportData + */ + public function setPendingObjectsUpdate($val) + { + $this->_propDict["pendingObjectsUpdate"] = $val; + return $this; + } + /** + * Gets the serviceAccount + * The name of the dirsync service account which is configured to connect to the directory. + * + * @return string|null The serviceAccount + */ + public function getServiceAccount() + { + if (array_key_exists("serviceAccount", $this->_propDict)) { + return $this->_propDict["serviceAccount"]; + } else { + return null; + } + } + + /** + * Sets the serviceAccount + * The name of the dirsync service account which is configured to connect to the directory. + * + * @param string $val The value of the serviceAccount + * + * @return OnPremisesCurrentExportData + */ + public function setServiceAccount($val) + { + $this->_propDict["serviceAccount"] = $val; + return $this; + } + /** + * Gets the successfulLinksProvisioningCount + * The count of updated links during the current directory sync export run. + * + * @return int|null The successfulLinksProvisioningCount + */ + public function getSuccessfulLinksProvisioningCount() + { + if (array_key_exists("successfulLinksProvisioningCount", $this->_propDict)) { + return $this->_propDict["successfulLinksProvisioningCount"]; + } else { + return null; + } + } + + /** + * Sets the successfulLinksProvisioningCount + * The count of updated links during the current directory sync export run. + * + * @param int $val The value of the successfulLinksProvisioningCount + * + * @return OnPremisesCurrentExportData + */ + public function setSuccessfulLinksProvisioningCount($val) + { + $this->_propDict["successfulLinksProvisioningCount"] = $val; + return $this; + } + /** + * Gets the successfulObjectsProvisioningCount + * The count of objects which were successfully provisioned during the current directory sync export run. + * + * @return int|null The successfulObjectsProvisioningCount + */ + public function getSuccessfulObjectsProvisioningCount() + { + if (array_key_exists("successfulObjectsProvisioningCount", $this->_propDict)) { + return $this->_propDict["successfulObjectsProvisioningCount"]; + } else { + return null; + } + } + + /** + * Sets the successfulObjectsProvisioningCount + * The count of objects which were successfully provisioned during the current directory sync export run. + * + * @param int $val The value of the successfulObjectsProvisioningCount + * + * @return OnPremisesCurrentExportData + */ + public function setSuccessfulObjectsProvisioningCount($val) + { + $this->_propDict["successfulObjectsProvisioningCount"] = $val; + return $this; + } + /** + * Gets the totalConnectorSpaceObjects + * The total number of objects in the AAD Connector Space. + * + * @return int|null The totalConnectorSpaceObjects + */ + public function getTotalConnectorSpaceObjects() + { + if (array_key_exists("totalConnectorSpaceObjects", $this->_propDict)) { + return $this->_propDict["totalConnectorSpaceObjects"]; + } else { + return null; + } + } + + /** + * Sets the totalConnectorSpaceObjects + * The total number of objects in the AAD Connector Space. + * + * @param int $val The value of the totalConnectorSpaceObjects + * + * @return OnPremisesCurrentExportData + */ + public function setTotalConnectorSpaceObjects($val) + { + $this->_propDict["totalConnectorSpaceObjects"] = $val; + return $this; + } +} diff --git a/src/Beta/Microsoft/Graph/Model/OnPremisesDirectorySynchronizationConfiguration.php b/src/Beta/Microsoft/Graph/Model/OnPremisesDirectorySynchronizationConfiguration.php index 15ff0a46ae1..3ff73396834 100644 --- a/src/Beta/Microsoft/Graph/Model/OnPremisesDirectorySynchronizationConfiguration.php +++ b/src/Beta/Microsoft/Graph/Model/OnPremisesDirectorySynchronizationConfiguration.php @@ -56,6 +56,95 @@ public function setAccidentalDeletionPrevention($val) $this->_propDict["accidentalDeletionPrevention"] = $val; return $this; } + /** + * Gets the anchorAttribute + * The anchor attribute allows customers to customize the property used to create source anchors for synchronization enabled objects. + * + * @return string|null The anchorAttribute + */ + public function getAnchorAttribute() + { + if (array_key_exists("anchorAttribute", $this->_propDict)) { + return $this->_propDict["anchorAttribute"]; + } else { + return null; + } + } + + /** + * Sets the anchorAttribute + * The anchor attribute allows customers to customize the property used to create source anchors for synchronization enabled objects. + * + * @param string $val The value of the anchorAttribute + * + * @return OnPremisesDirectorySynchronizationConfiguration + */ + public function setAnchorAttribute($val) + { + $this->_propDict["anchorAttribute"] = $val; + return $this; + } + /** + * Gets the applicationId + * The identifier of the on-premises directory synchronization client application that is configured for the tenant. + * + * @return string|null The applicationId + */ + public function getApplicationId() + { + if (array_key_exists("applicationId", $this->_propDict)) { + return $this->_propDict["applicationId"]; + } else { + return null; + } + } + + /** + * Sets the applicationId + * The identifier of the on-premises directory synchronization client application that is configured for the tenant. + * + * @param string $val The value of the applicationId + * + * @return OnPremisesDirectorySynchronizationConfiguration + */ + public function setApplicationId($val) + { + $this->_propDict["applicationId"] = $val; + return $this; + } + + /** + * Gets the currentExportData + * Data for the current export run. + * + * @return OnPremisesCurrentExportData|null The currentExportData + */ + public function getCurrentExportData() + { + if (array_key_exists("currentExportData", $this->_propDict)) { + if (is_a($this->_propDict["currentExportData"], "\Beta\Microsoft\Graph\Model\OnPremisesCurrentExportData") || is_null($this->_propDict["currentExportData"])) { + return $this->_propDict["currentExportData"]; + } else { + $this->_propDict["currentExportData"] = new OnPremisesCurrentExportData($this->_propDict["currentExportData"]); + return $this->_propDict["currentExportData"]; + } + } + return null; + } + + /** + * Sets the currentExportData + * Data for the current export run. + * + * @param OnPremisesCurrentExportData $val The value to assign to the currentExportData + * + * @return OnPremisesDirectorySynchronizationConfiguration The OnPremisesDirectorySynchronizationConfiguration + */ + public function setCurrentExportData($val) + { + $this->_propDict["currentExportData"] = $val; + return $this; + } /** * Gets the customerRequestedSynchronizationInterval @@ -89,6 +178,34 @@ public function setCustomerRequestedSynchronizationInterval($val) $this->_propDict["customerRequestedSynchronizationInterval"] = $val; return $this; } + /** + * Gets the synchronizationClientVersion + * Indicates the version of the on-premises directory synchronization application. + * + * @return string|null The synchronizationClientVersion + */ + public function getSynchronizationClientVersion() + { + if (array_key_exists("synchronizationClientVersion", $this->_propDict)) { + return $this->_propDict["synchronizationClientVersion"]; + } else { + return null; + } + } + + /** + * Sets the synchronizationClientVersion + * Indicates the version of the on-premises directory synchronization application. + * + * @param string $val The value of the synchronizationClientVersion + * + * @return OnPremisesDirectorySynchronizationConfiguration + */ + public function setSynchronizationClientVersion($val) + { + $this->_propDict["synchronizationClientVersion"] = $val; + return $this; + } /** * Gets the synchronizationInterval @@ -122,4 +239,37 @@ public function setSynchronizationInterval($val) $this->_propDict["synchronizationInterval"] = $val; return $this; } + + /** + * Gets the writebackConfiguration + * Configuration to control how cloud created or owned objects are synchronized back to the on-premises directory. + * + * @return OnPremisesWritebackConfiguration|null The writebackConfiguration + */ + public function getWritebackConfiguration() + { + if (array_key_exists("writebackConfiguration", $this->_propDict)) { + if (is_a($this->_propDict["writebackConfiguration"], "\Beta\Microsoft\Graph\Model\OnPremisesWritebackConfiguration") || is_null($this->_propDict["writebackConfiguration"])) { + return $this->_propDict["writebackConfiguration"]; + } else { + $this->_propDict["writebackConfiguration"] = new OnPremisesWritebackConfiguration($this->_propDict["writebackConfiguration"]); + return $this->_propDict["writebackConfiguration"]; + } + } + return null; + } + + /** + * Sets the writebackConfiguration + * Configuration to control how cloud created or owned objects are synchronized back to the on-premises directory. + * + * @param OnPremisesWritebackConfiguration $val The value to assign to the writebackConfiguration + * + * @return OnPremisesDirectorySynchronizationConfiguration The OnPremisesDirectorySynchronizationConfiguration + */ + public function setWritebackConfiguration($val) + { + $this->_propDict["writebackConfiguration"] = $val; + return $this; + } } diff --git a/src/Beta/Microsoft/Graph/Model/OnPremisesWritebackConfiguration.php b/src/Beta/Microsoft/Graph/Model/OnPremisesWritebackConfiguration.php new file mode 100644 index 00000000000..755c42137ef --- /dev/null +++ b/src/Beta/Microsoft/Graph/Model/OnPremisesWritebackConfiguration.php @@ -0,0 +1,82 @@ +_propDict)) { + return $this->_propDict["unifiedGroupContainer"]; + } else { + return null; + } + } + + /** + * Sets the unifiedGroupContainer + * The distinguished name of the on-premises container that the customer is using to store unified groups which are created in the cloud. + * + * @param string $val The value of the unifiedGroupContainer + * + * @return OnPremisesWritebackConfiguration + */ + public function setUnifiedGroupContainer($val) + { + $this->_propDict["unifiedGroupContainer"] = $val; + return $this; + } + /** + * Gets the userContainer + * The distinguished name of the on-premises container that the customer is using to store users which are created in the cloud. + * + * @return string|null The userContainer + */ + public function getUserContainer() + { + if (array_key_exists("userContainer", $this->_propDict)) { + return $this->_propDict["userContainer"]; + } else { + return null; + } + } + + /** + * Sets the userContainer + * The distinguished name of the on-premises container that the customer is using to store users which are created in the cloud. + * + * @param string $val The value of the userContainer + * + * @return OnPremisesWritebackConfiguration + */ + public function setUserContainer($val) + { + $this->_propDict["userContainer"] = $val; + return $this; + } +} diff --git a/src/Beta/Microsoft/Graph/Model/OnTokenIssuanceStartCustomExtension.php b/src/Beta/Microsoft/Graph/Model/OnTokenIssuanceStartCustomExtension.php index ae924fb95af..7e3b116e862 100644 --- a/src/Beta/Microsoft/Graph/Model/OnTokenIssuanceStartCustomExtension.php +++ b/src/Beta/Microsoft/Graph/Model/OnTokenIssuanceStartCustomExtension.php @@ -27,6 +27,7 @@ class OnTokenIssuanceStartCustomExtension extends CustomAuthenticationExtension /** * Gets the claimsForTokenConfiguration + * Collection of claims to be returned by the API called by this custom authentication extension. * * @return array|null The claimsForTokenConfiguration */ @@ -41,6 +42,7 @@ public function getClaimsForTokenConfiguration() /** * Sets the claimsForTokenConfiguration + * Collection of claims to be returned by the API called by this custom authentication extension. * * @param OnTokenIssuanceStartReturnClaim[] $val The claimsForTokenConfiguration * diff --git a/src/Beta/Microsoft/Graph/Model/OnTokenIssuanceStartListener.php b/src/Beta/Microsoft/Graph/Model/OnTokenIssuanceStartListener.php index 6f811c3dc50..482f79a6b82 100644 --- a/src/Beta/Microsoft/Graph/Model/OnTokenIssuanceStartListener.php +++ b/src/Beta/Microsoft/Graph/Model/OnTokenIssuanceStartListener.php @@ -26,6 +26,7 @@ class OnTokenIssuanceStartListener extends AuthenticationEventListener { /** * Gets the handler + * The handler to invoke when conditions are met for this onTokenIssuanceStartListener. * * @return OnTokenIssuanceStartHandler|null The handler */ @@ -44,6 +45,7 @@ public function getHandler() /** * Sets the handler + * The handler to invoke when conditions are met for this onTokenIssuanceStartListener. * * @param OnTokenIssuanceStartHandler $val The handler * diff --git a/src/Beta/Microsoft/Graph/Model/OnTokenIssuanceStartReturnClaim.php b/src/Beta/Microsoft/Graph/Model/OnTokenIssuanceStartReturnClaim.php index 306cbcf7f98..3cd995e1c26 100644 --- a/src/Beta/Microsoft/Graph/Model/OnTokenIssuanceStartReturnClaim.php +++ b/src/Beta/Microsoft/Graph/Model/OnTokenIssuanceStartReturnClaim.php @@ -25,6 +25,7 @@ class OnTokenIssuanceStartReturnClaim extends Entity { /** * Gets the claimIdInApiResponse + * The identifier of the claim returned by an API that is to be add to a token being issued. * * @return string|null The claimIdInApiResponse */ @@ -39,6 +40,7 @@ public function getClaimIdInApiResponse() /** * Sets the claimIdInApiResponse + * The identifier of the claim returned by an API that is to be add to a token being issued. * * @param string $val The value of the claimIdInApiResponse * diff --git a/src/Beta/Microsoft/Graph/Model/OrgContact.php b/src/Beta/Microsoft/Graph/Model/OrgContact.php index 286766c561d..3d7844029e0 100644 --- a/src/Beta/Microsoft/Graph/Model/OrgContact.php +++ b/src/Beta/Microsoft/Graph/Model/OrgContact.php @@ -411,6 +411,7 @@ public function setProxyAddresses($val) /** * Gets the serviceProvisioningErrors + * Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from an orgContact object . Supports $filter (eq, not, for isResolved and serviceInstance). * * @return array|null The serviceProvisioningErrors */ @@ -425,6 +426,7 @@ public function getServiceProvisioningErrors() /** * Sets the serviceProvisioningErrors + * Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from an orgContact object . Supports $filter (eq, not, for isResolved and serviceInstance). * * @param ServiceProvisioningError[] $val The serviceProvisioningErrors * diff --git a/src/Beta/Microsoft/Graph/Model/ServiceProvisioningError.php b/src/Beta/Microsoft/Graph/Model/ServiceProvisioningError.php index 33b41a8828b..ae0b0b59710 100644 --- a/src/Beta/Microsoft/Graph/Model/ServiceProvisioningError.php +++ b/src/Beta/Microsoft/Graph/Model/ServiceProvisioningError.php @@ -26,6 +26,7 @@ class ServiceProvisioningError extends Entity /** * Gets the createdDateTime + * The date and time at which the error occurred. * * @return \DateTime|null The createdDateTime */ @@ -44,6 +45,7 @@ public function getCreatedDateTime() /** * Sets the createdDateTime + * The date and time at which the error occurred. * * @param \DateTime $val The value to assign to the createdDateTime * @@ -56,6 +58,7 @@ public function setCreatedDateTime($val) } /** * Gets the isResolved + * Indicates whether the Error has been attended to. * * @return bool|null The isResolved */ @@ -70,6 +73,7 @@ public function getIsResolved() /** * Sets the isResolved + * Indicates whether the Error has been attended to. * * @param bool $val The value of the isResolved * @@ -82,6 +86,7 @@ public function setIsResolved($val) } /** * Gets the serviceInstance + * Qualified service instance (e.g., 'SharePoint/Dublin') that published the service error information. * * @return string|null The serviceInstance */ @@ -96,6 +101,7 @@ public function getServiceInstance() /** * Sets the serviceInstance + * Qualified service instance (e.g., 'SharePoint/Dublin') that published the service error information. * * @param string $val The value of the serviceInstance * diff --git a/src/Beta/Microsoft/Graph/Model/ServiceProvisioningXmlError.php b/src/Beta/Microsoft/Graph/Model/ServiceProvisioningXmlError.php index d2ad1741796..9fba4171810 100644 --- a/src/Beta/Microsoft/Graph/Model/ServiceProvisioningXmlError.php +++ b/src/Beta/Microsoft/Graph/Model/ServiceProvisioningXmlError.php @@ -36,6 +36,7 @@ public function __construct($propDict = array()) /** * Gets the errorDetail + * Error Information published by the Federated Service as an xml string . * * @return string|null The errorDetail */ @@ -50,6 +51,7 @@ public function getErrorDetail() /** * Sets the errorDetail + * Error Information published by the Federated Service as an xml string . * * @param string $val The value of the errorDetail * diff --git a/src/Beta/Microsoft/Graph/Model/TeamTemplate.php b/src/Beta/Microsoft/Graph/Model/TeamTemplate.php index 97a8066a07e..73f43cde336 100644 --- a/src/Beta/Microsoft/Graph/Model/TeamTemplate.php +++ b/src/Beta/Microsoft/Graph/Model/TeamTemplate.php @@ -27,6 +27,7 @@ class TeamTemplate extends Entity /** * Gets the definitions + * A generic representation of a team template definition for a team with a specific structure and configuration. * * @return array|null The definitions */ @@ -41,6 +42,7 @@ public function getDefinitions() /** * Sets the definitions + * A generic representation of a team template definition for a team with a specific structure and configuration. * * @param TeamTemplateDefinition[] $val The definitions * diff --git a/src/Beta/Microsoft/Graph/Model/TeamTemplateDefinition.php b/src/Beta/Microsoft/Graph/Model/TeamTemplateDefinition.php index 9f03712c3a0..876159b50b4 100644 --- a/src/Beta/Microsoft/Graph/Model/TeamTemplateDefinition.php +++ b/src/Beta/Microsoft/Graph/Model/TeamTemplateDefinition.php @@ -26,6 +26,7 @@ class TeamTemplateDefinition extends Entity { /** * Gets the audience + * Describes the audience the team template is available to. The possible values are: organization, user, public, unknownFutureValue. * * @return TeamTemplateAudience|null The audience */ @@ -44,6 +45,7 @@ public function getAudience() /** * Sets the audience + * Describes the audience the team template is available to. The possible values are: organization, user, public, unknownFutureValue. * * @param TeamTemplateAudience $val The audience * @@ -57,6 +59,7 @@ public function setAudience($val) /** * Gets the categories + * The assigned categories for the team template. * * @return array|null The categories */ @@ -71,6 +74,7 @@ public function getCategories() /** * Sets the categories + * The assigned categories for the team template. * * @param string[] $val The categories * @@ -84,6 +88,7 @@ public function setCategories($val) /** * Gets the description + * A brief description of the team template as it will appear to the users in Microsoft Teams. * * @return string|null The description */ @@ -98,6 +103,7 @@ public function getDescription() /** * Sets the description + * A brief description of the team template as it will appear to the users in Microsoft Teams. * * @param string $val The description * @@ -111,6 +117,7 @@ public function setDescription($val) /** * Gets the displayName + * The user defined name of the team template. * * @return string|null The displayName */ @@ -125,6 +132,7 @@ public function getDisplayName() /** * Sets the displayName + * The user defined name of the team template. * * @param string $val The displayName * @@ -138,6 +146,7 @@ public function setDisplayName($val) /** * Gets the iconUrl + * The icon url for the team template. * * @return string|null The iconUrl */ @@ -152,6 +161,7 @@ public function getIconUrl() /** * Sets the iconUrl + * The icon url for the team template. * * @param string $val The iconUrl * @@ -165,6 +175,7 @@ public function setIconUrl($val) /** * Gets the languageTag + * Language the template is available in. * * @return string|null The languageTag */ @@ -179,6 +190,7 @@ public function getLanguageTag() /** * Sets the languageTag + * Language the template is available in. * * @param string $val The languageTag * @@ -192,6 +204,7 @@ public function setLanguageTag($val) /** * Gets the lastModifiedBy + * The identity of the user who last modified the team template. * * @return IdentitySet|null The lastModifiedBy */ @@ -210,6 +223,7 @@ public function getLastModifiedBy() /** * Sets the lastModifiedBy + * The identity of the user who last modified the team template. * * @param IdentitySet $val The lastModifiedBy * @@ -223,6 +237,7 @@ public function setLastModifiedBy($val) /** * Gets the lastModifiedDateTime + * The date time of when the team template was last modified. * * @return \DateTime|null The lastModifiedDateTime */ @@ -241,6 +256,7 @@ public function getLastModifiedDateTime() /** * Sets the lastModifiedDateTime + * The date time of when the team template was last modified. * * @param \DateTime $val The lastModifiedDateTime * @@ -254,6 +270,7 @@ public function setLastModifiedDateTime($val) /** * Gets the parentTemplateId + * The templateId for the team template * * @return string|null The parentTemplateId */ @@ -268,6 +285,7 @@ public function getParentTemplateId() /** * Sets the parentTemplateId + * The templateId for the team template * * @param string $val The parentTemplateId * @@ -281,6 +299,7 @@ public function setParentTemplateId($val) /** * Gets the publisherName + * The organization which published the team template. * * @return string|null The publisherName */ @@ -295,6 +314,7 @@ public function getPublisherName() /** * Sets the publisherName + * The organization which published the team template. * * @param string $val The publisherName * @@ -308,6 +328,7 @@ public function setPublisherName($val) /** * Gets the shortDescription + * A short-description of the team template as it will appear to the users in Microsoft Teams. * * @return string|null The shortDescription */ @@ -322,6 +343,7 @@ public function getShortDescription() /** * Sets the shortDescription + * A short-description of the team template as it will appear to the users in Microsoft Teams. * * @param string $val The shortDescription * @@ -335,6 +357,7 @@ public function setShortDescription($val) /** * Gets the teamDefinition + * Collection of channel objects. A channel represents a topic, and therefore a logical isolation of discussion, within a team. * * @return Team|null The teamDefinition */ @@ -353,6 +376,7 @@ public function getTeamDefinition() /** * Sets the teamDefinition + * Collection of channel objects. A channel represents a topic, and therefore a logical isolation of discussion, within a team. * * @param Team $val The teamDefinition * diff --git a/src/Beta/Microsoft/Graph/Model/User.php b/src/Beta/Microsoft/Graph/Model/User.php index e6e5073157b..36604eb32bd 100644 --- a/src/Beta/Microsoft/Graph/Model/User.php +++ b/src/Beta/Microsoft/Graph/Model/User.php @@ -895,6 +895,35 @@ public function setInfoCatalogs($val) return $this; } + /** + * Gets the isLicenseReconciliationNeeded + * Indicates whether the user is pending an exchange mailbox license assignment. Read-only. Supports $filter (eq where true only). + * + * @return bool|null The isLicenseReconciliationNeeded + */ + public function getIsLicenseReconciliationNeeded() + { + if (array_key_exists("isLicenseReconciliationNeeded", $this->_propDict)) { + return $this->_propDict["isLicenseReconciliationNeeded"]; + } else { + return null; + } + } + + /** + * Sets the isLicenseReconciliationNeeded + * Indicates whether the user is pending an exchange mailbox license assignment. Read-only. Supports $filter (eq where true only). + * + * @param bool $val The isLicenseReconciliationNeeded + * + * @return User + */ + public function setIsLicenseReconciliationNeeded($val) + { + $this->_propDict["isLicenseReconciliationNeeded"] = boolval($val); + return $this; + } + /** * Gets the isManagementRestricted * @@ -1789,6 +1818,7 @@ public function setSecurityIdentifier($val) /** * Gets the serviceProvisioningErrors + * Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). * * @return array|null The serviceProvisioningErrors */ @@ -1803,6 +1833,7 @@ public function getServiceProvisioningErrors() /** * Sets the serviceProvisioningErrors + * Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a user object . Supports $filter (eq, not, for isResolved and serviceInstance). * * @param ServiceProvisioningError[] $val The serviceProvisioningErrors * diff --git a/src/Beta/Microsoft/Graph/Model/UserSimulationDetails.php b/src/Beta/Microsoft/Graph/Model/UserSimulationDetails.php index fa13b01dfac..5e07ab4fc05 100644 --- a/src/Beta/Microsoft/Graph/Model/UserSimulationDetails.php +++ b/src/Beta/Microsoft/Graph/Model/UserSimulationDetails.php @@ -168,6 +168,34 @@ public function setIsCompromised($val) $this->_propDict["isCompromised"] = $val; return $this; } + /** + * Gets the latestSimulationActivity + * Indicates latest user activity. + * + * @return string|null The latestSimulationActivity + */ + public function getLatestSimulationActivity() + { + if (array_key_exists("latestSimulationActivity", $this->_propDict)) { + return $this->_propDict["latestSimulationActivity"]; + } else { + return null; + } + } + + /** + * Sets the latestSimulationActivity + * Indicates latest user activity. + * + * @param string $val The value of the latestSimulationActivity + * + * @return UserSimulationDetails + */ + public function setLatestSimulationActivity($val) + { + $this->_propDict["latestSimulationActivity"] = $val; + return $this; + } /** * Gets the reportedPhishDateTime diff --git a/src/Core/GraphConstants.php b/src/Core/GraphConstants.php index 27ce41b3127..ff0a3deef82 100644 --- a/src/Core/GraphConstants.php +++ b/src/Core/GraphConstants.php @@ -23,7 +23,7 @@ final class GraphConstants const REST_ENDPOINT = "https://graph.microsoft.com/"; // Define HTTP request constants - const SDK_VERSION = "1.97.0"; + const SDK_VERSION = "1.98.0"; // Define error constants const MAX_PAGE_SIZE = 999; diff --git a/src/ExternalConnectors/Model/ExternalActivity.php b/src/ExternalConnectors/Model/ExternalActivity.php new file mode 100644 index 00000000000..9e71a48f5d4 --- /dev/null +++ b/src/ExternalConnectors/Model/ExternalActivity.php @@ -0,0 +1,126 @@ +_propDict)) { + if (is_a($this->_propDict["startDateTime"], "\DateTime") || is_null($this->_propDict["startDateTime"])) { + return $this->_propDict["startDateTime"]; + } else { + $this->_propDict["startDateTime"] = new \DateTime($this->_propDict["startDateTime"]); + return $this->_propDict["startDateTime"]; + } + } + return null; + } + + /** + * Sets the startDateTime + * The date and time when the particular activity occurred. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. + * + * @param \DateTime $val The startDateTime + * + * @return ExternalActivity + */ + public function setStartDateTime($val) + { + $this->_propDict["startDateTime"] = $val; + return $this; + } + + /** + * Gets the type + * The type of activity performed. The possible values are: viewed, modified, created, commented, unknownFutureValue. + * + * @return ExternalActivityType|null The type + */ + public function getType() + { + if (array_key_exists("type", $this->_propDict)) { + if (is_a($this->_propDict["type"], "\Microsoft\Graph\ExternalConnectors\Model\ExternalActivityType") || is_null($this->_propDict["type"])) { + return $this->_propDict["type"]; + } else { + $this->_propDict["type"] = new ExternalActivityType($this->_propDict["type"]); + return $this->_propDict["type"]; + } + } + return null; + } + + /** + * Sets the type + * The type of activity performed. The possible values are: viewed, modified, created, commented, unknownFutureValue. + * + * @param ExternalActivityType $val The type + * + * @return ExternalActivity + */ + public function setType($val) + { + $this->_propDict["type"] = $val; + return $this; + } + + /** + * Gets the performedBy + * Represents an identity used to identify who is responsible for the activity. + * + * @return Identity|null The performedBy + */ + public function getPerformedBy() + { + if (array_key_exists("performedBy", $this->_propDict)) { + if (is_a($this->_propDict["performedBy"], "\Microsoft\Graph\ExternalConnectors\Model\Identity") || is_null($this->_propDict["performedBy"])) { + return $this->_propDict["performedBy"]; + } else { + $this->_propDict["performedBy"] = new Identity($this->_propDict["performedBy"]); + return $this->_propDict["performedBy"]; + } + } + return null; + } + + /** + * Sets the performedBy + * Represents an identity used to identify who is responsible for the activity. + * + * @param Identity $val The performedBy + * + * @return ExternalActivity + */ + public function setPerformedBy($val) + { + $this->_propDict["performedBy"] = $val; + return $this; + } + +} diff --git a/src/ExternalConnectors/Model/ExternalActivityResult.php b/src/ExternalConnectors/Model/ExternalActivityResult.php new file mode 100644 index 00000000000..de8e4c97e17 --- /dev/null +++ b/src/ExternalConnectors/Model/ExternalActivityResult.php @@ -0,0 +1,60 @@ +_propDict)) { + if (is_a($this->_propDict["error"], "\Microsoft\Graph\Model\PublicError") || is_null($this->_propDict["error"])) { + return $this->_propDict["error"]; + } else { + $this->_propDict["error"] = new \Microsoft\Graph\Model\PublicError($this->_propDict["error"]); + return $this->_propDict["error"]; + } + } + return null; + } + + /** + * Sets the error + * Error information that explains the failure to process an external activity. + * + * @param \Microsoft\Graph\Model\PublicError $val The error + * + * @return ExternalActivityResult + */ + public function setError($val) + { + $this->_propDict["error"] = $val; + return $this; + } + +} diff --git a/src/ExternalConnectors/Model/ExternalActivityType.php b/src/ExternalConnectors/Model/ExternalActivityType.php new file mode 100644 index 00000000000..40c9f47b16c --- /dev/null +++ b/src/ExternalConnectors/Model/ExternalActivityType.php @@ -0,0 +1,37 @@ +_propDict)) { + return $this->_propDict["activities"]; + } else { + return null; + } + } + + /** + * Sets the activities + * Returns a list of activities performed on the item. Write-only. + * + * @param ExternalActivity[] $val The activities + * + * @return ExternalItem + */ + public function setActivities($val) + { + $this->_propDict["activities"] = $val; + return $this; + } + } diff --git a/src/Http/GraphCollectionRequest.php b/src/Http/GraphCollectionRequest.php index 8512d887dac..f478c2f35eb 100644 --- a/src/Http/GraphCollectionRequest.php +++ b/src/Http/GraphCollectionRequest.php @@ -112,6 +112,9 @@ public function count() $this->apiVersion, $this->proxyPort ); + + $request->addHeaders($this->headers); + $result = $request->execute()->getBody(); if (array_key_exists("@odata.count", $result)) { diff --git a/src/Model/AccessReviewInstanceDecisionItemServicePrincipalResource.php b/src/Model/AccessReviewInstanceDecisionItemServicePrincipalResource.php index 6a93e19ac42..93bc3323599 100644 --- a/src/Model/AccessReviewInstanceDecisionItemServicePrincipalResource.php +++ b/src/Model/AccessReviewInstanceDecisionItemServicePrincipalResource.php @@ -25,6 +25,7 @@ class AccessReviewInstanceDecisionItemServicePrincipalResource extends AccessRev { /** * Gets the appId + * The globally unique identifier of the application to which access has been granted. * * @return string|null The appId */ @@ -39,6 +40,7 @@ public function getAppId() /** * Sets the appId + * The globally unique identifier of the application to which access has been granted. * * @param string $val The value of the appId * diff --git a/src/Model/AuthorizationPolicy.php b/src/Model/AuthorizationPolicy.php index 15b34bb403c..af45eb5a193 100644 --- a/src/Model/AuthorizationPolicy.php +++ b/src/Model/AuthorizationPolicy.php @@ -55,7 +55,7 @@ public function setAllowedToSignUpEmailBasedSubscriptions($val) /** * Gets the allowedToUseSSPR - * Indicates whether the Self-Serve Password Reset feature can be used by users on the tenant. + * Indicates whether users can use the Self-Serve Password Reset feature on the tenant. * * @return bool|null The allowedToUseSSPR */ @@ -70,7 +70,7 @@ public function getAllowedToUseSSPR() /** * Sets the allowedToUseSSPR - * Indicates whether the Self-Serve Password Reset feature can be used by users on the tenant. + * Indicates whether users can use the Self-Serve Password Reset feature on the tenant. * * @param bool $val The allowedToUseSSPR * @@ -113,7 +113,7 @@ public function setAllowEmailVerifiedUsersToJoinOrganization($val) /** * Gets the allowInvitesFrom - * Indicates who can invite external users to the organization. Possible values are: none, adminsAndGuestInviters, adminsGuestInvitersAndAllMembers, everyone. everyone is the default setting for all cloud environments except US Government. See more in the table below. + * Indicates who can invite external users to the organization. Possible values are: none, adminsAndGuestInviters, adminsGuestInvitersAndAllMembers, everyone. everyone is the default setting for all cloud environments except US Government. For more details, see allowInvitesFrom values. * * @return AllowInvitesFrom|null The allowInvitesFrom */ @@ -132,7 +132,7 @@ public function getAllowInvitesFrom() /** * Sets the allowInvitesFrom - * Indicates who can invite external users to the organization. Possible values are: none, adminsAndGuestInviters, adminsGuestInvitersAndAllMembers, everyone. everyone is the default setting for all cloud environments except US Government. See more in the table below. + * Indicates who can invite external users to the organization. Possible values are: none, adminsAndGuestInviters, adminsGuestInvitersAndAllMembers, everyone. everyone is the default setting for all cloud environments except US Government. For more details, see allowInvitesFrom values. * * @param AllowInvitesFrom $val The allowInvitesFrom * @@ -146,6 +146,7 @@ public function setAllowInvitesFrom($val) /** * Gets the allowUserConsentForRiskyApps + * Indicates whether user consent for risky apps is allowed. We recommend to keep this as false. Default value is false. * * @return bool|null The allowUserConsentForRiskyApps */ @@ -160,6 +161,7 @@ public function getAllowUserConsentForRiskyApps() /** * Sets the allowUserConsentForRiskyApps + * Indicates whether user consent for risky apps is allowed. We recommend to keep this as false. Default value is false. * * @param bool $val The allowUserConsentForRiskyApps * @@ -173,7 +175,7 @@ public function setAllowUserConsentForRiskyApps($val) /** * Gets the blockMsolPowerShell - * To disable the use of MSOL PowerShell set this property to true. This will also disable user-based access to the legacy service endpoint used by MSOL PowerShell. This does not affect Azure AD Connect or Microsoft Graph. + * To disable the use of MSOL PowerShell, set this property to true. This also disables user-based access to the legacy service endpoint used by MSOL PowerShell. This does not affect Azure Active Directory Connect or Microsoft Graph. * * @return bool|null The blockMsolPowerShell */ @@ -188,7 +190,7 @@ public function getBlockMsolPowerShell() /** * Sets the blockMsolPowerShell - * To disable the use of MSOL PowerShell set this property to true. This will also disable user-based access to the legacy service endpoint used by MSOL PowerShell. This does not affect Azure AD Connect or Microsoft Graph. + * To disable the use of MSOL PowerShell, set this property to true. This also disables user-based access to the legacy service endpoint used by MSOL PowerShell. This does not affect Azure Active Directory Connect or Microsoft Graph. * * @param bool $val The blockMsolPowerShell * diff --git a/src/Model/CrossTenantAccessPolicyConfigurationDefault.php b/src/Model/CrossTenantAccessPolicyConfigurationDefault.php index 13a0d837b20..34662e02b9c 100644 --- a/src/Model/CrossTenantAccessPolicyConfigurationDefault.php +++ b/src/Model/CrossTenantAccessPolicyConfigurationDefault.php @@ -26,6 +26,7 @@ class CrossTenantAccessPolicyConfigurationDefault extends Entity { /** * Gets the automaticUserConsentSettings + * Determines the default configuration for automatic user consent settings. The inboundAllowed and outboundAllowed properties are always false and cannot be updated in the default configuration. Read-only. * * @return InboundOutboundPolicyConfiguration|null The automaticUserConsentSettings */ @@ -44,6 +45,7 @@ public function getAutomaticUserConsentSettings() /** * Sets the automaticUserConsentSettings + * Determines the default configuration for automatic user consent settings. The inboundAllowed and outboundAllowed properties are always false and cannot be updated in the default configuration. Read-only. * * @param InboundOutboundPolicyConfiguration $val The automaticUserConsentSettings * diff --git a/src/Model/CrossTenantAccessPolicyConfigurationPartner.php b/src/Model/CrossTenantAccessPolicyConfigurationPartner.php index 672d349458b..4771924b60d 100644 --- a/src/Model/CrossTenantAccessPolicyConfigurationPartner.php +++ b/src/Model/CrossTenantAccessPolicyConfigurationPartner.php @@ -57,6 +57,7 @@ public function getProperties() /** * Gets the automaticUserConsentSettings + * Determines the partner-specific configuration for automatic user consent settings. Unless specifically configured, the inboundAllowed and outboundAllowed properties are null and inherit from the default settings, which is always false. * * @return InboundOutboundPolicyConfiguration|null The automaticUserConsentSettings */ @@ -75,6 +76,7 @@ public function getAutomaticUserConsentSettings() /** * Sets the automaticUserConsentSettings + * Determines the partner-specific configuration for automatic user consent settings. Unless specifically configured, the inboundAllowed and outboundAllowed properties are null and inherit from the default settings, which is always false. * * @param InboundOutboundPolicyConfiguration $val The automaticUserConsentSettings * @@ -311,6 +313,7 @@ public function setTenantId($val) /** * Gets the identitySynchronization + * Defines the cross-tenant policy for the synchronization of users from a partner tenant. Use this user synchronization policy to streamline collaboration between users in a multi-tenant organization by automating the creation, update, and deletion of users from one tenant to another. * * @return CrossTenantIdentitySyncPolicyPartner|null The identitySynchronization */ @@ -329,6 +332,7 @@ public function getIdentitySynchronization() /** * Sets the identitySynchronization + * Defines the cross-tenant policy for the synchronization of users from a partner tenant. Use this user synchronization policy to streamline collaboration between users in a multi-tenant organization by automating the creation, update, and deletion of users from one tenant to another. * * @param CrossTenantIdentitySyncPolicyPartner $val The identitySynchronization * diff --git a/src/Model/CrossTenantIdentitySyncPolicyPartner.php b/src/Model/CrossTenantIdentitySyncPolicyPartner.php index 0d31898f02f..c440e32da8b 100644 --- a/src/Model/CrossTenantIdentitySyncPolicyPartner.php +++ b/src/Model/CrossTenantIdentitySyncPolicyPartner.php @@ -57,6 +57,7 @@ public function getProperties() /** * Gets the displayName + * Display name for the cross-tenant user synchronization policy. Use the name of the partner Azure AD (Azure Active Directory) tenant to easily identify the policy. Optional. * * @return string|null The displayName */ @@ -71,6 +72,7 @@ public function getDisplayName() /** * Sets the displayName + * Display name for the cross-tenant user synchronization policy. Use the name of the partner Azure AD (Azure Active Directory) tenant to easily identify the policy. Optional. * * @param string $val The displayName * @@ -84,6 +86,7 @@ public function setDisplayName($val) /** * Gets the tenantId + * Tenant identifier for the partner Azure AD organization. Read-only. * * @return string|null The tenantId */ @@ -98,6 +101,7 @@ public function getTenantId() /** * Sets the tenantId + * Tenant identifier for the partner Azure AD organization. Read-only. * * @param string $val The tenantId * @@ -111,6 +115,7 @@ public function setTenantId($val) /** * Gets the userSyncInbound + * Defines whether users can be synchronized from the partner tenant. Key. * * @return CrossTenantUserSyncInbound|null The userSyncInbound */ @@ -129,6 +134,7 @@ public function getUserSyncInbound() /** * Sets the userSyncInbound + * Defines whether users can be synchronized from the partner tenant. Key. * * @param CrossTenantUserSyncInbound $val The userSyncInbound * diff --git a/src/Model/CrossTenantUserSyncInbound.php b/src/Model/CrossTenantUserSyncInbound.php index 53fc370cf13..ac6185de447 100644 --- a/src/Model/CrossTenantUserSyncInbound.php +++ b/src/Model/CrossTenantUserSyncInbound.php @@ -25,6 +25,7 @@ class CrossTenantUserSyncInbound extends Entity { /** * Gets the isSyncAllowed + * Defines whether user objects should be synchronized from the partner tenant. false causes any current user synchronization from the source tenant to the target tenant to stop. This property has no impact on existing users who have already been synchronized. * * @return bool|null The isSyncAllowed */ @@ -39,6 +40,7 @@ public function getIsSyncAllowed() /** * Sets the isSyncAllowed + * Defines whether user objects should be synchronized from the partner tenant. false causes any current user synchronization from the source tenant to the target tenant to stop. This property has no impact on existing users who have already been synchronized. * * @param bool $val The value of the isSyncAllowed * diff --git a/src/Model/DefaultUserRolePermissions.php b/src/Model/DefaultUserRolePermissions.php index 276c7a45617..d05480daa1b 100644 --- a/src/Model/DefaultUserRolePermissions.php +++ b/src/Model/DefaultUserRolePermissions.php @@ -53,7 +53,7 @@ public function setAllowedToCreateApps($val) } /** * Gets the allowedToCreateSecurityGroups - * Indicates whether the default user role can create security groups. + * Indicates whether the default user role can create security groups. This setting corresponds to the The Users can create security groups in Azure portals, API or PowerShell setting in the group settings menu in the Azure portal. * * @return bool|null The allowedToCreateSecurityGroups */ @@ -68,7 +68,7 @@ public function getAllowedToCreateSecurityGroups() /** * Sets the allowedToCreateSecurityGroups - * Indicates whether the default user role can create security groups. + * Indicates whether the default user role can create security groups. This setting corresponds to the The Users can create security groups in Azure portals, API or PowerShell setting in the group settings menu in the Azure portal. * * @param bool $val The value of the allowedToCreateSecurityGroups * diff --git a/src/Model/InboundOutboundPolicyConfiguration.php b/src/Model/InboundOutboundPolicyConfiguration.php index 4621b559bff..8c1240264fc 100644 --- a/src/Model/InboundOutboundPolicyConfiguration.php +++ b/src/Model/InboundOutboundPolicyConfiguration.php @@ -25,6 +25,7 @@ class InboundOutboundPolicyConfiguration extends Entity { /** * Gets the inboundAllowed + * Defines whether external users coming inbound are allowed. * * @return bool|null The inboundAllowed */ @@ -39,6 +40,7 @@ public function getInboundAllowed() /** * Sets the inboundAllowed + * Defines whether external users coming inbound are allowed. * * @param bool $val The value of the inboundAllowed * @@ -51,6 +53,7 @@ public function setInboundAllowed($val) } /** * Gets the outboundAllowed + * Defines whether internal users are allowed to go outbound. * * @return bool|null The outboundAllowed */ @@ -65,6 +68,7 @@ public function getOutboundAllowed() /** * Sets the outboundAllowed + * Defines whether internal users are allowed to go outbound. * * @param bool $val The value of the outboundAllowed * diff --git a/src/Model/OrgContact.php b/src/Model/OrgContact.php index 89bc57ff902..3a13e73fe9e 100644 --- a/src/Model/OrgContact.php +++ b/src/Model/OrgContact.php @@ -27,6 +27,7 @@ class OrgContact extends DirectoryObject /** * Gets the addresses + * Postal addresses for this organizational contact. For now a contact can only have one physical address. * * @return array|null The addresses */ @@ -41,6 +42,7 @@ public function getAddresses() /** * Sets the addresses + * Postal addresses for this organizational contact. For now a contact can only have one physical address. * * @param PhysicalOfficeAddress[] $val The addresses * @@ -54,6 +56,7 @@ public function setAddresses($val) /** * Gets the companyName + * Name of the company that this organizational contact belongs to. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq for null values). * * @return string|null The companyName */ @@ -68,6 +71,7 @@ public function getCompanyName() /** * Sets the companyName + * Name of the company that this organizational contact belongs to. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq for null values). * * @param string $val The companyName * @@ -81,6 +85,7 @@ public function setCompanyName($val) /** * Gets the department + * The name for the department in which the contact works. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq for null values). * * @return string|null The department */ @@ -95,6 +100,7 @@ public function getDepartment() /** * Sets the department + * The name for the department in which the contact works. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq for null values). * * @param string $val The department * @@ -108,6 +114,7 @@ public function setDepartment($val) /** * Gets the displayName + * Display name for this organizational contact. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq for null values), $search, and $orderBy. * * @return string|null The displayName */ @@ -122,6 +129,7 @@ public function getDisplayName() /** * Sets the displayName + * Display name for this organizational contact. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq for null values), $search, and $orderBy. * * @param string $val The displayName * @@ -135,6 +143,7 @@ public function setDisplayName($val) /** * Gets the givenName + * First name for this organizational contact. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq for null values). * * @return string|null The givenName */ @@ -149,6 +158,7 @@ public function getGivenName() /** * Sets the givenName + * First name for this organizational contact. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq for null values). * * @param string $val The givenName * @@ -162,6 +172,7 @@ public function setGivenName($val) /** * Gets the jobTitle + * Job title for this organizational contact. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq for null values). * * @return string|null The jobTitle */ @@ -176,6 +187,7 @@ public function getJobTitle() /** * Sets the jobTitle + * Job title for this organizational contact. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq for null values). * * @param string $val The jobTitle * @@ -189,6 +201,7 @@ public function setJobTitle($val) /** * Gets the mail + * The SMTP address for the contact, for example, 'jeff@contoso.onmicrosoft.com'. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq for null values). * * @return string|null The mail */ @@ -203,6 +216,7 @@ public function getMail() /** * Sets the mail + * The SMTP address for the contact, for example, 'jeff@contoso.onmicrosoft.com'. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq for null values). * * @param string $val The mail * @@ -216,6 +230,7 @@ public function setMail($val) /** * Gets the mailNickname + * Email alias (portion of email address pre-pending the @ symbol) for this organizational contact. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq for null values). * * @return string|null The mailNickname */ @@ -230,6 +245,7 @@ public function getMailNickname() /** * Sets the mailNickname + * Email alias (portion of email address pre-pending the @ symbol) for this organizational contact. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq for null values). * * @param string $val The mailNickname * @@ -243,6 +259,7 @@ public function setMailNickname($val) /** * Gets the onPremisesLastSyncDateTime + * Date and time when this organizational contact was last synchronized from on-premises AD. This date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Supports $filter (eq, ne, not, ge, le, in). * * @return \DateTime|null The onPremisesLastSyncDateTime */ @@ -261,6 +278,7 @@ public function getOnPremisesLastSyncDateTime() /** * Sets the onPremisesLastSyncDateTime + * Date and time when this organizational contact was last synchronized from on-premises AD. This date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Supports $filter (eq, ne, not, ge, le, in). * * @param \DateTime $val The onPremisesLastSyncDateTime * @@ -275,6 +293,7 @@ public function setOnPremisesLastSyncDateTime($val) /** * Gets the onPremisesProvisioningErrors + * List of any synchronization provisioning errors for this organizational contact. Supports $filter (eq, not for category and propertyCausingError), /$count eq 0, /$count ne 0. * * @return array|null The onPremisesProvisioningErrors */ @@ -289,6 +308,7 @@ public function getOnPremisesProvisioningErrors() /** * Sets the onPremisesProvisioningErrors + * List of any synchronization provisioning errors for this organizational contact. Supports $filter (eq, not for category and propertyCausingError), /$count eq 0, /$count ne 0. * * @param OnPremisesProvisioningError[] $val The onPremisesProvisioningErrors * @@ -302,6 +322,7 @@ public function setOnPremisesProvisioningErrors($val) /** * Gets the onPremisesSyncEnabled + * true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced and now mastered in Exchange; null if this object has never been synced from an on-premises directory (default). Supports $filter (eq, ne, not, in, and eq for null values). * * @return bool|null The onPremisesSyncEnabled */ @@ -316,6 +337,7 @@ public function getOnPremisesSyncEnabled() /** * Sets the onPremisesSyncEnabled + * true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced and now mastered in Exchange; null if this object has never been synced from an on-premises directory (default). Supports $filter (eq, ne, not, in, and eq for null values). * * @param bool $val The onPremisesSyncEnabled * @@ -330,6 +352,7 @@ public function setOnPremisesSyncEnabled($val) /** * Gets the phones + * List of phones for this organizational contact. Phone types can be mobile, business, and businessFax. Only one of each type can ever be present in the collection. * * @return array|null The phones */ @@ -344,6 +367,7 @@ public function getPhones() /** * Sets the phones + * List of phones for this organizational contact. Phone types can be mobile, business, and businessFax. Only one of each type can ever be present in the collection. * * @param Phone[] $val The phones * @@ -357,6 +381,7 @@ public function setPhones($val) /** * Gets the proxyAddresses + * For example: 'SMTP: bob@contoso.com', 'smtp: bob@sales.contoso.com'. The any operator is required for filter expressions on multi-valued properties. Supports $filter (eq, not, ge, le, startsWith, /$count eq 0, /$count ne 0). * * @return array|null The proxyAddresses */ @@ -371,6 +396,7 @@ public function getProxyAddresses() /** * Sets the proxyAddresses + * For example: 'SMTP: bob@contoso.com', 'smtp: bob@sales.contoso.com'. The any operator is required for filter expressions on multi-valued properties. Supports $filter (eq, not, ge, le, startsWith, /$count eq 0, /$count ne 0). * * @param string[] $val The proxyAddresses * @@ -384,6 +410,7 @@ public function setProxyAddresses($val) /** * Gets the surname + * Last name for this organizational contact. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq for null values). * * @return string|null The surname */ @@ -398,6 +425,7 @@ public function getSurname() /** * Sets the surname + * Last name for this organizational contact. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq for null values). * * @param string $val The surname * @@ -412,6 +440,7 @@ public function setSurname($val) /** * Gets the directReports + * The contact's direct reports. (The users and contacts that have their manager property set to this contact.) Read-only. Nullable. Supports $expand. * * @return array|null The directReports */ @@ -426,6 +455,7 @@ public function getDirectReports() /** * Sets the directReports + * The contact's direct reports. (The users and contacts that have their manager property set to this contact.) Read-only. Nullable. Supports $expand. * * @param DirectoryObject[] $val The directReports * @@ -439,6 +469,7 @@ public function setDirectReports($val) /** * Gets the manager + * The user or contact that is this contact's manager. Read-only. Supports $expand and $filter (eq) by id. * * @return DirectoryObject|null The manager */ @@ -457,6 +488,7 @@ public function getManager() /** * Sets the manager + * The user or contact that is this contact's manager. Read-only. Supports $expand and $filter (eq) by id. * * @param DirectoryObject $val The manager * @@ -471,6 +503,7 @@ public function setManager($val) /** * Gets the memberOf + * Groups that this contact is a member of. Read-only. Nullable. Supports $expand. * * @return array|null The memberOf */ @@ -485,6 +518,7 @@ public function getMemberOf() /** * Sets the memberOf + * Groups that this contact is a member of. Read-only. Nullable. Supports $expand. * * @param DirectoryObject[] $val The memberOf * @@ -499,6 +533,7 @@ public function setMemberOf($val) /** * Gets the transitiveMemberOf + * Groups that this contact is a member of, including groups that the contact is nested under. Read-only. Nullable. * * @return array|null The transitiveMemberOf */ @@ -513,6 +548,7 @@ public function getTransitiveMemberOf() /** * Sets the transitiveMemberOf + * Groups that this contact is a member of, including groups that the contact is nested under. Read-only. Nullable. * * @param DirectoryObject[] $val The transitiveMemberOf * diff --git a/src/Model/WorkbookFilterDatetime.php b/src/Model/WorkbookFilterDatetime.php index ebc17a6b34a..90f4224cc41 100644 --- a/src/Model/WorkbookFilterDatetime.php +++ b/src/Model/WorkbookFilterDatetime.php @@ -25,6 +25,7 @@ class WorkbookFilterDatetime extends Entity { /** * Gets the date + * The date in ISO8601 format used to filter data. * * @return string|null The date */ @@ -39,6 +40,7 @@ public function getDate() /** * Sets the date + * The date in ISO8601 format used to filter data. * * @param string $val The value of the date * @@ -51,6 +53,7 @@ public function setDate($val) } /** * Gets the specificity + * How specific the date should be used to keep data. For example, if the date is 2005-04-02 and the specifity is set to 'month', the filter operation will keep all rows with a date in the month of april 2009. The possible values are: Year, Monday, Day, Hour, Minute, Second. * * @return string|null The specificity */ @@ -65,6 +68,7 @@ public function getSpecificity() /** * Sets the specificity + * How specific the date should be used to keep data. For example, if the date is 2005-04-02 and the specifity is set to 'month', the filter operation will keep all rows with a date in the month of april 2009. The possible values are: Year, Monday, Day, Hour, Minute, Second. * * @param string $val The value of the specificity *