Skip to content

Commit

Permalink
Merge pull request #1324 from microsoftgraph/beta/pipelinebuild/123456
Browse files Browse the repository at this point in the history
Generated beta models and request builders
  • Loading branch information
Ndiritu authored Aug 22, 2023
2 parents 514bfa5 + 7af4878 commit c180d59
Show file tree
Hide file tree
Showing 38 changed files with 1,416 additions and 208 deletions.
6 changes: 4 additions & 2 deletions src/Beta/Microsoft/Graph/Model/AuthenticationBehaviors.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class AuthenticationBehaviors extends Entity
{
/**
* Gets the removeUnverifiedEmailClaim
* Removes the email claim from tokens sent to an application when the email address's domain cannot be verified.
* Removes the email claim from tokens sent to an application when the email address's domain can't be verified.
*
* @return bool|null The removeUnverifiedEmailClaim
*/
Expand All @@ -40,7 +40,7 @@ public function getRemoveUnverifiedEmailClaim()

/**
* Sets the removeUnverifiedEmailClaim
* Removes the email claim from tokens sent to an application when the email address's domain cannot be verified.
* Removes the email claim from tokens sent to an application when the email address's domain can't be verified.
*
* @param bool $val The value of the removeUnverifiedEmailClaim
*
Expand All @@ -53,6 +53,7 @@ public function setRemoveUnverifiedEmailClaim($val)
}
/**
* Gets the requireClientServicePrincipal
* Requires multitenant applications to have a service principal in the resource tenant as part of authorization checks before they're granted access tokens. This property is only modifiable for multi-tenant resource applications that rely on access from clients without a service principal and had this behavior as set to false by Microsoft. Tenant administrators should respond to security advisories sent through Azure Health Service events and the Microsoft 365 message center.
*
* @return bool|null The requireClientServicePrincipal
*/
Expand All @@ -67,6 +68,7 @@ public function getRequireClientServicePrincipal()

/**
* Sets the requireClientServicePrincipal
* Requires multitenant applications to have a service principal in the resource tenant as part of authorization checks before they're granted access tokens. This property is only modifiable for multi-tenant resource applications that rely on access from clients without a service principal and had this behavior as set to false by Microsoft. Tenant administrators should respond to security advisories sent through Azure Health Service events and the Microsoft 365 message center.
*
* @param bool $val The value of the requireClientServicePrincipal
*
Expand Down
87 changes: 87 additions & 0 deletions src/Beta/Microsoft/Graph/Model/CallRecording.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,91 @@ public function setCreatedDateTime($val)
return $this;
}

/**
* Gets the meetingId
* The unique identifier of the onlineMeeting related to this recording. Read-only.
*
* @return string|null The meetingId
*/
public function getMeetingId()
{
if (array_key_exists("meetingId", $this->_propDict)) {
return $this->_propDict["meetingId"];
} else {
return null;
}
}

/**
* Sets the meetingId
* The unique identifier of the onlineMeeting related to this recording. Read-only.
*
* @param string $val The meetingId
*
* @return CallRecording
*/
public function setMeetingId($val)
{
$this->_propDict["meetingId"] = $val;
return $this;
}

/**
* Gets the meetingOrganizerId
* The unique identifier of the organizer of the onlineMeeting related to this recording. Read-only.
*
* @return string|null The meetingOrganizerId
*/
public function getMeetingOrganizerId()
{
if (array_key_exists("meetingOrganizerId", $this->_propDict)) {
return $this->_propDict["meetingOrganizerId"];
} else {
return null;
}
}

/**
* Sets the meetingOrganizerId
* The unique identifier of the organizer of the onlineMeeting related to this recording. Read-only.
*
* @param string $val The meetingOrganizerId
*
* @return CallRecording
*/
public function setMeetingOrganizerId($val)
{
$this->_propDict["meetingOrganizerId"] = $val;
return $this;
}

/**
* Gets the recordingContentUrl
* The URL which can be used to access the content of the recording. Read-only.
*
* @return string|null The recordingContentUrl
*/
public function getRecordingContentUrl()
{
if (array_key_exists("recordingContentUrl", $this->_propDict)) {
return $this->_propDict["recordingContentUrl"];
} else {
return null;
}
}

/**
* Sets the recordingContentUrl
* The URL which can be used to access the content of the recording. Read-only.
*
* @param string $val The recordingContentUrl
*
* @return CallRecording
*/
public function setRecordingContentUrl($val)
{
$this->_propDict["recordingContentUrl"] = $val;
return $this;
}

}
87 changes: 87 additions & 0 deletions src/Beta/Microsoft/Graph/Model/CallTranscript.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,64 @@ public function setCreatedDateTime($val)
return $this;
}

