code
stringlengths 15
9.96M
| docstring
stringlengths 1
10.1k
| func_name
stringlengths 1
124
| language
stringclasses 1
value | repo
stringlengths 7
63
| path
stringlengths 6
186
| url
stringlengths 50
236
| license
stringclasses 4
values |
---|---|---|---|---|---|---|---|
public function getCreatorId()
{
if (!$this->isPropertyAvailable("CreatorId")) {
return null;
}
return $this->getProperty("CreatorId");
} | @return string | getCreatorId | php | vgrem/phpSPO | src/Directory/Subscriptions/Subscription.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/Subscriptions/Subscription.php | MIT |
public function setCreatorId($value)
{
$this->setProperty("CreatorId", $value, true);
} | @var string | setCreatorId | php | vgrem/phpSPO | src/Directory/Subscriptions/Subscription.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/Subscriptions/Subscription.php | MIT |
public function getLatestSupportedTlsVersion()
{
if (!$this->isPropertyAvailable("LatestSupportedTlsVersion")) {
return null;
}
return $this->getProperty("LatestSupportedTlsVersion");
} | @return string | getLatestSupportedTlsVersion | php | vgrem/phpSPO | src/Directory/Subscriptions/Subscription.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/Subscriptions/Subscription.php | MIT |
public function setLatestSupportedTlsVersion($value)
{
$this->setProperty("LatestSupportedTlsVersion", $value, true);
} | @var string | setLatestSupportedTlsVersion | php | vgrem/phpSPO | src/Directory/Subscriptions/Subscription.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/Subscriptions/Subscription.php | MIT |
public function getType()
{
if (!$this->isPropertyAvailable("Type")) {
return null;
}
return $this->getProperty("Type");
} | @return string | getType | php | vgrem/phpSPO | src/Directory/Identities/IdentityProvider.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/Identities/IdentityProvider.php | MIT |
public function setType($value)
{
$this->setProperty("Type", $value, true);
} | @var string | setType | php | vgrem/phpSPO | src/Directory/Identities/IdentityProvider.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/Identities/IdentityProvider.php | MIT |
public function getName()
{
if (!$this->isPropertyAvailable("Name")) {
return null;
}
return $this->getProperty("Name");
} | @return string | getName | php | vgrem/phpSPO | src/Directory/Identities/IdentityProvider.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/Identities/IdentityProvider.php | MIT |
public function setName($value)
{
$this->setProperty("Name", $value, true);
} | @var string | setName | php | vgrem/phpSPO | src/Directory/Identities/IdentityProvider.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/Identities/IdentityProvider.php | MIT |
public function getClientId()
{
if (!$this->isPropertyAvailable("ClientId")) {
return null;
}
return $this->getProperty("ClientId");
} | @return string | getClientId | php | vgrem/phpSPO | src/Directory/Identities/IdentityProvider.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/Identities/IdentityProvider.php | MIT |
public function setClientId($value)
{
$this->setProperty("ClientId", $value, true);
} | @var string | setClientId | php | vgrem/phpSPO | src/Directory/Identities/IdentityProvider.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/Identities/IdentityProvider.php | MIT |
public function getClientSecret()
{
if (!$this->isPropertyAvailable("ClientSecret")) {
return null;
}
return $this->getProperty("ClientSecret");
} | @return string | getClientSecret | php | vgrem/phpSPO | src/Directory/Identities/IdentityProvider.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/Identities/IdentityProvider.php | MIT |
public function setClientSecret($value)
{
$this->setProperty("ClientSecret", $value, true);
} | @var string | setClientSecret | php | vgrem/phpSPO | src/Directory/Identities/IdentityProvider.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/Identities/IdentityProvider.php | MIT |
public function getTargetTenantId()
{
if (!$this->isPropertyAvailable("TargetTenantId")) {
return null;
}
return $this->getProperty("TargetTenantId");
} | @return string | getTargetTenantId | php | vgrem/phpSPO | src/Directory/SignIns/RestrictedSignIn.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/SignIns/RestrictedSignIn.php | MIT |
public function setTargetTenantId($value)
{
$this->setProperty("TargetTenantId", $value, true);
} | @var string | setTargetTenantId | php | vgrem/phpSPO | src/Directory/SignIns/RestrictedSignIn.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/SignIns/RestrictedSignIn.php | MIT |
public function getUserDisplayName()
{
if (!$this->isPropertyAvailable("UserDisplayName")) {
return null;
}
return $this->getProperty("UserDisplayName");
} | Display name of the user that initiated the sign-in.
@return string | getUserDisplayName | php | vgrem/phpSPO | src/Directory/SignIns/SignIn.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/SignIns/SignIn.php | MIT |
public function setUserDisplayName($value)
{
$this->setProperty("UserDisplayName", $value, true);
} | Display name of the user that initiated the sign-in.
@var string | setUserDisplayName | php | vgrem/phpSPO | src/Directory/SignIns/SignIn.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/SignIns/SignIn.php | MIT |
public function getUserPrincipalName()
{
if (!$this->isPropertyAvailable("UserPrincipalName")) {
return null;
}
return $this->getProperty("UserPrincipalName");
} | User principal name of the user that initiated the sign-in.
@return string | getUserPrincipalName | php | vgrem/phpSPO | src/Directory/SignIns/SignIn.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/SignIns/SignIn.php | MIT |
public function setUserPrincipalName($value)
{
$this->setProperty("UserPrincipalName", $value, true);
} | User principal name of the user that initiated the sign-in.
@var string | setUserPrincipalName | php | vgrem/phpSPO | src/Directory/SignIns/SignIn.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/SignIns/SignIn.php | MIT |
public function getUserId()
{
if (!$this->isPropertyAvailable("UserId")) {
return null;
}
return $this->getProperty("UserId");
} | ID of the user that initiated the sign-in.
@return string | getUserId | php | vgrem/phpSPO | src/Directory/SignIns/SignIn.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/SignIns/SignIn.php | MIT |
public function setUserId($value)
{
$this->setProperty("UserId", $value, true);
} | ID of the user that initiated the sign-in.
@var string | setUserId | php | vgrem/phpSPO | src/Directory/SignIns/SignIn.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/SignIns/SignIn.php | MIT |
public function getAppId()
{
if (!$this->isPropertyAvailable("AppId")) {
return null;
}
return $this->getProperty("AppId");
} | Unique GUID representing the app ID in the Azure Active Directory.
@return string | getAppId | php | vgrem/phpSPO | src/Directory/SignIns/SignIn.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/SignIns/SignIn.php | MIT |
public function setAppId($value)
{
$this->setProperty("AppId", $value, true);
} | Unique GUID representing the app ID in the Azure Active Directory.
@var string | setAppId | php | vgrem/phpSPO | src/Directory/SignIns/SignIn.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/SignIns/SignIn.php | MIT |
public function getAppDisplayName()
{
if (!$this->isPropertyAvailable("AppDisplayName")) {
return null;
}
return $this->getProperty("AppDisplayName");
} | App name displayed in the Azure Portal.
@return string | getAppDisplayName | php | vgrem/phpSPO | src/Directory/SignIns/SignIn.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/SignIns/SignIn.php | MIT |
public function setAppDisplayName($value)
{
$this->setProperty("AppDisplayName", $value, true);
} | App name displayed in the Azure Portal.
@var string | setAppDisplayName | php | vgrem/phpSPO | src/Directory/SignIns/SignIn.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/SignIns/SignIn.php | MIT |
public function getIpAddress()
{
if (!$this->isPropertyAvailable("IpAddress")) {
return null;
}
return $this->getProperty("IpAddress");
} | IP address of the client used to sign in.
@return string | getIpAddress | php | vgrem/phpSPO | src/Directory/SignIns/SignIn.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/SignIns/SignIn.php | MIT |
public function setIpAddress($value)
{
$this->setProperty("IpAddress", $value, true);
} | IP address of the client used to sign in.
@var string | setIpAddress | php | vgrem/phpSPO | src/Directory/SignIns/SignIn.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/SignIns/SignIn.php | MIT |
public function getClientAppUsed()
{
if (!$this->isPropertyAvailable("ClientAppUsed")) {
return null;
}
return $this->getProperty("ClientAppUsed");
} | Identifies the legacy client used for sign-in activity. Includes Browser, Exchange Active Sync, modern clients, IMAP, MAPI, SMTP, and POP.
@return string | getClientAppUsed | php | vgrem/phpSPO | src/Directory/SignIns/SignIn.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/SignIns/SignIn.php | MIT |
public function setClientAppUsed($value)
{
$this->setProperty("ClientAppUsed", $value, true);
} | Identifies the legacy client used for sign-in activity. Includes Browser, Exchange Active Sync, modern clients, IMAP, MAPI, SMTP, and POP.
@var string | setClientAppUsed | php | vgrem/phpSPO | src/Directory/SignIns/SignIn.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/SignIns/SignIn.php | MIT |
public function getCorrelationId()
{
if (!$this->isPropertyAvailable("CorrelationId")) {
return null;
}
return $this->getProperty("CorrelationId");
} | The request ID sent from the client when the sign-in is initiated; used to troubleshoot sign-in activity.
@return string | getCorrelationId | php | vgrem/phpSPO | src/Directory/SignIns/SignIn.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/SignIns/SignIn.php | MIT |
public function setCorrelationId($value)
{
$this->setProperty("CorrelationId", $value, true);
} | The request ID sent from the client when the sign-in is initiated; used to troubleshoot sign-in activity.
@var string | setCorrelationId | php | vgrem/phpSPO | src/Directory/SignIns/SignIn.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/SignIns/SignIn.php | MIT |
public function getIsInteractive()
{
if (!$this->isPropertyAvailable("IsInteractive")) {
return null;
}
return $this->getProperty("IsInteractive");
} | Indicates if a sign-in is interactive or not.
@return bool | getIsInteractive | php | vgrem/phpSPO | src/Directory/SignIns/SignIn.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/SignIns/SignIn.php | MIT |
public function setIsInteractive($value)
{
$this->setProperty("IsInteractive", $value, true);
} | Indicates if a sign-in is interactive or not.
@var bool | setIsInteractive | php | vgrem/phpSPO | src/Directory/SignIns/SignIn.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/SignIns/SignIn.php | MIT |
public function getResourceDisplayName()
{
if (!$this->isPropertyAvailable("ResourceDisplayName")) {
return null;
}
return $this->getProperty("ResourceDisplayName");
} | Name of the resource the user signed into.
@return string | getResourceDisplayName | php | vgrem/phpSPO | src/Directory/SignIns/SignIn.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/SignIns/SignIn.php | MIT |
public function setResourceDisplayName($value)
{
$this->setProperty("ResourceDisplayName", $value, true);
} | Name of the resource the user signed into.
@var string | setResourceDisplayName | php | vgrem/phpSPO | src/Directory/SignIns/SignIn.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/SignIns/SignIn.php | MIT |
public function getResourceId()
{
if (!$this->isPropertyAvailable("ResourceId")) {
return null;
}
return $this->getProperty("ResourceId");
} | ID of the resource that the user signed into.
@return string | getResourceId | php | vgrem/phpSPO | src/Directory/SignIns/SignIn.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/SignIns/SignIn.php | MIT |
public function setResourceId($value)
{
$this->setProperty("ResourceId", $value, true);
} | ID of the resource that the user signed into.
@var string | setResourceId | php | vgrem/phpSPO | src/Directory/SignIns/SignIn.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/SignIns/SignIn.php | MIT |
public function getStatus()
{
if (!$this->isPropertyAvailable("Status")) {
return null;
}
return $this->getProperty("Status");
} | Sign-in status. Possible values include `Success` and `Failure`.
@return SignInStatus | getStatus | php | vgrem/phpSPO | src/Directory/SignIns/SignIn.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/SignIns/SignIn.php | MIT |
public function setStatus($value)
{
$this->setProperty("Status", $value, true);
} | Sign-in status. Possible values include `Success` and `Failure`.
@var SignInStatus | setStatus | php | vgrem/phpSPO | src/Directory/SignIns/SignIn.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/SignIns/SignIn.php | MIT |
public function getLocation()
{
return $this->getProperty("Location", new SignInLocation());
} | Provides the city, state, and country code where the sign-in originated.
@return SignInLocation | getLocation | php | vgrem/phpSPO | src/Directory/SignIns/SignIn.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/SignIns/SignIn.php | MIT |
public function setLocation($value)
{
$this->setProperty("Location", $value, true);
} | Provides the city, state, and country code where the sign-in originated.
@var SignInLocation | setLocation | php | vgrem/phpSPO | src/Directory/SignIns/SignIn.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/SignIns/SignIn.php | MIT |
public function getRiskEventTypes_v2()
{
return $this->getProperty("RiskEventTypes_v2");
} | The list of risk event types associated with the sign-in. Possible values: `unlikelyTravel`, `anonymizedIPAddress`, `maliciousIPAddress`, `unfamiliarFeatures`, `malwareInfectedIPAddress`, `suspiciousIPAddress`, `leakedCredentials`, `investigationsThreatIntelligence`, `generic`, or `unknownFutureValue`.
@return array | getRiskEventTypes_v2 | php | vgrem/phpSPO | src/Directory/SignIns/SignIn.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/SignIns/SignIn.php | MIT |
public function setRiskEventTypes_v2($value)
{
$this->setProperty("RiskEventTypes_v2", $value, true);
} | The list of risk event types associated with the sign-in. Possible values: `unlikelyTravel`, `anonymizedIPAddress`, `maliciousIPAddress`, `unfamiliarFeatures`, `malwareInfectedIPAddress`, `suspiciousIPAddress`, `leakedCredentials`, `investigationsThreatIntelligence`, `generic`, or `unknownFutureValue`.
@var array | setRiskEventTypes_v2 | php | vgrem/phpSPO | src/Directory/SignIns/SignIn.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/SignIns/SignIn.php | MIT |
public function getSkuId()
{
return $this->getProperty("SkuId");
} | @return string | getSkuId | php | vgrem/phpSPO | src/Directory/Licenses/LicenseDetails.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/Licenses/LicenseDetails.php | MIT |
public function setSkuId($value)
{
$this->setProperty("SkuId", $value, true);
} | @var string | setSkuId | php | vgrem/phpSPO | src/Directory/Licenses/LicenseDetails.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/Licenses/LicenseDetails.php | MIT |
public function getSkuPartNumber()
{
if (!$this->isPropertyAvailable("SkuPartNumber")) {
return null;
}
return $this->getProperty("SkuPartNumber");
} | @return string | getSkuPartNumber | php | vgrem/phpSPO | src/Directory/Licenses/LicenseDetails.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/Licenses/LicenseDetails.php | MIT |
public function setSkuPartNumber($value)
{
$this->setProperty("SkuPartNumber", $value, true);
} | @var string | setSkuPartNumber | php | vgrem/phpSPO | src/Directory/Licenses/LicenseDetails.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/Licenses/LicenseDetails.php | MIT |
public function getCapabilityStatus()
{
if (!$this->isPropertyAvailable("CapabilityStatus")) {
return null;
}
return $this->getProperty("CapabilityStatus");
} | Possible values are: `Enabled`, `Warning`, `Suspended`, `Deleted`, `LockedOut`.
@return string | getCapabilityStatus | php | vgrem/phpSPO | src/Directory/Licenses/SubscribedSku.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/Licenses/SubscribedSku.php | MIT |
public function setCapabilityStatus($value)
{
$this->setProperty("CapabilityStatus", $value, true);
} | Possible values are: `Enabled`, `Warning`, `Suspended`, `Deleted`, `LockedOut`.
@var string | setCapabilityStatus | php | vgrem/phpSPO | src/Directory/Licenses/SubscribedSku.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/Licenses/SubscribedSku.php | MIT |
public function getConsumedUnits()
{
if (!$this->isPropertyAvailable("ConsumedUnits")) {
return null;
}
return $this->getProperty("ConsumedUnits");
} | The number of licenses that have been assigned.
@return integer | getConsumedUnits | php | vgrem/phpSPO | src/Directory/Licenses/SubscribedSku.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/Licenses/SubscribedSku.php | MIT |
public function setConsumedUnits($value)
{
$this->setProperty("ConsumedUnits", $value, true);
} | The number of licenses that have been assigned.
@var integer | setConsumedUnits | php | vgrem/phpSPO | src/Directory/Licenses/SubscribedSku.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/Licenses/SubscribedSku.php | MIT |
public function getSkuId()
{
if (!$this->isPropertyAvailable("SkuId")) {
return null;
}
return $this->getProperty("SkuId");
} | The unique identifier (GUID) for the service SKU.
@return string | getSkuId | php | vgrem/phpSPO | src/Directory/Licenses/SubscribedSku.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/Licenses/SubscribedSku.php | MIT |
public function setSkuId($value)
{
$this->setProperty("SkuId", $value, true);
} | The unique identifier (GUID) for the service SKU.
@var string | setSkuId | php | vgrem/phpSPO | src/Directory/Licenses/SubscribedSku.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/Licenses/SubscribedSku.php | MIT |
public function getSkuPartNumber()
{
if (!$this->isPropertyAvailable("SkuPartNumber")) {
return null;
}
return $this->getProperty("SkuPartNumber");
} | The SKU part number; for example: "AAD_PREMIUM" or "RMSBASIC". To get a list of commercial subscriptions that an organization has acquired, see [List subscribedSkus](../api/subscribedsku-list.md).
@return string | getSkuPartNumber | php | vgrem/phpSPO | src/Directory/Licenses/SubscribedSku.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/Licenses/SubscribedSku.php | MIT |
public function setSkuPartNumber($value)
{
$this->setProperty("SkuPartNumber", $value, true);
} | The SKU part number; for example: "AAD_PREMIUM" or "RMSBASIC". To get a list of commercial subscriptions that an organization has acquired, see [List subscribedSkus](../api/subscribedsku-list.md).
@var string | setSkuPartNumber | php | vgrem/phpSPO | src/Directory/Licenses/SubscribedSku.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/Licenses/SubscribedSku.php | MIT |
public function getAppliesTo()
{
if (!$this->isPropertyAvailable("AppliesTo")) {
return null;
}
return $this->getProperty("AppliesTo");
} | For example, "User" or "Company".
@return string | getAppliesTo | php | vgrem/phpSPO | src/Directory/Licenses/SubscribedSku.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/Licenses/SubscribedSku.php | MIT |
public function setAppliesTo($value)
{
$this->setProperty("AppliesTo", $value, true);
} | For example, "User" or "Company".
@var string | setAppliesTo | php | vgrem/phpSPO | src/Directory/Licenses/SubscribedSku.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/Licenses/SubscribedSku.php | MIT |
public function getPrepaidUnits()
{
if (!$this->isPropertyAvailable("PrepaidUnits")) {
return null;
}
return $this->getProperty("PrepaidUnits");
} | Information about the number and status of prepaid licenses.
@return LicenseUnitsDetail | getPrepaidUnits | php | vgrem/phpSPO | src/Directory/Licenses/SubscribedSku.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/Licenses/SubscribedSku.php | MIT |
public function setPrepaidUnits($value)
{
$this->setProperty("PrepaidUnits", $value, true);
} | Information about the number and status of prepaid licenses.
@var LicenseUnitsDetail | setPrepaidUnits | php | vgrem/phpSPO | src/Directory/Licenses/SubscribedSku.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/Licenses/SubscribedSku.php | MIT |
public function getCapability()
{
if (!$this->isPropertyAvailable("Capability")) {
return null;
}
return $this->getProperty("Capability");
} | @return string | getCapability | php | vgrem/phpSPO | src/Directory/ServicePrincipals/Endpoint.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/Endpoint.php | MIT |
public function setCapability($value)
{
$this->setProperty("Capability", $value, true);
} | @var string | setCapability | php | vgrem/phpSPO | src/Directory/ServicePrincipals/Endpoint.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/Endpoint.php | MIT |
public function getProviderId()
{
if (!$this->isPropertyAvailable("ProviderId")) {
return null;
}
return $this->getProperty("ProviderId");
} | @return string | getProviderId | php | vgrem/phpSPO | src/Directory/ServicePrincipals/Endpoint.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/Endpoint.php | MIT |
public function setProviderId($value)
{
$this->setProperty("ProviderId", $value, true);
} | @var string | setProviderId | php | vgrem/phpSPO | src/Directory/ServicePrincipals/Endpoint.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/Endpoint.php | MIT |
public function getProviderName()
{
if (!$this->isPropertyAvailable("ProviderName")) {
return null;
}
return $this->getProperty("ProviderName");
} | @return string | getProviderName | php | vgrem/phpSPO | src/Directory/ServicePrincipals/Endpoint.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/Endpoint.php | MIT |
public function setProviderName($value)
{
$this->setProperty("ProviderName", $value, true);
} | @var string | setProviderName | php | vgrem/phpSPO | src/Directory/ServicePrincipals/Endpoint.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/Endpoint.php | MIT |
public function getUri()
{
if (!$this->isPropertyAvailable("Uri")) {
return null;
}
return $this->getProperty("Uri");
} | @return string | getUri | php | vgrem/phpSPO | src/Directory/ServicePrincipals/Endpoint.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/Endpoint.php | MIT |
public function setUri($value)
{
$this->setProperty("Uri", $value, true);
} | @var string | setUri | php | vgrem/phpSPO | src/Directory/ServicePrincipals/Endpoint.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/Endpoint.php | MIT |
public function getProviderResourceId()
{
if (!$this->isPropertyAvailable("ProviderResourceId")) {
return null;
}
return $this->getProperty("ProviderResourceId");
} | @return string | getProviderResourceId | php | vgrem/phpSPO | src/Directory/ServicePrincipals/Endpoint.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/Endpoint.php | MIT |
public function setProviderResourceId($value)
{
$this->setProperty("ProviderResourceId", $value, true);
} | @var string | setProviderResourceId | php | vgrem/phpSPO | src/Directory/ServicePrincipals/Endpoint.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/Endpoint.php | MIT |
public function getAccountEnabled()
{
if (!$this->isPropertyAvailable("AccountEnabled")) {
return null;
}
return $this->getProperty("AccountEnabled");
} | **true** if the service principal account is enabled; otherwise, **false**.
@return bool | getAccountEnabled | php | vgrem/phpSPO | src/Directory/ServicePrincipals/ServicePrincipal.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/ServicePrincipal.php | MIT |
public function setAccountEnabled($value)
{
$this->setProperty("AccountEnabled", $value, true);
} | **true** if the service principal account is enabled; otherwise, **false**.
@var bool | setAccountEnabled | php | vgrem/phpSPO | src/Directory/ServicePrincipals/ServicePrincipal.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/ServicePrincipal.php | MIT |
public function getAlternativeNames()
{
if (!$this->isPropertyAvailable("AlternativeNames")) {
return null;
}
return $this->getProperty("AlternativeNames");
} | Used to retrieve service principals by subscription, identify resource group and full resource ids for [managed identities](https://aka.ms/azuremanagedidentity).
@return array | getAlternativeNames | php | vgrem/phpSPO | src/Directory/ServicePrincipals/ServicePrincipal.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/ServicePrincipal.php | MIT |
public function setAlternativeNames($value)
{
$this->setProperty("AlternativeNames", $value, true);
} | Used to retrieve service principals by subscription, identify resource group and full resource ids for [managed identities](https://aka.ms/azuremanagedidentity).
@var array | setAlternativeNames | php | vgrem/phpSPO | src/Directory/ServicePrincipals/ServicePrincipal.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/ServicePrincipal.php | MIT |
public function getAppDisplayName()
{
if (!$this->isPropertyAvailable("AppDisplayName")) {
return null;
}
return $this->getProperty("AppDisplayName");
} | The display name exposed by the associated application.
@return string | getAppDisplayName | php | vgrem/phpSPO | src/Directory/ServicePrincipals/ServicePrincipal.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/ServicePrincipal.php | MIT |
public function setAppDisplayName($value)
{
$this->setProperty("AppDisplayName", $value, true);
} | The display name exposed by the associated application.
@var string | setAppDisplayName | php | vgrem/phpSPO | src/Directory/ServicePrincipals/ServicePrincipal.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/ServicePrincipal.php | MIT |
public function getAppId()
{
if (!$this->isPropertyAvailable("AppId")) {
return null;
}
return $this->getProperty("AppId");
} | The unique identifier for the associated application (its **appId** property).
@return string | getAppId | php | vgrem/phpSPO | src/Directory/ServicePrincipals/ServicePrincipal.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/ServicePrincipal.php | MIT |
public function setAppId($value)
{
$this->setProperty("AppId", $value, true);
} | The unique identifier for the associated application (its **appId** property).
@var string | setAppId | php | vgrem/phpSPO | src/Directory/ServicePrincipals/ServicePrincipal.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/ServicePrincipal.php | MIT |
public function getAppOwnerOrganizationId()
{
if (!$this->isPropertyAvailable("AppOwnerOrganizationId")) {
return null;
}
return $this->getProperty("AppOwnerOrganizationId");
} | Contains the tenant id where the application is registered. This is applicable only to service principals backed by applications.
@return string | getAppOwnerOrganizationId | php | vgrem/phpSPO | src/Directory/ServicePrincipals/ServicePrincipal.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/ServicePrincipal.php | MIT |
public function setAppOwnerOrganizationId($value)
{
$this->setProperty("AppOwnerOrganizationId", $value, true);
} | Contains the tenant id where the application is registered. This is applicable only to service principals backed by applications.
@var string | setAppOwnerOrganizationId | php | vgrem/phpSPO | src/Directory/ServicePrincipals/ServicePrincipal.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/ServicePrincipal.php | MIT |
public function getAppRoleAssignmentRequired()
{
if (!$this->isPropertyAvailable("AppRoleAssignmentRequired")) {
return null;
}
return $this->getProperty("AppRoleAssignmentRequired");
} | Specifies whether users or other service principals need to be granted an app role assignment for this service principal before users can sign in or apps can get tokens. The default value is **false**. Not nullable.
@return bool | getAppRoleAssignmentRequired | php | vgrem/phpSPO | src/Directory/ServicePrincipals/ServicePrincipal.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/ServicePrincipal.php | MIT |
public function setAppRoleAssignmentRequired($value)
{
$this->setProperty("AppRoleAssignmentRequired", $value, true);
} | Specifies whether users or other service principals need to be granted an app role assignment for this service principal before users can sign in or apps can get tokens. The default value is **false**. Not nullable.
@var bool | setAppRoleAssignmentRequired | php | vgrem/phpSPO | src/Directory/ServicePrincipals/ServicePrincipal.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/ServicePrincipal.php | MIT |
public function getDisplayName()
{
if (!$this->isPropertyAvailable("DisplayName")) {
return null;
}
return $this->getProperty("DisplayName");
} | The display name for the service principal.
@return string | getDisplayName | php | vgrem/phpSPO | src/Directory/ServicePrincipals/ServicePrincipal.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/ServicePrincipal.php | MIT |
public function setDisplayName($value)
{
$this->setProperty("DisplayName", $value, true);
} | The display name for the service principal.
@var string | setDisplayName | php | vgrem/phpSPO | src/Directory/ServicePrincipals/ServicePrincipal.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/ServicePrincipal.php | MIT |
public function getHomepage()
{
if (!$this->isPropertyAvailable("Homepage")) {
return null;
}
return $this->getProperty("Homepage");
} | Home page or landing page of the application.
@return string | getHomepage | php | vgrem/phpSPO | src/Directory/ServicePrincipals/ServicePrincipal.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/ServicePrincipal.php | MIT |
public function setHomepage($value)
{
$this->setProperty("Homepage", $value, true);
} | Home page or landing page of the application.
@var string | setHomepage | php | vgrem/phpSPO | src/Directory/ServicePrincipals/ServicePrincipal.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/ServicePrincipal.php | MIT |
public function getLogoutUrl()
{
if (!$this->isPropertyAvailable("LogoutUrl")) {
return null;
}
return $this->getProperty("LogoutUrl");
} | Specifies the URL that will be used by Microsoft's authorization service to logout an user using OpenId Connect [front-channel](https://openid.net/specs/openid-connect-frontchannel-1_0.html), [back-channel](https://openid.net/specs/openid-connect-backchannel-1_0.html) or SAML logout protocols.
@return string | getLogoutUrl | php | vgrem/phpSPO | src/Directory/ServicePrincipals/ServicePrincipal.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/ServicePrincipal.php | MIT |
public function setLogoutUrl($value)
{
$this->setProperty("LogoutUrl", $value, true);
} | Specifies the URL that will be used by Microsoft's authorization service to logout an user using OpenId Connect [front-channel](https://openid.net/specs/openid-connect-frontchannel-1_0.html), [back-channel](https://openid.net/specs/openid-connect-backchannel-1_0.html) or SAML logout protocols.
@var string | setLogoutUrl | php | vgrem/phpSPO | src/Directory/ServicePrincipals/ServicePrincipal.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/ServicePrincipal.php | MIT |
public function getReplyUrls()
{
if (!$this->isPropertyAvailable("ReplyUrls")) {
return null;
}
return $this->getProperty("ReplyUrls");
} | The URLs that user tokens are sent to for sign in with the associated application, or the redirect URIs that OAuth 2.0 authorization codes and access tokens are sent to for the associated application. Not nullable.
@return array | getReplyUrls | php | vgrem/phpSPO | src/Directory/ServicePrincipals/ServicePrincipal.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/ServicePrincipal.php | MIT |
public function setReplyUrls($value)
{
$this->setProperty("ReplyUrls", $value, true);
} | The URLs that user tokens are sent to for sign in with the associated application, or the redirect URIs that OAuth 2.0 authorization codes and access tokens are sent to for the associated application. Not nullable.
@var array | setReplyUrls | php | vgrem/phpSPO | src/Directory/ServicePrincipals/ServicePrincipal.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/ServicePrincipal.php | MIT |
public function getServicePrincipalNames()
{
if (!$this->isPropertyAvailable("ServicePrincipalNames")) {
return null;
}
return $this->getProperty("ServicePrincipalNames");
} | Contains the list of **identifiersUris**, copied over from the associated [application](application.md). Additional values can be added to hybrid applications. These values can be used to identify the permissions exposed by this app within Azure AD. For example,<ul><li>Client apps can specify a resource URI which is based on the values of this property to acquire an access token, which is the URI returned in the “aud” claim.</li></ul><br>The any operator is required for filter expressions on multi-valued properties. Not nullable.
@return array | getServicePrincipalNames | php | vgrem/phpSPO | src/Directory/ServicePrincipals/ServicePrincipal.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/ServicePrincipal.php | MIT |
public function setServicePrincipalNames($value)
{
$this->setProperty("ServicePrincipalNames", $value, true);
} | Contains the list of **identifiersUris**, copied over from the associated [application](application.md). Additional values can be added to hybrid applications. These values can be used to identify the permissions exposed by this app within Azure AD. For example,<ul><li>Client apps can specify a resource URI which is based on the values of this property to acquire an access token, which is the URI returned in the “aud” claim.</li></ul><br>The any operator is required for filter expressions on multi-valued properties. Not nullable.
@var array | setServicePrincipalNames | php | vgrem/phpSPO | src/Directory/ServicePrincipals/ServicePrincipal.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/ServicePrincipal.php | MIT |
public function getServicePrincipalType()
{
if (!$this->isPropertyAvailable("ServicePrincipalType")) {
return null;
}
return $this->getProperty("ServicePrincipalType");
} | Identifies if the service principal represents an application or a managed identity. This is set by Azure AD internally. For a service principal that represents an [application](./application.md) this is set as __Application__. For a service principal that represent a [managed identity](https://docs.microsoft.com/azure/active-directory/managed-identities-azure-resources/overview) this is set as __ManagedIdentity__.
@return string | getServicePrincipalType | php | vgrem/phpSPO | src/Directory/ServicePrincipals/ServicePrincipal.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/ServicePrincipal.php | MIT |
public function setServicePrincipalType($value)
{
$this->setProperty("ServicePrincipalType", $value, true);
} | Identifies if the service principal represents an application or a managed identity. This is set by Azure AD internally. For a service principal that represents an [application](./application.md) this is set as __Application__. For a service principal that represent a [managed identity](https://docs.microsoft.com/azure/active-directory/managed-identities-azure-resources/overview) this is set as __ManagedIdentity__.
@var string | setServicePrincipalType | php | vgrem/phpSPO | src/Directory/ServicePrincipals/ServicePrincipal.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/ServicePrincipal.php | MIT |
public function getTags()
{
if (!$this->isPropertyAvailable("Tags")) {
return null;
}
return $this->getProperty("Tags");
} | Custom strings that can be used to categorize and identify the service principal. Not nullable.
@return array | getTags | php | vgrem/phpSPO | src/Directory/ServicePrincipals/ServicePrincipal.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/ServicePrincipal.php | MIT |
public function setTags($value)
{
$this->setProperty("Tags", $value, true);
} | Custom strings that can be used to categorize and identify the service principal. Not nullable.
@var array | setTags | php | vgrem/phpSPO | src/Directory/ServicePrincipals/ServicePrincipal.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/ServicePrincipal.php | MIT |
public function getTokenEncryptionKeyId()
{
if (!$this->isPropertyAvailable("TokenEncryptionKeyId")) {
return null;
}
return $this->getProperty("TokenEncryptionKeyId");
} | @return string | getTokenEncryptionKeyId | php | vgrem/phpSPO | src/Directory/ServicePrincipals/ServicePrincipal.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/ServicePrincipal.php | MIT |
public function setTokenEncryptionKeyId($value)
{
$this->setProperty("TokenEncryptionKeyId", $value, true);
} | @var string | setTokenEncryptionKeyId | php | vgrem/phpSPO | src/Directory/ServicePrincipals/ServicePrincipal.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/ServicePrincipals/ServicePrincipal.php | MIT |
public function getStorageLocation()
{
if (!$this->isPropertyAvailable("StorageLocation")) {
return null;
}
return $this->getProperty("StorageLocation");
} | The URL location to where data is being exported for export requests.
@return string | getStorageLocation | php | vgrem/phpSPO | src/Directory/Policies/DataPolicyOperation.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/Policies/DataPolicyOperation.php | MIT |
public function setStorageLocation($value)
{
$this->setProperty("StorageLocation", $value, true);
} | The URL location to where data is being exported for export requests.
@var string | setStorageLocation | php | vgrem/phpSPO | src/Directory/Policies/DataPolicyOperation.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/Policies/DataPolicyOperation.php | MIT |
public function getUserId()
{
if (!$this->isPropertyAvailable("UserId")) {
return null;
}
return $this->getProperty("UserId");
} | The id for the user on whom the operation is performed.
@return string | getUserId | php | vgrem/phpSPO | src/Directory/Policies/DataPolicyOperation.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/Policies/DataPolicyOperation.php | MIT |
public function setUserId($value)
{
$this->setProperty("UserId", $value, true);
} | The id for the user on whom the operation is performed.
@var string | setUserId | php | vgrem/phpSPO | src/Directory/Policies/DataPolicyOperation.php | https://github.com/vgrem/phpSPO/blob/master/src/Directory/Policies/DataPolicyOperation.php | MIT |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.