Skip to content

Commit 059e595

Browse files
Merge pull request #1464 from microsoftgraph/v1.0/pipelinebuild/116509
Generated models and request builders
2 parents 6671f64 + 9dab301 commit 059e595

File tree

43 files changed

+1318
-48
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+1318
-48
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
### Changed
1313

14+
## [5.60.0] - 2023-06-09
15+
16+
### Added
17+
18+
- LayoutTemplateType model.
19+
- LoginPageLayoutConfiguration model.
20+
- LoginPageTextVisibilitySettings model.
21+
- OrganizationalBrandingProperties derived requests.
22+
- The following models have been added to the security namespace.
23+
- AmazonResourceEvidence
24+
- AzureResourceEvidence
25+
- GoogleCloudLocationType
26+
- GoogleCloudResourceEvidence
27+
1428
## [5.59.0] - 2023-05-26
1529

1630
### Added

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ repositories {
1919
2020
dependencies {
2121
// Include the sdk as a dependency
22-
implementation 'com.microsoft.graph:microsoft-graph:5.59.0'
22+
implementation 'com.microsoft.graph:microsoft-graph:5.60.0'
2323
// Uncomment the line below if you are building an android application
2424
//implementation 'com.google.guava:guava:30.1.1-android'
2525
// This dependency is only needed if you are using the TokenCrendentialAuthProvider
@@ -36,7 +36,7 @@ Add the dependency in `dependencies` in pom.xml
3636
<!-- Include the sdk as a dependency -->
3737
<groupId>com.microsoft.graph</groupId>
3838
<artifactId>microsoft-graph</artifactId>
39-
<version>5.59.0</version>
39+
<version>5.60.0</version>
4040
</dependency>
4141
<dependency>
4242
<!-- This dependency is only needed if you are using the TokenCredentialAuthProvider -->
@@ -190,5 +190,6 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
190190

191191

192192

193+
193194

194195

gradle.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ org.gradle.caching=true
2626
mavenGroupId = com.microsoft.graph
2727
mavenArtifactId = microsoft-graph
2828
mavenMajorVersion = 5
29-
mavenMinorVersion = 59
29+
mavenMinorVersion = 60
3030
mavenPatchVersion = 0
3131
mavenArtifactSuffix =
3232

@@ -113,5 +113,6 @@ mavenCentralPublishingEnabled=false
113113

114114

115115

116+
116117

117118

src/main/java/com/microsoft/graph/callrecords/models/MediaStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public final AdditionalDataManager additionalDataManager() {
4242

4343
/**
4444
* The Audio Codec.
45-
* Codec name used to encode audio for transmission on the network. Possible values are: unknown, invalid, cn, pcma, pcmu, amrWide, g722, g7221, g7221c, g729, multiChannelAudio, muchv2, opus, satin, satinFullband, rtAudio8, rtAudio16, silk, silkNarrow, silkWide, siren, xmsRTA, unknownFutureValue.
45+
* Codec name used to encode audio for transmission on the network. Possible values are: unknown, invalid, cn, pcma, pcmu, amrWide, g722, g7221, g7221c, g729, multiChannelAudio, muchv2, opus, satin, satinFullband, rtAudio8, rtAudio16, silk, silkNarrow, silkWide, siren, xmsRta, unknownFutureValue.
4646
*/
4747
@SerializedName(value = "audioCodec", alternate = {"AudioCodec"})
4848
@Expose

src/main/java/com/microsoft/graph/info/Constants.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ private Constants() {
1818
/** The client secret to use for unit testing */
1919
public static final String CLIENTSECRET = "clientsecret";
2020
/** The SDK version */
21-
public static final String VERSION_NAME = "5.59.0";
21+
public static final String VERSION_NAME = "5.60.0";
2222
}
2323

2424

@@ -90,5 +90,6 @@ private Constants() {
9090

9191

9292

93+
9394

9495

src/main/java/com/microsoft/graph/models/AllowedValue.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public class AllowedValue extends Entity implements IJsonBackedObject {
2727

2828
/**
2929
* The Is Active.
30-
*
30+
* Indicates whether the predefined value is active or deactivated. If set to false, this predefined value cannot be assigned to any additional supported directory objects.
3131
*/
3232
@SerializedName(value = "isActive", alternate = {"IsActive"})
3333
@Expose

src/main/java/com/microsoft/graph/models/AttributeSet.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public class AttributeSet extends Entity implements IJsonBackedObject {
2727

2828
/**
2929
* The Description.
30-
*
30+
* Description of the attribute set. Can be up to 128 characters long and include Unicode characters. Can be changed later.
3131
*/
3232
@SerializedName(value = "description", alternate = {"Description"})
3333
@Expose
@@ -36,7 +36,7 @@ public class AttributeSet extends Entity implements IJsonBackedObject {
3636

3737
/**
3838
* The Max Attributes Per Set.
39-
*
39+
* Maximum number of custom security attributes that can be defined in this attribute set. Default value is null. If not specified, the administrator can add up to the maximum of 500 active attributes per tenant. Can be changed later.
4040
*/
4141
@SerializedName(value = "maxAttributesPerSet", alternate = {"MaxAttributesPerSet"})
4242
@Expose

src/main/java/com/microsoft/graph/models/CollapseProperty.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public final AdditionalDataManager additionalDataManager() {
4040

4141
/**
4242
* The Fields.
43-
*
43+
* Defines the collapse group to trim results. The properties in this collection must be sortable/refinable properties. Required.
4444
*/
4545
@SerializedName(value = "fields", alternate = {"Fields"})
4646
@Expose
@@ -49,7 +49,7 @@ public final AdditionalDataManager additionalDataManager() {
4949

5050
/**
5151
* The Limit.
52-
*
52+
* Defines a maximum limit count for this field. This numeric value must be a positive integer. Required.
5353
*/
5454
@SerializedName(value = "limit", alternate = {"Limit"})
5555
@Expose

src/main/java/com/microsoft/graph/models/ConversationMember.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public class ConversationMember extends Entity implements IJsonBackedObject {
3737

3838
/**
3939
* The Roles.
40-
* The roles for that user. This property only contains additional qualifiers when relevant - for example, if the member has owner privileges, the roles property contains owner as one of the values. Similarly, if the member is a guest, the roles property contains guest as one of the values. A basic member should not have any values specified in the roles property.
40+
* The roles for that user. This property contains additional qualifiers only when relevant - for example, if the member has owner privileges, the roles property contains owner as one of the values. Similarly, if the member is an in-tenant guest, the roles property contains guest as one of the values. A basic member should not have any values specified in the roles property. An Out-of-tenant external member is assigned the owner role.
4141
*/
4242
@SerializedName(value = "roles", alternate = {"Roles"})
4343
@Expose

src/main/java/com/microsoft/graph/models/CustomSecurityAttributeDefinition.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public class CustomSecurityAttributeDefinition extends Entity implements IJsonBa
2929

3030
/**
3131
* The Attribute Set.
32-
*
32+
* Name of the attribute set. Case insensitive.
3333
*/
3434
@SerializedName(value = "attributeSet", alternate = {"AttributeSet"})
3535
@Expose
@@ -38,7 +38,7 @@ public class CustomSecurityAttributeDefinition extends Entity implements IJsonBa
3838

3939
/**
4040
* The Description.
41-
*
41+
* Description of the custom security attribute. Can be up to 128 characters long and include Unicode characters. Can be changed later.
4242
*/
4343
@SerializedName(value = "description", alternate = {"Description"})
4444
@Expose
@@ -47,7 +47,7 @@ public class CustomSecurityAttributeDefinition extends Entity implements IJsonBa
4747

4848
/**
4949
* The Is Collection.
50-
*
50+
* Indicates whether multiple values can be assigned to the custom security attribute. Cannot be changed later. If type is set to Boolean, isCollection cannot be set to true.
5151
*/
5252
@SerializedName(value = "isCollection", alternate = {"IsCollection"})
5353
@Expose
@@ -56,7 +56,7 @@ public class CustomSecurityAttributeDefinition extends Entity implements IJsonBa
5656

5757
/**
5858
* The Is Searchable.
59-
*
59+
* Indicates whether custom security attribute values are indexed for searching on objects that are assigned attribute values. Cannot be changed later.
6060
*/
6161
@SerializedName(value = "isSearchable", alternate = {"IsSearchable"})
6262
@Expose
@@ -65,7 +65,7 @@ public class CustomSecurityAttributeDefinition extends Entity implements IJsonBa
6565

6666
/**
6767
* The Name.
68-
*
68+
* Name of the custom security attribute. Must be unique within an attribute set. Can be up to 32 characters long and include Unicode characters. Cannot contain spaces or special characters. Cannot be changed later. Case insensitive.
6969
*/
7070
@SerializedName(value = "name", alternate = {"Name"})
7171
@Expose
@@ -74,7 +74,7 @@ public class CustomSecurityAttributeDefinition extends Entity implements IJsonBa
7474

7575
/**
7676
* The Status.
77-
*
77+
* Specifies whether the custom security attribute is active or deactivated. Acceptable values are: Available and Deprecated. Can be changed later.
7878
*/
7979
@SerializedName(value = "status", alternate = {"Status"})
8080
@Expose
@@ -83,7 +83,7 @@ public class CustomSecurityAttributeDefinition extends Entity implements IJsonBa
8383

8484
/**
8585
* The Type.
86-
*
86+
* Data type for the custom security attribute values. Supported types are: Boolean, Integer, and String. Cannot be changed later.
8787
*/
8888
@SerializedName(value = "type", alternate = {"Type"})
8989
@Expose
@@ -92,7 +92,7 @@ public class CustomSecurityAttributeDefinition extends Entity implements IJsonBa
9292

9393
/**
9494
* The Use Pre Defined Values Only.
95-
*
95+
* Indicates whether only predefined values can be assigned to the custom security attribute. If set to false, free-form values are allowed. Can later be changed from true to false, but cannot be changed from false to true. If type is set to Boolean, usePreDefinedValuesOnly cannot be set to true.
9696
*/
9797
@SerializedName(value = "usePreDefinedValuesOnly", alternate = {"UsePreDefinedValuesOnly"})
9898
@Expose
@@ -101,7 +101,7 @@ public class CustomSecurityAttributeDefinition extends Entity implements IJsonBa
101101

102102
/**
103103
* The Allowed Values.
104-
*
104+
* Values that are predefined for this custom security attribute. This navigation property is not returned by default and must be specified in an $expand query. For example, /directory/customSecurityAttributeDefinitions?$expand=allowedValues.
105105
*/
106106
@SerializedName(value = "allowedValues", alternate = {"AllowedValues"})
107107
@Expose

0 commit comments

Comments
 (0)