code
stringlengths
17
247k
docstring
stringlengths
30
30.3k
func_name
stringlengths
1
89
language
stringclasses
1 value
repo
stringlengths
7
63
path
stringlengths
7
153
url
stringlengths
51
209
license
stringclasses
4 values
public function getCycleId() { if (array_key_exists("cycleId", $this->_propDict)) { return $this->_propDict["cycleId"]; } else { return null; } }
Gets the cycleId Unique ID per job iteration. @return string|null The cycleId
getCycleId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
MIT
public function setCycleId($val) { $this->_propDict["cycleId"] = $val; return $this; }
Sets the cycleId Unique ID per job iteration. @param string $val The cycleId @return ProvisioningObjectSummary
setCycleId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
MIT
public function getDurationInMilliseconds() { if (array_key_exists("durationInMilliseconds", $this->_propDict)) { return $this->_propDict["durationInMilliseconds"]; } else { return null; } }
Gets the durationInMilliseconds Indicates how long this provisioning action took to finish. Measured in milliseconds. @return int|null The durationInMilliseconds
getDurationInMilliseconds
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
MIT
public function setDurationInMilliseconds($val) { $this->_propDict["durationInMilliseconds"] = intval($val); return $this; }
Sets the durationInMilliseconds Indicates how long this provisioning action took to finish. Measured in milliseconds. @param int $val The durationInMilliseconds @return ProvisioningObjectSummary
setDurationInMilliseconds
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
MIT
public function getInitiatedBy() { if (array_key_exists("initiatedBy", $this->_propDict)) { if (is_a($this->_propDict["initiatedBy"], "\Beta\Microsoft\Graph\Model\Initiator") || is_null($this->_propDict["initiatedBy"])) { return $this->_propDict["initiatedBy"]; } else { $this->_propDict["initiatedBy"] = new Initiator($this->_propDict["initiatedBy"]); return $this->_propDict["initiatedBy"]; } } return null; }
Gets the initiatedBy Details of who initiated this provisioning. @return Initiator|null The initiatedBy
getInitiatedBy
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
MIT
public function getJobId() { if (array_key_exists("jobId", $this->_propDict)) { return $this->_propDict["jobId"]; } else { return null; } }
Gets the jobId The unique ID for the whole provisioning job. @return string|null The jobId
getJobId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
MIT
public function setJobId($val) { $this->_propDict["jobId"] = $val; return $this; }
Sets the jobId The unique ID for the whole provisioning job. @param string $val The jobId @return ProvisioningObjectSummary
setJobId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
MIT
public function getModifiedProperties() { if (array_key_exists("modifiedProperties", $this->_propDict)) { return $this->_propDict["modifiedProperties"]; } else { return null; } }
Gets the modifiedProperties Details of each property that was modified in this provisioning action on this object. @return array|null The modifiedProperties
getModifiedProperties
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
MIT
public function setModifiedProperties($val) { $this->_propDict["modifiedProperties"] = $val; return $this; }
Sets the modifiedProperties Details of each property that was modified in this provisioning action on this object. @param ModifiedProperty[] $val The modifiedProperties @return ProvisioningObjectSummary
setModifiedProperties
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
MIT
public function getProvisioningAction() { if (array_key_exists("provisioningAction", $this->_propDict)) { if (is_a($this->_propDict["provisioningAction"], "\Beta\Microsoft\Graph\Model\ProvisioningAction") || is_null($this->_propDict["provisioningAction"])) { return $this->_propDict["provisioningAction"]; } else { $this->_propDict["provisioningAction"] = new ProvisioningAction($this->_propDict["provisioningAction"]); return $this->_propDict["provisioningAction"]; } } return null; }
Gets the provisioningAction Indicates the activity name or the operation name. Possible values are: create, update, delete, stageddelete, disable, other and unknownFutureValue. For a list of activities logged, refer to Azure AD activity list. @return ProvisioningAction|null The provisioningAction
getProvisioningAction
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
MIT
public function setProvisioningAction($val) { $this->_propDict["provisioningAction"] = $val; return $this; }
Sets the provisioningAction Indicates the activity name or the operation name. Possible values are: create, update, delete, stageddelete, disable, other and unknownFutureValue. For a list of activities logged, refer to Azure AD activity list. @param ProvisioningAction $val The provisioningAction @return ProvisioningObjectSummary
setProvisioningAction
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
MIT
public function getProvisioningStatusInfo() { if (array_key_exists("provisioningStatusInfo", $this->_propDict)) { if (is_a($this->_propDict["provisioningStatusInfo"], "\Beta\Microsoft\Graph\Model\ProvisioningStatusInfo") || is_null($this->_propDict["provisioningStatusInfo"])) { return $this->_propDict["provisioningStatusInfo"]; } else { $this->_propDict["provisioningStatusInfo"] = new ProvisioningStatusInfo($this->_propDict["provisioningStatusInfo"]); return $this->_propDict["provisioningStatusInfo"]; } } return null; }
Gets the provisioningStatusInfo Details of provisioning status. @return ProvisioningStatusInfo|null The provisioningStatusInfo
getProvisioningStatusInfo
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
MIT
public function setProvisioningStatusInfo($val) { $this->_propDict["provisioningStatusInfo"] = $val; return $this; }
Sets the provisioningStatusInfo Details of provisioning status. @param ProvisioningStatusInfo $val The provisioningStatusInfo @return ProvisioningObjectSummary
setProvisioningStatusInfo
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
MIT
public function getProvisioningSteps() { if (array_key_exists("provisioningSteps", $this->_propDict)) { return $this->_propDict["provisioningSteps"]; } else { return null; } }
Gets the provisioningSteps Details of each step in provisioning. @return array|null The provisioningSteps
getProvisioningSteps
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
MIT
public function setProvisioningSteps($val) { $this->_propDict["provisioningSteps"] = $val; return $this; }
Sets the provisioningSteps Details of each step in provisioning. @param ProvisioningStep[] $val The provisioningSteps @return ProvisioningObjectSummary
setProvisioningSteps
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
MIT
public function getServicePrincipal() { if (array_key_exists("servicePrincipal", $this->_propDict)) { if (is_a($this->_propDict["servicePrincipal"], "\Beta\Microsoft\Graph\Model\ProvisioningServicePrincipal") || is_null($this->_propDict["servicePrincipal"])) { return $this->_propDict["servicePrincipal"]; } else { $this->_propDict["servicePrincipal"] = new ProvisioningServicePrincipal($this->_propDict["servicePrincipal"]); return $this->_propDict["servicePrincipal"]; } } return null; }
Gets the servicePrincipal Represents the service principal used for provisioning. @return ProvisioningServicePrincipal|null The servicePrincipal
getServicePrincipal
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
MIT
public function setServicePrincipal($val) { $this->_propDict["servicePrincipal"] = $val; return $this; }
Sets the servicePrincipal Represents the service principal used for provisioning. @param ProvisioningServicePrincipal $val The servicePrincipal @return ProvisioningObjectSummary
setServicePrincipal
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
MIT
public function getSourceIdentity() { if (array_key_exists("sourceIdentity", $this->_propDict)) { if (is_a($this->_propDict["sourceIdentity"], "\Beta\Microsoft\Graph\Model\ProvisionedIdentity") || is_null($this->_propDict["sourceIdentity"])) { return $this->_propDict["sourceIdentity"]; } else { $this->_propDict["sourceIdentity"] = new ProvisionedIdentity($this->_propDict["sourceIdentity"]); return $this->_propDict["sourceIdentity"]; } } return null; }
Gets the sourceIdentity Details of source object being provisioned. @return ProvisionedIdentity|null The sourceIdentity
getSourceIdentity
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
MIT
public function setSourceIdentity($val) { $this->_propDict["sourceIdentity"] = $val; return $this; }
Sets the sourceIdentity Details of source object being provisioned. @param ProvisionedIdentity $val The sourceIdentity @return ProvisioningObjectSummary
setSourceIdentity
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
MIT
public function getSourceSystem() { if (array_key_exists("sourceSystem", $this->_propDict)) { if (is_a($this->_propDict["sourceSystem"], "\Beta\Microsoft\Graph\Model\ProvisioningSystem") || is_null($this->_propDict["sourceSystem"])) { return $this->_propDict["sourceSystem"]; } else { $this->_propDict["sourceSystem"] = new ProvisioningSystem($this->_propDict["sourceSystem"]); return $this->_propDict["sourceSystem"]; } } return null; }
Gets the sourceSystem Details of source system of the object being provisioned. @return ProvisioningSystem|null The sourceSystem
getSourceSystem
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
MIT
public function setSourceSystem($val) { $this->_propDict["sourceSystem"] = $val; return $this; }
Sets the sourceSystem Details of source system of the object being provisioned. @param ProvisioningSystem $val The sourceSystem @return ProvisioningObjectSummary
setSourceSystem
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
MIT
public function getTargetIdentity() { if (array_key_exists("targetIdentity", $this->_propDict)) { if (is_a($this->_propDict["targetIdentity"], "\Beta\Microsoft\Graph\Model\ProvisionedIdentity") || is_null($this->_propDict["targetIdentity"])) { return $this->_propDict["targetIdentity"]; } else { $this->_propDict["targetIdentity"] = new ProvisionedIdentity($this->_propDict["targetIdentity"]); return $this->_propDict["targetIdentity"]; } } return null; }
Gets the targetIdentity Details of target object being provisioned. @return ProvisionedIdentity|null The targetIdentity
getTargetIdentity
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
MIT
public function setTargetIdentity($val) { $this->_propDict["targetIdentity"] = $val; return $this; }
Sets the targetIdentity Details of target object being provisioned. @param ProvisionedIdentity $val The targetIdentity @return ProvisioningObjectSummary
setTargetIdentity
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
MIT
public function getTargetSystem() { if (array_key_exists("targetSystem", $this->_propDict)) { if (is_a($this->_propDict["targetSystem"], "\Beta\Microsoft\Graph\Model\ProvisioningSystem") || is_null($this->_propDict["targetSystem"])) { return $this->_propDict["targetSystem"]; } else { $this->_propDict["targetSystem"] = new ProvisioningSystem($this->_propDict["targetSystem"]); return $this->_propDict["targetSystem"]; } } return null; }
Gets the targetSystem Details of target system of the object being provisioned. @return ProvisioningSystem|null The targetSystem
getTargetSystem
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
MIT
public function setTargetSystem($val) { $this->_propDict["targetSystem"] = $val; return $this; }
Sets the targetSystem Details of target system of the object being provisioned. @param ProvisioningSystem $val The targetSystem @return ProvisioningObjectSummary
setTargetSystem
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningObjectSummary.php
MIT
public function getMajorUnit() { if (array_key_exists("majorUnit", $this->_propDict)) { return $this->_propDict["majorUnit"]; } else { return null; } }
Gets the majorUnit Represents the interval between two major tick marks. Can be set to a numeric value or an empty string. The returned value is always a number. @return string|null The majorUnit
getMajorUnit
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/WorkbookChartAxis.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WorkbookChartAxis.php
MIT
public function setMajorUnit($val) { $this->_propDict["majorUnit"] = $val; return $this; }
Sets the majorUnit Represents the interval between two major tick marks. Can be set to a numeric value or an empty string. The returned value is always a number. @param string $val The majorUnit @return WorkbookChartAxis
setMajorUnit
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/WorkbookChartAxis.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WorkbookChartAxis.php
MIT
public function getMinorUnit() { if (array_key_exists("minorUnit", $this->_propDict)) { return $this->_propDict["minorUnit"]; } else { return null; } }
Gets the minorUnit Represents the interval between two minor tick marks. 'Can be set to a numeric value or an empty string (for automatic axis values). The returned value is always a number. @return string|null The minorUnit
getMinorUnit
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/WorkbookChartAxis.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WorkbookChartAxis.php
MIT
public function setMinorUnit($val) { $this->_propDict["minorUnit"] = $val; return $this; }
Sets the minorUnit Represents the interval between two minor tick marks. 'Can be set to a numeric value or an empty string (for automatic axis values). The returned value is always a number. @param string $val The minorUnit @return WorkbookChartAxis
setMinorUnit
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/WorkbookChartAxis.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WorkbookChartAxis.php
MIT
public function getFormat() { if (array_key_exists("format", $this->_propDict)) { if (is_a($this->_propDict["format"], "\Microsoft\Graph\Model\WorkbookChartAxisFormat") || is_null($this->_propDict["format"])) { return $this->_propDict["format"]; } else { $this->_propDict["format"] = new WorkbookChartAxisFormat($this->_propDict["format"]); return $this->_propDict["format"]; } } return null; }
Gets the format Represents the formatting of a chart object, which includes line and font formatting. Read-only. @return WorkbookChartAxisFormat|null The format
getFormat
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/WorkbookChartAxis.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WorkbookChartAxis.php
MIT
public function getMajorGridlines() { if (array_key_exists("majorGridlines", $this->_propDict)) { if (is_a($this->_propDict["majorGridlines"], "\Microsoft\Graph\Model\WorkbookChartGridlines") || is_null($this->_propDict["majorGridlines"])) { return $this->_propDict["majorGridlines"]; } else { $this->_propDict["majorGridlines"] = new WorkbookChartGridlines($this->_propDict["majorGridlines"]); return $this->_propDict["majorGridlines"]; } } return null; }
Gets the majorGridlines Returns a gridlines object that represents the major gridlines for the specified axis. Read-only. @return WorkbookChartGridlines|null The majorGridlines
getMajorGridlines
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/WorkbookChartAxis.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WorkbookChartAxis.php
MIT
public function setMajorGridlines($val) { $this->_propDict["majorGridlines"] = $val; return $this; }
Sets the majorGridlines Returns a gridlines object that represents the major gridlines for the specified axis. Read-only. @param WorkbookChartGridlines $val The majorGridlines @return WorkbookChartAxis
setMajorGridlines
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/WorkbookChartAxis.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WorkbookChartAxis.php
MIT
public function getMinorGridlines() { if (array_key_exists("minorGridlines", $this->_propDict)) { if (is_a($this->_propDict["minorGridlines"], "\Microsoft\Graph\Model\WorkbookChartGridlines") || is_null($this->_propDict["minorGridlines"])) { return $this->_propDict["minorGridlines"]; } else { $this->_propDict["minorGridlines"] = new WorkbookChartGridlines($this->_propDict["minorGridlines"]); return $this->_propDict["minorGridlines"]; } } return null; }
Gets the minorGridlines Returns a Gridlines object that represents the minor gridlines for the specified axis. Read-only. @return WorkbookChartGridlines|null The minorGridlines
getMinorGridlines
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/WorkbookChartAxis.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WorkbookChartAxis.php
MIT
public function setMinorGridlines($val) { $this->_propDict["minorGridlines"] = $val; return $this; }
Sets the minorGridlines Returns a Gridlines object that represents the minor gridlines for the specified axis. Read-only. @param WorkbookChartGridlines $val The minorGridlines @return WorkbookChartAxis
setMinorGridlines
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/WorkbookChartAxis.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WorkbookChartAxis.php
MIT
public function getTitle() { if (array_key_exists("title", $this->_propDict)) { if (is_a($this->_propDict["title"], "\Microsoft\Graph\Model\WorkbookChartAxisTitle") || is_null($this->_propDict["title"])) { return $this->_propDict["title"]; } else { $this->_propDict["title"] = new WorkbookChartAxisTitle($this->_propDict["title"]); return $this->_propDict["title"]; } } return null; }
Gets the title Represents the axis title. Read-only. @return WorkbookChartAxisTitle|null The title
getTitle
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/WorkbookChartAxis.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WorkbookChartAxis.php
MIT
public function getCreationTimestamp() { if (array_key_exists("creationTimestamp", $this->_propDict)) { if (is_a($this->_propDict["creationTimestamp"], "\DateTime") || is_null($this->_propDict["creationTimestamp"])) { return $this->_propDict["creationTimestamp"]; } else { $this->_propDict["creationTimestamp"] = new \DateTime($this->_propDict["creationTimestamp"]); return $this->_propDict["creationTimestamp"]; } } return null; }
Gets the creationTimestamp The time when the app role assignment was created. The Timestamp 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. Read-only. @return \DateTime|null The creationTimestamp
getCreationTimestamp
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AppRoleAssignment.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AppRoleAssignment.php
MIT
public function setCreationTimestamp($val) { $this->_propDict["creationTimestamp"] = $val; return $this; }
Sets the creationTimestamp The time when the app role assignment was created. The Timestamp 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. Read-only. @param \DateTime $val The creationTimestamp @return AppRoleAssignment
setCreationTimestamp
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AppRoleAssignment.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AppRoleAssignment.php
MIT
private function setRequestOptions( $endpointProvider, $command, $operation, $commandArgs, $clientArgs, &$headers ) { $providerArgs = $this->resolveProviderArgs( $endpointProvider, $operation, $commandArgs, $clientArgs ); $endpoint = $endpointProvider->resolveEndpoint($providerArgs); $resolvedUrl = $endpoint->getUrl(); $this->applyScheme($resolvedUrl); $this->endpoint = $resolvedUrl; $this->applyAuthSchemeToCommand($endpoint, $command); $this->applyHeaders($endpoint, $headers); }
Merges endpoint resolution arguments passed from the client and command and attempts to resolve an endpoint. Headers and auth schemes may be returned in a resolved endpoint object. A resolved endpoint uri and headers will be applied to the request. Auth schemes are applied to the command and compared against the default auth scheme at signing. @internal
setRequestOptions
php
xiebruce/PicUploader
vendor/aws/aws-sdk-php/src/EndpointV2/EndpointV2SerializerTrait.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/aws/aws-sdk-php/src/EndpointV2/EndpointV2SerializerTrait.php
MIT
private function normalizeEndpointProviderArgs( $endpointCommandArgs, $clientArgs, $contextParams, $staticContextParams ) { $commandContextParams = array_merge($contextParams, $staticContextParams); $combinedEndpointArgs = array_merge($clientArgs, $commandContextParams); return array_merge($combinedEndpointArgs, $endpointCommandArgs); }
Merges endpoint provider arguments from different sources. Client built-ins are superseded by client context params. Client context params are superseded by context params on an input member's shape. Context params are superseded by static context params. The result of this combination is then merged with any appropriate arguments from the command.
normalizeEndpointProviderArgs
php
xiebruce/PicUploader
vendor/aws/aws-sdk-php/src/EndpointV2/EndpointV2SerializerTrait.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/aws/aws-sdk-php/src/EndpointV2/EndpointV2SerializerTrait.php
MIT
public function getDependedOnBy() { if (array_key_exists("dependedOnBy", $this->_propDict)) { if (is_a($this->_propDict["dependedOnBy"], "\Beta\Microsoft\Graph\Model\DeviceManagementConfigurationSettingDependedOnBy") || is_null($this->_propDict["dependedOnBy"])) { return $this->_propDict["dependedOnBy"]; } else { $this->_propDict["dependedOnBy"] = new DeviceManagementConfigurationSettingDependedOnBy($this->_propDict["dependedOnBy"]); return $this->_propDict["dependedOnBy"]; } } return null; }
Gets the dependedOnBy List of Settings that depends on this option @return DeviceManagementConfigurationSettingDependedOnBy|null The dependedOnBy
getDependedOnBy
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationOptionDefinition.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationOptionDefinition.php
MIT
public function setDependedOnBy($val) { $this->_propDict["dependedOnBy"] = $val; return $this; }
Sets the dependedOnBy List of Settings that depends on this option @param DeviceManagementConfigurationSettingDependedOnBy $val The value to assign to the dependedOnBy @return DeviceManagementConfigurationOptionDefinition The DeviceManagementConfigurationOptionDefinition
setDependedOnBy
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationOptionDefinition.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationOptionDefinition.php
MIT
public function getDependentOn() { if (array_key_exists("dependentOn", $this->_propDict)) { if (is_a($this->_propDict["dependentOn"], "\Beta\Microsoft\Graph\Model\DeviceManagementConfigurationDependentOn") || is_null($this->_propDict["dependentOn"])) { return $this->_propDict["dependentOn"]; } else { $this->_propDict["dependentOn"] = new DeviceManagementConfigurationDependentOn($this->_propDict["dependentOn"]); return $this->_propDict["dependentOn"]; } } return null; }
Gets the dependentOn List of dependent settings for this option @return DeviceManagementConfigurationDependentOn|null The dependentOn
getDependentOn
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationOptionDefinition.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationOptionDefinition.php
MIT
public function setDependentOn($val) { $this->_propDict["dependentOn"] = $val; return $this; }
Sets the dependentOn List of dependent settings for this option @param DeviceManagementConfigurationDependentOn $val The value to assign to the dependentOn @return DeviceManagementConfigurationOptionDefinition The DeviceManagementConfigurationOptionDefinition
setDependentOn
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationOptionDefinition.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationOptionDefinition.php
MIT
public function getHelpText() { if (array_key_exists("helpText", $this->_propDict)) { return $this->_propDict["helpText"]; } else { return null; } }
Gets the helpText Help text of the option @return string|null The helpText
getHelpText
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationOptionDefinition.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationOptionDefinition.php
MIT
public function setHelpText($val) { $this->_propDict["helpText"] = $val; return $this; }
Sets the helpText Help text of the option @param string $val The value of the helpText @return DeviceManagementConfigurationOptionDefinition
setHelpText
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationOptionDefinition.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationOptionDefinition.php
MIT
public function getOptionValue() { if (array_key_exists("optionValue", $this->_propDict)) { if (is_a($this->_propDict["optionValue"], "\Beta\Microsoft\Graph\Model\DeviceManagementConfigurationSettingValue") || is_null($this->_propDict["optionValue"])) { return $this->_propDict["optionValue"]; } else { $this->_propDict["optionValue"] = new DeviceManagementConfigurationSettingValue($this->_propDict["optionValue"]); return $this->_propDict["optionValue"]; } } return null; }
Gets the optionValue Value of the option @return DeviceManagementConfigurationSettingValue|null The optionValue
getOptionValue
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationOptionDefinition.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationOptionDefinition.php
MIT
public function setOptionValue($val) { $this->_propDict["optionValue"] = $val; return $this; }
Sets the optionValue Value of the option @param DeviceManagementConfigurationSettingValue $val The value to assign to the optionValue @return DeviceManagementConfigurationOptionDefinition The DeviceManagementConfigurationOptionDefinition
setOptionValue
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationOptionDefinition.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationOptionDefinition.php
MIT
public function getSortBy() { if (array_key_exists("sortBy", $this->_propDict)) { return $this->_propDict["sortBy"]; } else { return null; } }
Gets the sortBy The method by which the folder should be sorted. @return string|null The sortBy
getSortBy
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/FolderView.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/FolderView.php
MIT
public function setSortBy($val) { $this->_propDict["sortBy"] = $val; return $this; }
Sets the sortBy The method by which the folder should be sorted. @param string $val The value of the sortBy @return FolderView
setSortBy
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/FolderView.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/FolderView.php
MIT
public function getSortOrder() { if (array_key_exists("sortOrder", $this->_propDict)) { return $this->_propDict["sortOrder"]; } else { return null; } }
Gets the sortOrder If true, indicates that items should be sorted in descending order. Otherwise, items should be sorted ascending. @return string|null The sortOrder
getSortOrder
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/FolderView.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/FolderView.php
MIT
public function setSortOrder($val) { $this->_propDict["sortOrder"] = $val; return $this; }
Sets the sortOrder If true, indicates that items should be sorted in descending order. Otherwise, items should be sorted ascending. @param string $val The value of the sortOrder @return FolderView
setSortOrder
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/FolderView.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/FolderView.php
MIT
public function getViewType() { if (array_key_exists("viewType", $this->_propDict)) { return $this->_propDict["viewType"]; } else { return null; } }
Gets the viewType The type of view that should be used to represent the folder. @return string|null The viewType
getViewType
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/FolderView.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/FolderView.php
MIT
public function setViewType($val) { $this->_propDict["viewType"] = $val; return $this; }
Sets the viewType The type of view that should be used to represent the folder. @param string $val The value of the viewType @return FolderView
setViewType
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/FolderView.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/FolderView.php
MIT
public function getIdentityCertificate() { if (array_key_exists("identityCertificate", $this->_propDict)) { if (is_a($this->_propDict["identityCertificate"], "\Beta\Microsoft\Graph\Model\MacOSCertificateProfileBase") || is_null($this->_propDict["identityCertificate"])) { return $this->_propDict["identityCertificate"]; } else { $this->_propDict["identityCertificate"] = new MacOSCertificateProfileBase($this->_propDict["identityCertificate"]); return $this->_propDict["identityCertificate"]; } } return null; }
Gets the identityCertificate Identity certificate for client authentication when authentication method is certificate. @return MacOSCertificateProfileBase|null The identityCertificate
getIdentityCertificate
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSVpnConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSVpnConfiguration.php
MIT
public function setFile($val) { $this->_propDict["file"] = $val; return $this; }
Sets the file Indicates that the remote item is a file. Read-only. @param File $val The value to assign to the file @return RemoteItem The RemoteItem
setFile
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php
MIT
public function setFolder($val) { $this->_propDict["folder"] = $val; return $this; }
Sets the folder Indicates that the remote item is a folder. Read-only. @param Folder $val The value to assign to the folder @return RemoteItem The RemoteItem
setFolder
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php
MIT
public function setImage($val) { $this->_propDict["image"] = $val; return $this; }
Sets the image Image metadata, if the item is an image. Read-only. @param Image $val The value to assign to the image @return RemoteItem The RemoteItem
setImage
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php
MIT
public function setPackage($val) { $this->_propDict["package"] = $val; return $this; }
Sets the package If present, indicates that this item is a package instead of a folder or file. Packages are treated like files in some contexts and folders in others. Read-only. @param Package $val The value to assign to the package @return RemoteItem The RemoteItem
setPackage
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php
MIT
public function setParentReference($val) { $this->_propDict["parentReference"] = $val; return $this; }
Sets the parentReference Properties of the parent of the remote item. Read-only. @param ItemReference $val The value to assign to the parentReference @return RemoteItem The RemoteItem
setParentReference
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php
MIT
public function setShared($val) { $this->_propDict["shared"] = $val; return $this; }
Sets the shared Indicates that the item has been shared with others and provides information about the shared state of the item. Read-only. @param Shared $val The value to assign to the shared @return RemoteItem The RemoteItem
setShared
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php
MIT
public function setSpecialFolder($val) { $this->_propDict["specialFolder"] = $val; return $this; }
Sets the specialFolder If the current item is also available as a special folder, this facet is returned. Read-only. @param SpecialFolder $val The value to assign to the specialFolder @return RemoteItem The RemoteItem
setSpecialFolder
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php
MIT
public function setVideo($val) { $this->_propDict["video"] = $val; return $this; }
Sets the video Video metadata, if the item is a video. Read-only. @param Video $val The value to assign to the video @return RemoteItem The RemoteItem
setVideo
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php
MIT
public function onBeforeSend(Event $event) { // Ensure that progress callbacks are dispatched $event['request']->getCurlOptions()->set('progress', true); }
Event used to ensure that progress callback are emitted from the curl handle's request mediator. @param Event $event
onBeforeSend
php
xiebruce/PicUploader
vendor/guzzle/guzzle/src/Guzzle/Plugin/Async/AsyncPlugin.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Plugin/Async/AsyncPlugin.php
MIT
public function onCurlProgress(Event $event) { if ($event['handle'] && ($event['downloaded'] || (isset($event['uploaded']) && $event['upload_size'] === $event['uploaded'])) ) { // Timeout after 1ms curl_setopt($event['handle'], CURLOPT_TIMEOUT_MS, 1); // Even if the response is quick, tell curl not to download the body. // - Note that we can only perform this shortcut if the request transmitted a body so as to ensure that the // request method is not converted to a HEAD request before the request was sent via curl. if ($event['uploaded']) { curl_setopt($event['handle'], CURLOPT_NOBODY, true); } } }
Event emitted when a curl progress function is called. When the amount of data uploaded == the amount of data to upload OR any bytes have been downloaded, then time the request out after 1ms because we're done with transmitting the request, and tell curl not download a body. @param Event $event
onCurlProgress
php
xiebruce/PicUploader
vendor/guzzle/guzzle/src/Guzzle/Plugin/Async/AsyncPlugin.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Plugin/Async/AsyncPlugin.php
MIT
public function onRequestTimeout(Event $event) { if ($event['exception'] instanceof CurlException) { $event['request']->setResponse(new Response(200, array( 'X-Guzzle-Async' => 'Did not wait for the response' ))); } }
Event emitted when a curl exception occurs. Ignore the exception and set a mock response. @param Event $event
onRequestTimeout
php
xiebruce/PicUploader
vendor/guzzle/guzzle/src/Guzzle/Plugin/Async/AsyncPlugin.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Plugin/Async/AsyncPlugin.php
MIT
public function onRequestSent(Event $event) { // Let the caller know this was meant to be async $event['request']->getResponse()->setHeader('X-Guzzle-Async', 'Did not wait for the response'); }
Event emitted when a request completes because it took less than 1ms. Add an X-Guzzle-Async header to notify the caller that there is no body in the message. @param Event $event
onRequestSent
php
xiebruce/PicUploader
vendor/guzzle/guzzle/src/Guzzle/Plugin/Async/AsyncPlugin.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Plugin/Async/AsyncPlugin.php
MIT
public function getCertificateEnhancedKeyUsage() { if (array_key_exists("certificateEnhancedKeyUsage", $this->_propDict)) { return $this->_propDict["certificateEnhancedKeyUsage"]; } else { return null; } }
Gets the certificateEnhancedKeyUsage Extended key usage @return string|null The certificateEnhancedKeyUsage
getCertificateEnhancedKeyUsage
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
MIT
public function setCertificateEnhancedKeyUsage($val) { $this->_propDict["certificateEnhancedKeyUsage"] = $val; return $this; }
Sets the certificateEnhancedKeyUsage Extended key usage @param string $val The certificateEnhancedKeyUsage @return ManagedDeviceCertificateState
setCertificateEnhancedKeyUsage
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
MIT
public function getCertificateErrorCode() { if (array_key_exists("certificateErrorCode", $this->_propDict)) { return $this->_propDict["certificateErrorCode"]; } else { return null; } }
Gets the certificateErrorCode Error code @return int|null The certificateErrorCode
getCertificateErrorCode
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
MIT
public function setCertificateErrorCode($val) { $this->_propDict["certificateErrorCode"] = intval($val); return $this; }
Sets the certificateErrorCode Error code @param int $val The certificateErrorCode @return ManagedDeviceCertificateState
setCertificateErrorCode
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
MIT
public function getCertificateExpirationDateTime() { if (array_key_exists("certificateExpirationDateTime", $this->_propDict)) { if (is_a($this->_propDict["certificateExpirationDateTime"], "\DateTime") || is_null($this->_propDict["certificateExpirationDateTime"])) { return $this->_propDict["certificateExpirationDateTime"]; } else { $this->_propDict["certificateExpirationDateTime"] = new \DateTime($this->_propDict["certificateExpirationDateTime"]); return $this->_propDict["certificateExpirationDateTime"]; } } return null; }
Gets the certificateExpirationDateTime Certificate expiry date @return \DateTime|null The certificateExpirationDateTime
getCertificateExpirationDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
MIT
public function setCertificateExpirationDateTime($val) { $this->_propDict["certificateExpirationDateTime"] = $val; return $this; }
Sets the certificateExpirationDateTime Certificate expiry date @param \DateTime $val The certificateExpirationDateTime @return ManagedDeviceCertificateState
setCertificateExpirationDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
MIT
public function getCertificateIssuanceDateTime() { if (array_key_exists("certificateIssuanceDateTime", $this->_propDict)) { if (is_a($this->_propDict["certificateIssuanceDateTime"], "\DateTime") || is_null($this->_propDict["certificateIssuanceDateTime"])) { return $this->_propDict["certificateIssuanceDateTime"]; } else { $this->_propDict["certificateIssuanceDateTime"] = new \DateTime($this->_propDict["certificateIssuanceDateTime"]); return $this->_propDict["certificateIssuanceDateTime"]; } } return null; }
Gets the certificateIssuanceDateTime Issuance date @return \DateTime|null The certificateIssuanceDateTime
getCertificateIssuanceDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
MIT
public function setCertificateIssuanceDateTime($val) { $this->_propDict["certificateIssuanceDateTime"] = $val; return $this; }
Sets the certificateIssuanceDateTime Issuance date @param \DateTime $val The certificateIssuanceDateTime @return ManagedDeviceCertificateState
setCertificateIssuanceDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
MIT
public function getCertificateIssuanceState() { if (array_key_exists("certificateIssuanceState", $this->_propDict)) { if (is_a($this->_propDict["certificateIssuanceState"], "\Beta\Microsoft\Graph\Model\CertificateIssuanceStates") || is_null($this->_propDict["certificateIssuanceState"])) { return $this->_propDict["certificateIssuanceState"]; } else { $this->_propDict["certificateIssuanceState"] = new CertificateIssuanceStates($this->_propDict["certificateIssuanceState"]); return $this->_propDict["certificateIssuanceState"]; } } return null; }
Gets the certificateIssuanceState Issuance State. Possible values are: unknown, challengeIssued, challengeIssueFailed, requestCreationFailed, requestSubmitFailed, challengeValidationSucceeded, challengeValidationFailed, issueFailed, issuePending, issued, responseProcessingFailed, responsePending, enrollmentSucceeded, enrollmentNotNeeded, revoked, removedFromCollection, renewVerified, installFailed, installed, deleteFailed, deleted, renewalRequested, requested. @return CertificateIssuanceStates|null The certificateIssuanceState
getCertificateIssuanceState
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
MIT
public function setCertificateIssuanceState($val) { $this->_propDict["certificateIssuanceState"] = $val; return $this; }
Sets the certificateIssuanceState Issuance State. Possible values are: unknown, challengeIssued, challengeIssueFailed, requestCreationFailed, requestSubmitFailed, challengeValidationSucceeded, challengeValidationFailed, issueFailed, issuePending, issued, responseProcessingFailed, responsePending, enrollmentSucceeded, enrollmentNotNeeded, revoked, removedFromCollection, renewVerified, installFailed, installed, deleteFailed, deleted, renewalRequested, requested. @param CertificateIssuanceStates $val The certificateIssuanceState @return ManagedDeviceCertificateState
setCertificateIssuanceState
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
MIT
public function getCertificateIssuer() { if (array_key_exists("certificateIssuer", $this->_propDict)) { return $this->_propDict["certificateIssuer"]; } else { return null; } }
Gets the certificateIssuer Issuer @return string|null The certificateIssuer
getCertificateIssuer
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
MIT
public function setCertificateIssuer($val) { $this->_propDict["certificateIssuer"] = $val; return $this; }
Sets the certificateIssuer Issuer @param string $val The certificateIssuer @return ManagedDeviceCertificateState
setCertificateIssuer
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
MIT
public function getCertificateKeyLength() { if (array_key_exists("certificateKeyLength", $this->_propDict)) { return $this->_propDict["certificateKeyLength"]; } else { return null; } }
Gets the certificateKeyLength Key length @return int|null The certificateKeyLength
getCertificateKeyLength
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
MIT
public function setCertificateKeyLength($val) { $this->_propDict["certificateKeyLength"] = intval($val); return $this; }
Sets the certificateKeyLength Key length @param int $val The certificateKeyLength @return ManagedDeviceCertificateState
setCertificateKeyLength
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
MIT
public function getCertificateKeyStorageProvider() { if (array_key_exists("certificateKeyStorageProvider", $this->_propDict)) { if (is_a($this->_propDict["certificateKeyStorageProvider"], "\Beta\Microsoft\Graph\Model\KeyStorageProviderOption") || is_null($this->_propDict["certificateKeyStorageProvider"])) { return $this->_propDict["certificateKeyStorageProvider"]; } else { $this->_propDict["certificateKeyStorageProvider"] = new KeyStorageProviderOption($this->_propDict["certificateKeyStorageProvider"]); return $this->_propDict["certificateKeyStorageProvider"]; } } return null; }
Gets the certificateKeyStorageProvider Key Storage Provider. Possible values are: useTpmKspOtherwiseUseSoftwareKsp, useTpmKspOtherwiseFail, usePassportForWorkKspOtherwiseFail, useSoftwareKsp. @return KeyStorageProviderOption|null The certificateKeyStorageProvider
getCertificateKeyStorageProvider
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
MIT
public function setCertificateKeyStorageProvider($val) { $this->_propDict["certificateKeyStorageProvider"] = $val; return $this; }
Sets the certificateKeyStorageProvider Key Storage Provider. Possible values are: useTpmKspOtherwiseUseSoftwareKsp, useTpmKspOtherwiseFail, usePassportForWorkKspOtherwiseFail, useSoftwareKsp. @param KeyStorageProviderOption $val The certificateKeyStorageProvider @return ManagedDeviceCertificateState
setCertificateKeyStorageProvider
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
MIT
public function getCertificateKeyUsage() { if (array_key_exists("certificateKeyUsage", $this->_propDict)) { if (is_a($this->_propDict["certificateKeyUsage"], "\Beta\Microsoft\Graph\Model\KeyUsages") || is_null($this->_propDict["certificateKeyUsage"])) { return $this->_propDict["certificateKeyUsage"]; } else { $this->_propDict["certificateKeyUsage"] = new KeyUsages($this->_propDict["certificateKeyUsage"]); return $this->_propDict["certificateKeyUsage"]; } } return null; }
Gets the certificateKeyUsage Key usage. Possible values are: keyEncipherment, digitalSignature. @return KeyUsages|null The certificateKeyUsage
getCertificateKeyUsage
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
MIT
public function setCertificateKeyUsage($val) { $this->_propDict["certificateKeyUsage"] = $val; return $this; }
Sets the certificateKeyUsage Key usage. Possible values are: keyEncipherment, digitalSignature. @param KeyUsages $val The certificateKeyUsage @return ManagedDeviceCertificateState
setCertificateKeyUsage
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
MIT
public function getCertificateLastIssuanceStateChangedDateTime() { if (array_key_exists("certificateLastIssuanceStateChangedDateTime", $this->_propDict)) { if (is_a($this->_propDict["certificateLastIssuanceStateChangedDateTime"], "\DateTime") || is_null($this->_propDict["certificateLastIssuanceStateChangedDateTime"])) { return $this->_propDict["certificateLastIssuanceStateChangedDateTime"]; } else { $this->_propDict["certificateLastIssuanceStateChangedDateTime"] = new \DateTime($this->_propDict["certificateLastIssuanceStateChangedDateTime"]); return $this->_propDict["certificateLastIssuanceStateChangedDateTime"]; } } return null; }
Gets the certificateLastIssuanceStateChangedDateTime Last certificate issuance state change @return \DateTime|null The certificateLastIssuanceStateChangedDateTime
getCertificateLastIssuanceStateChangedDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
MIT
public function setCertificateLastIssuanceStateChangedDateTime($val) { $this->_propDict["certificateLastIssuanceStateChangedDateTime"] = $val; return $this; }
Sets the certificateLastIssuanceStateChangedDateTime Last certificate issuance state change @param \DateTime $val The certificateLastIssuanceStateChangedDateTime @return ManagedDeviceCertificateState
setCertificateLastIssuanceStateChangedDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
MIT
public function getCertificateProfileDisplayName() { if (array_key_exists("certificateProfileDisplayName", $this->_propDict)) { return $this->_propDict["certificateProfileDisplayName"]; } else { return null; } }
Gets the certificateProfileDisplayName Certificate profile display name @return string|null The certificateProfileDisplayName
getCertificateProfileDisplayName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
MIT
public function setCertificateProfileDisplayName($val) { $this->_propDict["certificateProfileDisplayName"] = $val; return $this; }
Sets the certificateProfileDisplayName Certificate profile display name @param string $val The certificateProfileDisplayName @return ManagedDeviceCertificateState
setCertificateProfileDisplayName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
MIT
public function getCertificateRevokeStatus() { if (array_key_exists("certificateRevokeStatus", $this->_propDict)) { if (is_a($this->_propDict["certificateRevokeStatus"], "\Beta\Microsoft\Graph\Model\CertificateRevocationStatus") || is_null($this->_propDict["certificateRevokeStatus"])) { return $this->_propDict["certificateRevokeStatus"]; } else { $this->_propDict["certificateRevokeStatus"] = new CertificateRevocationStatus($this->_propDict["certificateRevokeStatus"]); return $this->_propDict["certificateRevokeStatus"]; } } return null; }
Gets the certificateRevokeStatus Revoke status. Possible values are: none, pending, issued, failed, revoked. @return CertificateRevocationStatus|null The certificateRevokeStatus
getCertificateRevokeStatus
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
MIT
public function setCertificateRevokeStatus($val) { $this->_propDict["certificateRevokeStatus"] = $val; return $this; }
Sets the certificateRevokeStatus Revoke status. Possible values are: none, pending, issued, failed, revoked. @param CertificateRevocationStatus $val The certificateRevokeStatus @return ManagedDeviceCertificateState
setCertificateRevokeStatus
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
MIT
public function getCertificateSubjectAlternativeNameFormat() { if (array_key_exists("certificateSubjectAlternativeNameFormat", $this->_propDict)) { if (is_a($this->_propDict["certificateSubjectAlternativeNameFormat"], "\Beta\Microsoft\Graph\Model\SubjectAlternativeNameType") || is_null($this->_propDict["certificateSubjectAlternativeNameFormat"])) { return $this->_propDict["certificateSubjectAlternativeNameFormat"]; } else { $this->_propDict["certificateSubjectAlternativeNameFormat"] = new SubjectAlternativeNameType($this->_propDict["certificateSubjectAlternativeNameFormat"]); return $this->_propDict["certificateSubjectAlternativeNameFormat"]; } } return null; }
Gets the certificateSubjectAlternativeNameFormat Subject alternative name format. Possible values are: none, emailAddress, userPrincipalName, customAzureADAttribute, domainNameService, universalResourceIdentifier. @return SubjectAlternativeNameType|null The certificateSubjectAlternativeNameFormat
getCertificateSubjectAlternativeNameFormat
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
MIT
public function setCertificateSubjectAlternativeNameFormat($val) { $this->_propDict["certificateSubjectAlternativeNameFormat"] = $val; return $this; }
Sets the certificateSubjectAlternativeNameFormat Subject alternative name format. Possible values are: none, emailAddress, userPrincipalName, customAzureADAttribute, domainNameService, universalResourceIdentifier. @param SubjectAlternativeNameType $val The certificateSubjectAlternativeNameFormat @return ManagedDeviceCertificateState
setCertificateSubjectAlternativeNameFormat
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
MIT
public function getCertificateSubjectAlternativeNameFormatString() { if (array_key_exists("certificateSubjectAlternativeNameFormatString", $this->_propDict)) { return $this->_propDict["certificateSubjectAlternativeNameFormatString"]; } else { return null; } }
Gets the certificateSubjectAlternativeNameFormatString Subject alternative name format string for custom formats @return string|null The certificateSubjectAlternativeNameFormatString
getCertificateSubjectAlternativeNameFormatString
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
MIT
public function setCertificateSubjectAlternativeNameFormatString($val) { $this->_propDict["certificateSubjectAlternativeNameFormatString"] = $val; return $this; }
Sets the certificateSubjectAlternativeNameFormatString Subject alternative name format string for custom formats @param string $val The certificateSubjectAlternativeNameFormatString @return ManagedDeviceCertificateState
setCertificateSubjectAlternativeNameFormatString
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
MIT
public function getCertificateSubjectNameFormat() { if (array_key_exists("certificateSubjectNameFormat", $this->_propDict)) { if (is_a($this->_propDict["certificateSubjectNameFormat"], "\Beta\Microsoft\Graph\Model\SubjectNameFormat") || is_null($this->_propDict["certificateSubjectNameFormat"])) { return $this->_propDict["certificateSubjectNameFormat"]; } else { $this->_propDict["certificateSubjectNameFormat"] = new SubjectNameFormat($this->_propDict["certificateSubjectNameFormat"]); return $this->_propDict["certificateSubjectNameFormat"]; } } return null; }
Gets the certificateSubjectNameFormat Subject name format. Possible values are: commonName, commonNameIncludingEmail, commonNameAsEmail, custom, commonNameAsIMEI, commonNameAsSerialNumber, commonNameAsAadDeviceId, commonNameAsIntuneDeviceId, commonNameAsDurableDeviceId. @return SubjectNameFormat|null The certificateSubjectNameFormat
getCertificateSubjectNameFormat
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
MIT
public function setCertificateSubjectNameFormat($val) { $this->_propDict["certificateSubjectNameFormat"] = $val; return $this; }
Sets the certificateSubjectNameFormat Subject name format. Possible values are: commonName, commonNameIncludingEmail, commonNameAsEmail, custom, commonNameAsIMEI, commonNameAsSerialNumber, commonNameAsAadDeviceId, commonNameAsIntuneDeviceId, commonNameAsDurableDeviceId. @param SubjectNameFormat $val The certificateSubjectNameFormat @return ManagedDeviceCertificateState
setCertificateSubjectNameFormat
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
MIT
public function getCertificateSubjectNameFormatString() { if (array_key_exists("certificateSubjectNameFormatString", $this->_propDict)) { return $this->_propDict["certificateSubjectNameFormatString"]; } else { return null; } }
Gets the certificateSubjectNameFormatString Subject name format string for custom subject name formats @return string|null The certificateSubjectNameFormatString
getCertificateSubjectNameFormatString
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
MIT
public function setCertificateSubjectNameFormatString($val) { $this->_propDict["certificateSubjectNameFormatString"] = $val; return $this; }
Sets the certificateSubjectNameFormatString Subject name format string for custom subject name formats @param string $val The certificateSubjectNameFormatString @return ManagedDeviceCertificateState
setCertificateSubjectNameFormatString
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
MIT
public function getCertificateThumbprint() { if (array_key_exists("certificateThumbprint", $this->_propDict)) { return $this->_propDict["certificateThumbprint"]; } else { return null; } }
Gets the certificateThumbprint Thumbprint @return string|null The certificateThumbprint
getCertificateThumbprint
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
MIT
public function setCertificateThumbprint($val) { $this->_propDict["certificateThumbprint"] = $val; return $this; }
Sets the certificateThumbprint Thumbprint @param string $val The certificateThumbprint @return ManagedDeviceCertificateState
setCertificateThumbprint
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php
MIT