"description":"Creates a new matter with the given name and description. The initial state\nis open, and the owner is the method caller. Returns the created matter\nwith default view.",
"description":"Updates the specified matter.\nThis updates only the name and description of the matter, identified by\nmatter id. Changes to any other fields are ignored.\nReturns the default view of the matter.",
"description":"The number of holds to return in the response, between 0 and 100 inclusive.\nLeaving this empty, or as 0, is the same as page_size = 100.",
"description":"Updates the OU and/or query parameters of a hold. You cannot add accounts\nto a hold that covers an OU, nor can you add OUs to a hold that covers\nindividual accounts. Accounts listed in the hold will be ignored."
"description":"Lists HeldAccounts for a hold. This will only list individually specified\nheld accounts. If the hold is on an OU, then use\n\u003ca href=\"https://developers.google.com/admin-sdk/\"\u003eAdmin SDK\u003c/a\u003e\nto enumerate its members.",
"description":"Adds a HeldAccount to a hold. Accounts can only be added to a hold that\nhas no held_org_unit set. Attempting to add an account to an OU-based\nhold will result in an error.",
"description":"API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.",
"type":"string"
},
"access_token":{
"location":"query",
"description":"OAuth access token.",
"type":"string"
},
"quotaUser":{
"location":"query",
"description":"Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.",
"type":"string"
},
"pp":{
"description":"Pretty-print response.",
"default":"true",
"type":"boolean",
"location":"query"
},
"bearer_token":{
"description":"OAuth bearer token.",
"type":"string",
"location":"query"
},
"oauth_token":{
"location":"query",
"description":"OAuth 2.0 token for the current user.",
"type":"string"
},
"upload_protocol":{
"location":"query",
"description":"Upload protocol for media (e.g. \"raw\", \"multipart\").",
"type":"string"
},
"prettyPrint":{
"location":"query",
"description":"Returns response with indentations and line breaks.",
"default":"true",
"type":"boolean"
},
"fields":{
"location":"query",
"description":"Selector specifying which fields to include in a partial response.",
"type":"string"
},
"uploadType":{
"location":"query",
"description":"Legacy upload protocol for media (e.g. \"media\", \"multipart\").",
"type":"string"
},
"$.xgafv":{
"enumDescriptions":[
"v1 error format",
"v2 error format"
],
"location":"query",
"enum":[
"1",
"2"
],
"description":"V1 error format.",
"type":"string"
},
"callback":{
"description":"JSONP",
"type":"string",
"location":"query"
},
"alt":{
"type":"string",
"enumDescriptions":[
"Responses with Content-Type of application/json",
"Media download with context-dependent Content-Type",
"Responses with Content-Type of application/x-protobuf"
],
"location":"query",
"description":"Data format for response.",
"default":"json",
"enum":[
"json",
"media",
"proto"
]
}
},
"version":"v1",
"baseUrl":"https://vault.googleapis.com/",
"servicePath":"",
"description":"Archiving and eDiscovery for G Suite.",
"description":"Add an account with the permission specified. The role cannot be owner.\nIf an account already has a role in the matter, it will be\noverwritten.",
"type":"object",
"properties":{
"sendEmails":{
"description":"True to send notification email to the added account.\nFalse to not send notification email.",
"type":"boolean"
},
"matterPermission":{
"$ref":"MatterPermission",
"description":"The MatterPermission to add."
},
"ccMe":{
"description":"Only relevant if send_emails is true.\nTrue to CC requestor in the email message.\nFalse to not CC requestor.",
"type":"boolean"
}
},
"id":"AddMatterPermissionsRequest"
},
"Matter":{
"description":"Represents a matter.",
"type":"object",
"properties":{
"description":{
"description":"The description of the matter.",
"type":"string"
},
"matterId":{
"description":"The matter ID which is generated by the server.\nShould be blank when creating a new matter.",
"type":"string"
},
"state":{
"description":"The state of the matter.",
"type":"string",
"enumDescriptions":[
"The matter has no specified state.",
"This matter is open.",
"This matter is closed.",
"This matter is deleted."
],
"enum":[
"STATE_UNSPECIFIED",
"OPEN",
"CLOSED",
"DELETED"
]
},
"matterPermissions":{
"description":"List of users and access to the matter. Currently there is no programmer\ndefined limit on the number of permissions a matter can have.",
"items":{
"$ref":"MatterPermission"
},
"type":"array"
},
"name":{
"description":"The name of the matter.",
"type":"string"
}
},
"id":"Matter"
},
"HeldAccount":{
"description":"An account being held in a particular hold. This structure is immutable.\nThis can be either a single user or a google group, depending on the corpus.",
"type":"object",
"properties":{
"accountId":{
"description":"The account's ID as provided by the\n\u003ca href=\"https://developers.google.com/admin-sdk/\"\u003eAdmin SDK\u003c/a\u003e.",
"type":"string"
},
"holdTime":{
"format":"google-datetime",
"description":"When the account was put on hold.",
"type":"string"
}
},
"id":"HeldAccount"
},
"ReopenMatterResponse":{
"description":"Response to a ReopenMatterRequest.",
"type":"object",
"properties":{
"matter":{
"description":"The updated matter, with state OPEN.",
"$ref":"Matter"
}
},
"id":"ReopenMatterResponse"
},
"CorpusQuery":{
"description":"Corpus specific queries.",
"type":"object",
"properties":{
"groupsQuery":{
"description":"Details pertaining to Groups holds. If set, corpus must be Groups.",
"$ref":"HeldGroupsQuery"
},
"mailQuery":{
"description":"Details pertaining to mail holds. If set, corpus must be mail.",
"$ref":"HeldMailQuery"
},
"driveQuery":{
"description":"Details pertaining to Drive holds. If set, corpus must be Drive.",
"$ref":"HeldDriveQuery"
}
},
"id":"CorpusQuery"
},
"Hold":{
"description":"Represents a hold within Vault. A hold restricts purging of\nartifacts based on the combination of the query and accounts restrictions.\nA hold can be configured to either apply to an explicitly configured set\nof accounts, or can be applied to all members of an organizational unit.",
"type":"object",
"properties":{
"orgUnit":{
"$ref":"HeldOrgUnit",
"description":"If set, the hold applies to all members of the organizational unit and\naccounts must be empty. This property is mutable. For groups holds,\nset the accounts field."
},
"query":{
"description":"The corpus-specific query. If set, the corpusQuery must match corpus\ntype.",
"$ref":"CorpusQuery"
},
"corpus":{
"description":"The corpus to be searched.",
"type":"string",
"enumDescriptions":[
"No corpus specified.",
"Drive.",
"Mail.",
"Groups."
],
"enum":[
"CORPUS_TYPE_UNSPECIFIED",
"DRIVE",
"MAIL",
"GROUPS"
]
},
"updateTime":{
"format":"google-datetime",
"description":"The last time this hold was modified.",
"type":"string"
},
"name":{
"description":"The name of the hold.",
"type":"string"
},
"holdId":{
"description":"The unique immutable ID of the hold. Assigned during creation.",
"type":"string"
},
"accounts":{
"description":"If set, the hold applies to the enumerated accounts and org_unit must be\nempty.",
"items":{
"$ref":"HeldAccount"
},
"type":"array"
}
},
"id":"Hold"
},
"ListHoldsResponse":{
"description":"The holds for a matter.",
"type":"object",
"properties":{
"nextPageToken":{
"description":"Page token to retrieve the next page of results in the list.\nIf this is empty, then there are no more holds to list.",
"description":"A generic empty message that you can re-use to avoid defining duplicated\nempty messages in your APIs. A typical example is to use it as the request\nor the response type of an API method. For instance:\n\n service Foo {\n rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);\n }\n\nThe JSON representation for `Empty` is empty JSON object `{}`.",
"description":"Currently each matter only has one owner, and all others are collaborators.\nWhen an account is purged, its corresponding MatterPermission resources\ncease to exist.",
"type":"object",
"properties":{
"accountId":{
"description":"The account id, as provided by \u003ca href=\"https://developers.google.com/admin-sdk/\"\u003eAdmin SDK\u003c/a\u003e.",