Edit

Share via


fileStorageContainerType resource type

Namespace: microsoft.graph

Associates a SharePoint Embedded application and a set of containers. A fileStorageContainerType, also called container type, defines settings, access privileges, and billing accountability.

Each container type is coupled with one SharePoint Embedded application that is referred to as the owning application.

A fileStorageContainerType must be registered in a tenant to be able to create containers.

Methods

Method Return type Description
List fileStorageContainerType collection Get a list of the fileStorageContainerType objects and their properties for the current tenant.
Create fileStorageContainerType Create a new fileStorageContainerType in the owning tenant.
Get fileStorageContainerType Get a fileStorageContainerType using its ID.
Update fileStorageContainerType Update the properties of a fileStorageContainerType object.
Delete None Delete a fileStorageContainerType object from the tenant.

Properties

Property Type Description
billingClassification fileStorageContainerBillingClassification The billing type. The possible values are: standard, trial, directToCustomer, unknownFutureValue. The default value is standard.
billingStatus fileStorageContainerBillingStatus The billing status. Valid when the billing is set up or with trial fileStorageContainerType objects that don't require billing. The possible values are: invalid, valid, unknownFutureValue.
createdDateTime DateTimeOffset The creation date. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.
etag String Used in update scenarios for optimistic concurrency control. Read-only.
expirationDateTime DateTimeOffset The expiration date. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.
id String The unique identifier of the fileStorageContainerType object. Read-only.
name String The name of the fileStorageContainerType.
owningAppId Guid ID of the application that owns the fileStorageContainerType.
settings fileStorageContainerTypeSettings The settings of the fileStorageContainerType.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.fileStorageContainerType",
  "billingClassification": "String",
  "billingStatus": "String",
  "createdDateTime": "String (timestamp)",
  "etag": "String",
  "expirationDateTime": "String (timestamp)",
  "id": "String (identifier)",
  "name": "String",
  "owningAppId": "Guid",
  "settings": {"@odata.type": "microsoft.graph.fileStorageContainerTypeSettings"}
}