Skip to content

Commit

Permalink
Merge pull request #578 from microsoftgraph/beta/pipelinebuild/114201
Browse files Browse the repository at this point in the history
Generated Beta models and request builders
  • Loading branch information
ramsessanchez authored May 12, 2023
2 parents 1dc3fb2 + 501d726 commit 192c987
Show file tree
Hide file tree
Showing 89 changed files with 1,679 additions and 219 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

## [0.72.0] - 2023-05-12

### Changed

- Weekly generation.

## [0.71.0] - 2023-05-02

### Changed
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ repositories {
dependencies {
// Include the sdk as a dependency
implementation 'com.microsoft.graph:microsoft-graph-beta:0.71.0-SNAPSHOT'
implementation 'com.microsoft.graph:microsoft-graph-beta:0.72.0-SNAPSHOT'
// Uncomment the line below if you are building an android application
//implementation 'com.google.guava:guava:30.1.1-android'
// This dependency is only needed if you are using the TokenCrendentialAuthProvider
Expand All @@ -37,7 +37,7 @@ Add the dependency in `dependencies` in pom.xml
<!-- Include the sdk as a dependency -->
<groupId>com.microsoft.graph</groupId>
<artifactId>microsoft-graph-beta</artifactId>
<version>0.71.0-SNAPSHOT</version>
<version>0.72.0-SNAPSHOT</version>
</dependency>
<dependency>
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
Expand Down Expand Up @@ -207,5 +207,6 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI






3 changes: 2 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ org.gradle.caching=true
mavenGroupId = com.microsoft.graph
mavenArtifactId = microsoft-graph-beta
mavenMajorVersion = 0
mavenMinorVersion = 71
mavenMinorVersion = 72
mavenPatchVersion = 0
mavenArtifactSuffix =

Expand Down Expand Up @@ -106,5 +106,6 @@ mavenCentralPublishingEnabled=false






Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class ExternalActivity extends Entity implements IJsonBackedObject {

/**
* The Start Date Time.
* When the particular activity occurred.
* The date and time when the particular activity occurred. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
*/
@SerializedName(value = "startDateTime", alternate = {"StartDateTime"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class ExternalActivityResult extends ExternalActivity implements IJsonBac

/**
* The Error.
* Error information explaining failure to process external activity.
* Error information that explains the failure to process an external activity.
*/
@SerializedName(value = "error", alternate = {"Error"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public class ExternalItem extends Entity implements IJsonBackedObject {

/**
* The Activities.
* Write-only property. Returns results.
* Returns a list of activities performed on the item. Write-only.
*/
@SerializedName(value = "activities", alternate = {"Activities"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class Identity extends Entity implements IJsonBackedObject {

/**
* The Type.
*
* The type of identity. Possible values are: user or group for Azure AD identities and externalgroup for groups in an external system.
*/
@SerializedName(value = "type", alternate = {"Type"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public final AdditionalDataManager additionalDataManager() {

/**
* The Operation.
* Specifies the operations to be performed during evaluation of a single propertyRule, where property and a string from the values collection are the respective operands. Possible values are: null, equals, notEquals, contains, notContains, lessThan, greaterThan, startsWith, unknownFutureValue. Required.
* Specifies the operations to be performed during evaluation of a single propertyRule, where property and a string from the values collection are the respective operands. Possible values are: null, equals, notEquals, contains, notContains, lessThan, greaterThan, startsWith. Required.
*/
@SerializedName(value = "operation", alternate = {"Operation"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class TimeBasedAttributeTrigger extends WorkflowExecutionTrigger implemen

/**
* The Offset In Days.
* How many days before or after the time-based attribute specified the workflow should trigger. For example, if the attribute is employeeHireDate and offsetInDays is -1, then the workflow should trigger one day before the employee hire date. The value can range between -60 and 60 days.
* How many days before or after the time-based attribute specified the workflow should trigger. For example, if the attribute is employeeHireDate and offsetInDays is -1, then the workflow should trigger one day before the employee hire date. The value can range between -180 and 180 days.
*/
@SerializedName(value = "offsetInDays", alternate = {"OffsetInDays"})
@Expose
Expand Down
3 changes: 2 additions & 1 deletion src/main/java/com/microsoft/graph/info/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ private Constants() {
/** The client secret to use for unit testing */
public static final String CLIENTSECRET = "clientsecret";
/** The SDK version */
public static final String VERSION_NAME = "0.71.0";
public static final String VERSION_NAME = "0.72.0";
}


Expand Down Expand Up @@ -81,5 +81,6 @@ private Constants() {






Original file line number Diff line number Diff line change
Expand Up @@ -152,9 +152,7 @@ public class AccessPackageCatalog extends Entity implements IJsonBackedObject {
/**
* The Access Packages.
* The access packages in this catalog. Read-only. Nullable. Supports $expand.
*/
@SerializedName(value = "accessPackages", alternate = {"AccessPackages"})
@Expose
*/
@Nullable
public com.microsoft.graph.requests.AccessPackageCollectionPage accessPackages;

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/microsoft/graph/models/Admin.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public final AdditionalDataManager additionalDataManager() {

/**
* The Sharepoint.
* A container for administrative resources to manage tenant-level settings for SharePoint and OneDrive.
*
*/
@SerializedName(value = "sharepoint", alternate = {"Sharepoint"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class AttendanceRecord extends Entity implements IJsonBackedObject {

/**
* The Email Address.
* Email address of the user associated with this atttendance record.
* Email address of the user associated with this attendance record.
*/
@SerializedName(value = "emailAddress", alternate = {"EmailAddress"})
@Expose
Expand All @@ -48,7 +48,7 @@ public class AttendanceRecord extends Entity implements IJsonBackedObject {

/**
* The Identity.
* Identity of the user associated with this atttendance record. The specific type will be one of the following derived types of identity, depending on the type of the user: communicationsUserIdentity, azureCommunicationServicesUserIdentity.
* Identity of the user associated with this attendance record. The specific type will be one of the following derived types of identity, depending on the type of the user: communicationsUserIdentity, azureCommunicationServicesUserIdentity.
*/
@SerializedName(value = "identity", alternate = {"Identity"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public class CloudPcProvisioningPolicy extends Entity implements IJsonBackedObje

/**
* The Cloud Pc Naming Template.
*
* The template used to name Cloud PCs provisioned using this policy. This can contain custom text and replacement tokens, including %USERNAME:x% and %RAND:x%, which represent the user's name and a randomly generated number, respectively. For example, 'CPC-%USERNAME:4%-%RAND:5%' means that the Cloud PC's name will start with 'CPC-', have a four-character username in the middle followed by a '-' character, and end with five random characters. The total length of the text generated by the template can be no more than 15 characters. Supports $filter, $select, $orderBy.
*/
@SerializedName(value = "cloudPcNamingTemplate", alternate = {"CloudPcNamingTemplate"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class CloudPcProvisioningPolicyAssignment extends Entity implements IJson

/**
* The Assigned Users.
*
* The assignment targeted users for the provisioning policy. This list of users is computed based on assignments, licenses, group memberships, and policies. This property is read-only. Supports$expand.
* @deprecated The Graph Notification API is deprecated and will stop returning data on March 20, 2023.
*/
@Deprecated
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class ConditionalAccessEnumeratedExternalTenants extends ConditionalAcces

/**
* The Members.
* Represents a collection of tenant ids in the scope of Conditional Access for guests and external users policy targeting.
* A collection of tenant IDs that define the scope of a policy targeting conditional access for guests and external users.
*/
@SerializedName(value = "members", alternate = {"Members"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public final AdditionalDataManager additionalDataManager() {

/**
* The Membership Kind.
* Represents the membership kind. The possible values are: all, enumerated, unknownFutureValue. enumerated references an object of conditionalAccessEnumeratedExternalTenants derived type.
* The membership kind. Possible values are: all, enumerated, unknownFutureValue. The enumerated member references an conditionalAccessEnumeratedExternalTenants object.
*/
@SerializedName(value = "membershipKind", alternate = {"MembershipKind"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public final AdditionalDataManager additionalDataManager() {

/**
* The External Tenants.
* The tenant ids of the selected types of external users. It could be either all b2b tenant, or a collection of tenant ids. External tenants can be specified only when guestOrExternalUserTypes is not null or an empty string.
* The tenant IDs of the selected types of external users. Either all B2B tenant or a collection of tenant IDs. External tenants can be specified only when the property guestOrExternalUserTypes is not null or an empty String.
*/
@SerializedName(value = "externalTenants", alternate = {"ExternalTenants"})
@Expose
Expand All @@ -50,7 +50,7 @@ public final AdditionalDataManager additionalDataManager() {

/**
* The Guest Or External User Types.
* Represents internal guests or external user types. This is a multi-valued property. Supported values are: b2bCollaborationGuest, b2bCollaborationMember, b2bDirectConnectUser, internalGuest, OtherExternalUser, serviceProvider and unknownFutureValue.
* Indicates internal guests or external user types. This is a multi-valued property. Possible values are: none, internalGuest, b2bCollaborationGuest, b2bCollaborationMember, b2bDirectConnectUser, otherExternalUser, serviceProvider, unknownFutureValue.
*/
@SerializedName(value = "guestOrExternalUserTypes", alternate = {"GuestOrExternalUserTypes"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public final AdditionalDataManager additionalDataManager() {

/**
* The Exclude Guests Or External Users.
* Internal guests or external users excluded in the policy scope. Optionally populated.
* Internal guests or external users excluded from the policy scope. Optionally populated.
*/
@SerializedName(value = "excludeGuestsOrExternalUsers", alternate = {"ExcludeGuestsOrExternalUsers"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class DeviceManagementConfigurationChoiceSettingCollectionDefinition exte

/**
* The Maximum Count.
* Maximum number of choices in the collection. Valid values 1 to 100
* Maximum number of choices in the collection
*/
@SerializedName(value = "maximumCount", alternate = {"MaximumCount"})
@Expose
Expand All @@ -36,7 +36,7 @@ public class DeviceManagementConfigurationChoiceSettingCollectionDefinition exte

/**
* The Minimum Count.
* Minimum number of choices in the collection. Valid values 1 to 100
* Minimum number of choices in the collection
*/
@SerializedName(value = "minimumCount", alternate = {"MinimumCount"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public final AdditionalDataManager additionalDataManager() {

/**
* The Setting Definition Id.
* Setting definition id that is being referred to a setting. Applicable for reusable setting
* Setting definition id that is being referred to a setting. Applicable for reusable setting.
*/
@SerializedName(value = "settingDefinitionId", alternate = {"SettingDefinitionId"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public final AdditionalDataManager additionalDataManager() {

/**
* The Platform.
* 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.
* Platform setting can be applied on. Possible values are: none, android, iOS, macOS, windows10X, windows10, linux, unknownFutureValue.
*/
@SerializedName(value = "platform", alternate = {"Platform"})
@Expose
Expand All @@ -69,7 +69,7 @@ public final AdditionalDataManager additionalDataManager() {

/**
* The Technologies.
* 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.
* Which technology channels this setting can be deployed through. Possible values are: none, mdm, windows10XManagement, configManager, appleRemoteManagement, microsoftSense, exchangeOnline, linuxMdm, enrollment, endpointPrivilegeManagement, unknownFutureValue.
*/
@SerializedName(value = "technologies", alternate = {"Technologies"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public class DeviceManagementConfigurationSettingDefinition extends Entity imple

/**
* The Applicability.
* Details which device setting is applicable on. Supports: $filters.
* Details which device setting is applicable on
*/
@SerializedName(value = "applicability", alternate = {"Applicability"})
@Expose
Expand All @@ -62,7 +62,7 @@ public class DeviceManagementConfigurationSettingDefinition extends Entity imple

/**
* The Category Id.
* Specify category in which the setting is under. Support $filters.
* Specifies the area group under which the setting is configured in a specified configuration service provider (CSP)
*/
@SerializedName(value = "categoryId", alternate = {"CategoryId"})
@Expose
Expand All @@ -71,7 +71,7 @@ public class DeviceManagementConfigurationSettingDefinition extends Entity imple

/**
* The Description.
* Description of the setting.
* Description of the item
*/
@SerializedName(value = "description", alternate = {"Description"})
@Expose
Expand All @@ -80,7 +80,7 @@ public class DeviceManagementConfigurationSettingDefinition extends Entity imple

/**
* The Display Name.
* Name of the setting. For example: Allow Toast.
* Display name of the item
*/
@SerializedName(value = "displayName", alternate = {"DisplayName"})
@Expose
Expand All @@ -89,7 +89,7 @@ public class DeviceManagementConfigurationSettingDefinition extends Entity imple

/**
* The Help Text.
* Help text of the setting. Give more details of the setting.
* Help text of the item
*/
@SerializedName(value = "helpText", alternate = {"HelpText"})
@Expose
Expand All @@ -98,7 +98,7 @@ public class DeviceManagementConfigurationSettingDefinition extends Entity imple

/**
* The Info Urls.
* List of links more info for the setting can be found at.
* List of links more info for the setting can be found at
*/
@SerializedName(value = "infoUrls", alternate = {"InfoUrls"})
@Expose
Expand Down Expand Up @@ -152,7 +152,7 @@ public class DeviceManagementConfigurationSettingDefinition extends Entity imple

/**
* The Root Definition Id.
* Root setting definition id if the setting is a child setting.
* Root setting definition if the setting is a child setting.
*/
@SerializedName(value = "rootDefinitionId", alternate = {"RootDefinitionId"})
@Expose
Expand All @@ -161,7 +161,7 @@ public class DeviceManagementConfigurationSettingDefinition extends Entity imple

/**
* The Setting Usage.
* Indicate setting type for the setting. Possible values are: configuration, compliance, reusableSetting. Each setting usage has separate API end-point to call. Possible values are: none, configuration, compliance, unknownFutureValue.
* Setting type, for example, configuration and compliance. Possible values are: none, configuration, compliance.
*/
@SerializedName(value = "settingUsage", alternate = {"SettingUsage"})
@Expose
Expand All @@ -170,7 +170,7 @@ public class DeviceManagementConfigurationSettingDefinition extends Entity imple

/**
* The Ux Behavior.
* Setting control type representation in the UX. Possible values are: default, dropdown, smallTextBox, largeTextBox, toggle, multiheaderGrid, contextPane. Possible values are: default, dropdown, smallTextBox, largeTextBox, toggle, multiheaderGrid, contextPane, unknownFutureValue.
* Setting control type representation in the UX. Possible values are: default, dropdown, smallTextBox, largeTextBox, toggle, multiheaderGrid, contextPane.
*/
@SerializedName(value = "uxBehavior", alternate = {"UxBehavior"})
@Expose
Expand All @@ -188,7 +188,7 @@ public class DeviceManagementConfigurationSettingDefinition extends Entity imple

/**
* The Visibility.
* Setting visibility scope to UX. Possible values are: none, settingsCatalog, template. Possible values are: none, settingsCatalog, template, unknownFutureValue.
* Setting visibility scope to UX. Possible values are: none, settingsCatalog, template.
*/
@SerializedName(value = "visibility", alternate = {"Visibility"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class DeviceManagementConfigurationSettingGroupCollectionDefinition exten

/**
* The Maximum Count.
* Maximum number of setting group count in the collection
* Maximum number of setting group count in the collection. Valid values 1 to 100
*/
@SerializedName(value = "maximumCount", alternate = {"MaximumCount"})
@Expose
Expand All @@ -36,7 +36,7 @@ public class DeviceManagementConfigurationSettingGroupCollectionDefinition exten

/**
* The Minimum Count.
* Minimum number of setting group count in the collection
* Minimum number of setting group count in the collection. Valid values 1 to 100
*/
@SerializedName(value = "minimumCount", alternate = {"MinimumCount"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class DeviceManagementConfigurationSettingGroupDefinition extends DeviceM

/**
* The Child Ids.
* Dependent child settings to this group of settings
* Dependent child settings to this group of settings.
*/
@SerializedName(value = "childIds", alternate = {"ChildIds"})
@Expose
Expand Down
Loading

0 comments on commit 192c987

Please sign in to comment.