Package odata.msgraph.client.beta.entity
Class GroupPolicyCategory
- java.lang.Object
-
- odata.msgraph.client.beta.entity.Entity
-
- odata.msgraph.client.beta.entity.GroupPolicyCategory
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.ODataEntityType,com.github.davidmoten.odata.client.ODataType
public class GroupPolicyCategory extends Entity implements com.github.davidmoten.odata.client.ODataEntityType
“The category entity stores the category of a group policy definition”
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classGroupPolicyCategory.Builder
-
Field Summary
Fields Modifier and Type Field Description protected StringdisplayNameprotected BooleanisRootprotected OffsetDateTimelastModifiedDateTime-
Fields inherited from class odata.msgraph.client.beta.entity.Entity
changedFields, contextPath, id, odataType, unmappedFields
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedGroupPolicyCategory()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GroupPolicyCategory.BuilderbuilderGroupPolicyCategory()Returns a builder which is used to create a new instance of this class (given that this class is immutable).com.github.davidmoten.odata.client.internal.ChangedFieldsgetChangedFields()GroupPolicyCategoryCollectionRequestgetChildren()“The children categories”GroupPolicyDefinitionFileRequestgetDefinitionFile()“The id of the definition file the category came from”GroupPolicyDefinitionCollectionRequestgetDefinitions()“The immediate GroupPolicyDefinition children of the category”Optional<String>getDisplayName()“The string id of the category's display name”Optional<Boolean>getIsRoot()“Defines if the category is a root category”Optional<OffsetDateTime>getLastModifiedDateTime()“The date and time the entity was last modified.”GroupPolicyCategoryRequestgetParent()“The parent category”com.github.davidmoten.odata.client.UnmappedFieldsgetUnmappedFields()StringodataTypeName()GroupPolicyCategorypatch()Submits only changed fields for update and returns an immutable copy ofthiswith changed fields reset.voidpostInject(boolean addKeysToContextPath)GroupPolicyCategoryput()Submits all fields for update and returns an immutable copy ofthiswith changed fields reset (they were ignored anyway).StringtoString()GroupPolicyCategorywithDisplayName(String displayName)Returns an immutable copy ofthiswith just thedisplayNamefield changed.GroupPolicyCategorywithIsRoot(Boolean isRoot)Returns an immutable copy ofthiswith just theisRootfield changed.GroupPolicyCategorywithLastModifiedDateTime(OffsetDateTime lastModifiedDateTime)Returns an immutable copy ofthiswith just thelastModifiedDateTimefield changed.GroupPolicyCategorywithUnmappedField(String name, String value)
-
-
-
Field Detail
-
displayName
protected String displayName
-
isRoot
protected Boolean isRoot
-
lastModifiedDateTime
protected OffsetDateTime lastModifiedDateTime
-
-
Method Detail
-
odataTypeName
public String odataTypeName()
- Specified by:
odataTypeNamein interfacecom.github.davidmoten.odata.client.ODataType- Overrides:
odataTypeNamein classEntity
-
builderGroupPolicyCategory
public static GroupPolicyCategory.Builder builderGroupPolicyCategory()
Returns a builder which is used to create a new instance of this class (given that this class is immutable).- Returns:
- a new Builder for this class
-
getChangedFields
public com.github.davidmoten.odata.client.internal.ChangedFields getChangedFields()
- Specified by:
getChangedFieldsin interfacecom.github.davidmoten.odata.client.ODataEntityType- Overrides:
getChangedFieldsin classEntity
-
postInject
public void postInject(boolean addKeysToContextPath)
- Specified by:
postInjectin interfacecom.github.davidmoten.odata.client.ODataType- Overrides:
postInjectin classEntity
-
getDisplayName
public Optional<String> getDisplayName()
“The string id of the category's display name”- Returns:
- property displayName
-
withDisplayName
public GroupPolicyCategory withDisplayName(String displayName)
Returns an immutable copy ofthiswith just thedisplayNamefield changed. Field description below. The field name is also added to an internal map of changed fields in the returned object so that whenthis. patch()is called (if available)on the returned object only the changed fields are submitted.“The string id of the category's display name”
- Parameters:
displayName- new value ofdisplayNamefield (as defined in service metadata)- Returns:
- immutable copy of
thiswith just thedisplayNamefield changed
-
getIsRoot
public Optional<Boolean> getIsRoot()
“Defines if the category is a root category”- Returns:
- property isRoot
-
withIsRoot
public GroupPolicyCategory withIsRoot(Boolean isRoot)
Returns an immutable copy ofthiswith just theisRootfield changed. Field description below. The field name is also added to an internal map of changed fields in the returned object so that whenthis.patch()is called (if available)on the returned object only the changed fields are submitted.“Defines if the category is a root category”
- Parameters:
isRoot- new value ofisRootfield (as defined in service metadata)- Returns:
- immutable copy of
thiswith just theisRootfield changed
-
getLastModifiedDateTime
public Optional<OffsetDateTime> getLastModifiedDateTime()
“The date and time the entity was last modified.”- Returns:
- property lastModifiedDateTime
-
withLastModifiedDateTime
public GroupPolicyCategory withLastModifiedDateTime(OffsetDateTime lastModifiedDateTime)
Returns an immutable copy ofthiswith just thelastModifiedDateTimefield changed. Field description below. The field name is also added to an internal map of changed fields in the returned object so that whenthis.patch()is called (if available)on the returned object only the changed fields are submitted.“The date and time the entity was last modified.”
- Parameters:
lastModifiedDateTime- new value oflastModifiedDateTimefield (as defined in service metadata)- Returns:
- immutable copy of
thiswith just thelastModifiedDateTimefield changed
-
withUnmappedField
public GroupPolicyCategory withUnmappedField(String name, String value)
- Overrides:
withUnmappedFieldin classEntity
-
getChildren
public GroupPolicyCategoryCollectionRequest getChildren()
“The children categories”- Returns:
- navigational property children
-
getDefinitionFile
public GroupPolicyDefinitionFileRequest getDefinitionFile()
“The id of the definition file the category came from”- Returns:
- navigational property definitionFile
-
getDefinitions
public GroupPolicyDefinitionCollectionRequest getDefinitions()
“The immediate GroupPolicyDefinition children of the category”- Returns:
- navigational property definitions
-
getParent
public GroupPolicyCategoryRequest getParent()
“The parent category”- Returns:
- navigational property parent
-
getUnmappedFields
public com.github.davidmoten.odata.client.UnmappedFields getUnmappedFields()
- Specified by:
getUnmappedFieldsin interfacecom.github.davidmoten.odata.client.ODataType- Overrides:
getUnmappedFieldsin classEntity
-
patch
public GroupPolicyCategory patch()
Submits only changed fields for update and returns an immutable copy ofthiswith changed fields reset.
-
put
public GroupPolicyCategory put()
Submits all fields for update and returns an immutable copy ofthiswith changed fields reset (they were ignored anyway).
-
-