/**
* Gets the meetingId
* The unique identifier of the online meeting related to this transcript. Read-only.
*
* @return string|null The meetingId
*/
public function getMeetingId()
{
if (array_key_exists("meetingId", $this->_propDict)) {
return $this->_propDict["meetingId"];
} else {
return null;
}
}

/**
* Sets the meetingId
* The unique identifier of the online meeting related to this transcript. Read-only.
*
* @param string $val The meetingId
*
* @return CallTranscript
*/
public function setMeetingId($val)
{
$this->_propDict["meetingId"] = $val;
return $this;
}

/**
* Gets the meetingOrganizerId
* The unique identifier of the organizer of the onlineMeeting related to this transcript. Read-only.
*
* @return string|null The meetingOrganizerId
*/
public function getMeetingOrganizerId()
{
if (array_key_exists("meetingOrganizerId", $this->_propDict)) {
return $this->_propDict["meetingOrganizerId"];
} else {
return null;
}
}

/**
* Sets the meetingOrganizerId
* The unique identifier of the organizer of the onlineMeeting related to this transcript. Read-only.
*
* @param string $val The meetingOrganizerId
*
* @return CallTranscript
*/
public function setMeetingOrganizerId($val)
{
$this->_propDict["meetingOrganizerId"] = $val;
return $this;
}

/**
* Gets the metadataContent
* The time-aligned metadata of the utterances in the transcript. Read-only.
Expand Down Expand Up @@ -123,4 +181,33 @@ public function setMetadataContent($val)
return $this;
}

/**
* Gets the transcriptContentUrl
* The URL which can be used to access the content of the transcript. Read-only.
*
* @return string|null The transcriptContentUrl
*/
public function getTranscriptContentUrl()
{
if (array_key_exists("transcriptContentUrl", $this->_propDict)) {
return $this->_propDict["transcriptContentUrl"];
} else {
return null;
}
}

/**
* Sets the transcriptContentUrl
* The URL which can be used to access the content of the transcript. Read-only.
*
* @param string $val The transcriptContentUrl
*
* @return CallTranscript
*/
public function setTranscriptContentUrl($val)
{
$this->_propDict["transcriptContentUrl"] = $val;
return $this;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,6 @@ class ConditionalAccessConditions extends Enum
const UNKNOWN_FUTURE_VALUE = "unknownFutureValue";
const SERVICE_PRINCIPALS = "servicePrincipals";
const SERVICE_PRINCIPAL_RISK = "servicePrincipalRisk";
const AUTHENTICATION_FLOWS = "authenticationFlows";
const INSIDER_RISK = "insiderRisk";
}
3 changes: 3 additions & 0 deletions src/Beta/Microsoft/Graph/Model/ConditionalAccessRule.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,7 @@ class ConditionalAccessRule extends Enum
const OTHER_EXTERNAL_USER = "otherExternalUser";
const SERVICE_PROVIDER = "serviceProvider";
const MICROSOFT_ADMIN_PORTALS = "microsoftAdminPortals";
const DEVICE_CODE_FLOW = "deviceCodeFlow";
const AUTHENTICATION_TRANSFER = "authenticationTransfer";
const INSIDER_RISK = "insiderRisk";
}
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ public function setPersistentBrowser($val)

/**
* Gets the secureSignInSession
* Session control to require sign in sessions to be bound to a device.
*
* @return SecureSignInSessionControl|null The secureSignInSession
*/
Expand All @@ -204,6 +205,7 @@ public function getSecureSignInSession()

/**
* Sets the secureSignInSession
* Session control to require sign in sessions to be bound to a device.
*
* @param SecureSignInSessionControl $val The value to assign to the secureSignInSession
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,5 @@ class DelegatedAdminRelationshipRequestAction extends Enum
const APPROVE = "approve";
const TERMINATE = "terminate";
const UNKNOWN_FUTURE_VALUE = "unknownFutureValue";
const REJECT = "reject";
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class DeviceManagementConfigurationChoiceSettingDefinition extends DeviceManagem
{
/**
* Gets the defaultOptionId
* Default option for choice setting
* Default option for the choice setting.
*
* @return string|null The defaultOptionId
*/
Expand All @@ -41,7 +41,7 @@ public function getDefaultOptionId()

/**
* Sets the defaultOptionId
* Default option for choice setting
* Default option for the choice setting.
*
* @param string $val The defaultOptionId
*
Expand All @@ -56,7 +56,7 @@ public function setDefaultOptionId($val)

/**
* Gets the options
* Options for the setting that can be selected
* Options for the setting that can be selected.
*
* @return array|null The options
*/
Expand All @@ -71,7 +71,7 @@ public function getOptions()

