Struct google_storage1::TestIamPermissionsResponse[][src]

pub struct TestIamPermissionsResponse {
    pub kind: Option<String>,
    pub permissions: Option<Vec<String>>,
}

A storage.(buckets|objects).testIamPermissions response.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

The kind of item this is.

The permissions held by the caller. Permissions are always of the format storage.resource.capability, where resource is one of buckets or objects. The supported permissions are as follows:

  • storage.buckets.delete — Delete bucket.
  • storage.buckets.get — Read bucket metadata.
  • storage.buckets.getIamPolicy — Read bucket IAM policy.
  • storage.buckets.create — Create bucket.
  • storage.buckets.list — List buckets.
  • storage.buckets.setIamPolicy — Update bucket IAM policy.
  • storage.buckets.update — Update bucket metadata.
  • storage.objects.delete — Delete object.
  • storage.objects.get — Read object data and metadata.
  • storage.objects.getIamPolicy — Read object IAM policy.
  • storage.objects.create — Create object.
  • storage.objects.list — List objects.
  • storage.objects.setIamPolicy — Update object IAM policy.
  • storage.objects.update — Update object metadata.

Trait Implementations

impl Default for TestIamPermissionsResponse
[src]

Returns the "default value" for a type. Read more

impl Clone for TestIamPermissionsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for TestIamPermissionsResponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for TestIamPermissionsResponse
[src]

Auto Trait Implementations