/**
* Sets the options
* Options for the setting that can be selected
* Options for the setting that can be selected.
*
* @param DeviceManagementConfigurationOptionDefinition[] $val The options
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public function setDeviceMode($val)

/**
* Gets the platform
* Platform setting can be applied on. Possible values are: none, android, iOS, macOS, windows10X, windows10, linux, unknownFutureValue.
* Platform setting can be applied on. Posible values are: none, android, androidEnterprise, iOs, macOs, windows10X, windows10, aosp, and linux. Possible values are: none, android, iOS, macOS, windows10X, windows10, linux, unknownFutureValue.
*
* @return DeviceManagementConfigurationPlatforms|null The platform
*/
Expand All @@ -106,7 +106,7 @@ public function getPlatform()

/**
* Sets the platform
* Platform setting can be applied on. Possible values are: none, android, iOS, macOS, windows10X, windows10, linux, unknownFutureValue.
* Platform setting can be applied on. Posible values are: none, android, androidEnterprise, iOs, macOs, windows10X, windows10, aosp, and linux. Possible values are: none, android, iOS, macOS, windows10X, windows10, linux, unknownFutureValue.
*
* @param DeviceManagementConfigurationPlatforms $val The value to assign to the platform
*
Expand All @@ -120,7 +120,7 @@ public function setPlatform($val)

/**
* Gets the technologies
* Which technology channels this setting can be deployed through. Possible values are: none, mdm, windows10XManagement, configManager, appleRemoteManagement, microsoftSense, exchangeOnline, linuxMdm, enrollment, endpointPrivilegeManagement, unknownFutureValue.
* Which technology channels this setting can be deployed through. Posible values are: none, mdm, configManager, intuneManagementExtension, thirdParty, documentGateway, appleRemoteManagement, microsoftSense, exchangeOnline, edgeMam, linuxMdm, extensibility, enrollment, endpointPrivilegeManagement. Possible values are: none, mdm, windows10XManagement, configManager, appleRemoteManagement, microsoftSense, exchangeOnline, mobileApplicationManagement, linuxMdm, enrollment, endpointPrivilegeManagement, unknownFutureValue.
*
* @return DeviceManagementConfigurationTechnologies|null The technologies
*/
Expand All @@ -139,7 +139,7 @@ public function getTechnologies()

/**
* Sets the technologies
* Which technology channels this setting can be deployed through. Possible values are: none, mdm, windows10XManagement, configManager, appleRemoteManagement, microsoftSense, exchangeOnline, linuxMdm, enrollment, endpointPrivilegeManagement, unknownFutureValue.
* Which technology channels this setting can be deployed through. Posible values are: none, mdm, configManager, intuneManagementExtension, thirdParty, documentGateway, appleRemoteManagement, microsoftSense, exchangeOnline, edgeMam, linuxMdm, extensibility, enrollment, endpointPrivilegeManagement. Possible values are: none, mdm, windows10XManagement, configManager, appleRemoteManagement, microsoftSense, exchangeOnline, mobileApplicationManagement, linuxMdm, enrollment, endpointPrivilegeManagement, unknownFutureValue.
*
* @param DeviceManagementConfigurationTechnologies $val The value to assign to the technologies
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class DeviceManagementConfigurationSettingGroupCollectionDefinition extends Devi
{
/**
* Gets the maximumCount
* Maximum number of setting group count in the collection
* Maximum number of setting group count in the collection. Valid values 1 to 100
*
* @return int|null The maximumCount
*/
Expand All @@ -41,7 +41,7 @@ public function getMaximumCount()

/**
* Sets the maximumCount
* Maximum number of setting group count in the collection
* Maximum number of setting group count in the collection. Valid values 1 to 100
*
* @param int $val The maximumCount
*
Expand All @@ -55,7 +55,7 @@ public function setMaximumCount($val)

/**
* Gets the minimumCount
* Minimum number of setting group count in the collection
* Minimum number of setting group count in the collection. Valid values 1 to 100
*
* @return int|null The minimumCount
*/
Expand All @@ -70,7 +70,7 @@ public function getMinimumCount()

/**
* Sets the minimumCount
* Minimum number of setting group count in the collection
* Minimum number of setting group count in the collection. Valid values 1 to 100
*
* @param int $val The minimumCount
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class DeviceManagementConfigurationSettingGroupDefinition extends DeviceManageme
{
/**
* Gets the childIds
* Dependent child settings to this group of settings
* Dependent child settings to this group of settings.
*
* @return array|null The childIds
*/
Expand All @@ -41,7 +41,7 @@ public function getChildIds()

/**
* Sets the childIds
* Dependent child settings to this group of settings
* Dependent child settings to this group of settings.
*
* @param string[] $val The childIds
*
Expand Down
Loading

0 comments on commit c180d59

Please sign in to comment.