Documentation ¶
Overview ¶
Package clouduseraccounts provides access to the Cloud User Accounts API.
See https://cloud.google.com/compute/docs/access/user-accounts/api/latest/
Usage example:
import "google.golang.org/api/clouduseraccounts/vm_alpha" ... clouduseraccountsService, err := clouduseraccounts.New(oauthHttpClient)
Index ¶
- Constants
- type AuthorizedKeysView
- type Binding
- type Condition
- type GlobalAccountsOperationsDeleteCall
- type GlobalAccountsOperationsGetCall
- type GlobalAccountsOperationsListCall
- func (c *GlobalAccountsOperationsListCall) Do() (*OperationList, error)
- func (c *GlobalAccountsOperationsListCall) Fields(s ...googleapi.Field) *GlobalAccountsOperationsListCall
- func (c *GlobalAccountsOperationsListCall) Filter(filter string) *GlobalAccountsOperationsListCall
- func (c *GlobalAccountsOperationsListCall) MaxResults(maxResults int64) *GlobalAccountsOperationsListCall
- func (c *GlobalAccountsOperationsListCall) OrderBy(orderBy string) *GlobalAccountsOperationsListCall
- func (c *GlobalAccountsOperationsListCall) PageToken(pageToken string) *GlobalAccountsOperationsListCall
- type GlobalAccountsOperationsService
- func (r *GlobalAccountsOperationsService) Delete(project string, operation string) *GlobalAccountsOperationsDeleteCall
- func (r *GlobalAccountsOperationsService) Get(project string, operation string) *GlobalAccountsOperationsGetCall
- func (r *GlobalAccountsOperationsService) List(project string) *GlobalAccountsOperationsListCall
- type Group
- type GroupList
- type GroupsAddMemberCall
- type GroupsAddMemberRequest
- type GroupsDeleteCall
- type GroupsGetCall
- type GroupsGetIamPolicyCall
- type GroupsInsertCall
- type GroupsListCall
- func (c *GroupsListCall) Do() (*GroupList, error)
- func (c *GroupsListCall) Fields(s ...googleapi.Field) *GroupsListCall
- func (c *GroupsListCall) Filter(filter string) *GroupsListCall
- func (c *GroupsListCall) MaxResults(maxResults int64) *GroupsListCall
- func (c *GroupsListCall) OrderBy(orderBy string) *GroupsListCall
- func (c *GroupsListCall) PageToken(pageToken string) *GroupsListCall
- type GroupsRemoveMemberCall
- type GroupsRemoveMemberRequest
- type GroupsService
- func (r *GroupsService) AddMember(project string, groupName string, ...) *GroupsAddMemberCall
- func (r *GroupsService) Delete(project string, groupName string) *GroupsDeleteCall
- func (r *GroupsService) Get(project string, groupName string) *GroupsGetCall
- func (r *GroupsService) GetIamPolicy(project string, resource string) *GroupsGetIamPolicyCall
- func (r *GroupsService) Insert(project string, group *Group) *GroupsInsertCall
- func (r *GroupsService) List(project string) *GroupsListCall
- func (r *GroupsService) RemoveMember(project string, groupName string, ...) *GroupsRemoveMemberCall
- func (r *GroupsService) SetIamPolicy(project string, resource string, policy *Policy) *GroupsSetIamPolicyCall
- func (r *GroupsService) TestIamPermissions(project string, resource string, ...) *GroupsTestIamPermissionsCall
- type GroupsSetIamPolicyCall
- type GroupsTestIamPermissionsCall
- type LinuxAccountViews
- type LinuxGetAuthorizedKeysViewCall
- type LinuxGetAuthorizedKeysViewResponse
- type LinuxGetLinuxAccountViewsCall
- func (c *LinuxGetLinuxAccountViewsCall) Do() (*LinuxGetLinuxAccountViewsResponse, error)
- func (c *LinuxGetLinuxAccountViewsCall) Fields(s ...googleapi.Field) *LinuxGetLinuxAccountViewsCall
- func (c *LinuxGetLinuxAccountViewsCall) Filter(filter string) *LinuxGetLinuxAccountViewsCall
- func (c *LinuxGetLinuxAccountViewsCall) MaxResults(maxResults int64) *LinuxGetLinuxAccountViewsCall
- func (c *LinuxGetLinuxAccountViewsCall) OrderBy(orderBy string) *LinuxGetLinuxAccountViewsCall
- func (c *LinuxGetLinuxAccountViewsCall) PageToken(pageToken string) *LinuxGetLinuxAccountViewsCall
- type LinuxGetLinuxAccountViewsResponse
- type LinuxGroupView
- type LinuxService
- type LinuxUserView
- type LogConfig
- type LogConfigCounterOptions
- type Operation
- type OperationError
- type OperationErrorErrors
- type OperationList
- type OperationWarnings
- type OperationWarningsData
- type Policy
- type PublicKey
- type Rule
- type Service
- type TestPermissionsRequest
- type TestPermissionsResponse
- type User
- type UserList
- type UsersAddPublicKeyCall
- type UsersDeleteCall
- type UsersGetCall
- type UsersGetIamPolicyCall
- type UsersInsertCall
- type UsersListCall
- func (c *UsersListCall) Do() (*UserList, error)
- func (c *UsersListCall) Fields(s ...googleapi.Field) *UsersListCall
- func (c *UsersListCall) Filter(filter string) *UsersListCall
- func (c *UsersListCall) MaxResults(maxResults int64) *UsersListCall
- func (c *UsersListCall) OrderBy(orderBy string) *UsersListCall
- func (c *UsersListCall) PageToken(pageToken string) *UsersListCall
- type UsersRemovePublicKeyCall
- type UsersService
- func (r *UsersService) AddPublicKey(project string, user string, publickey *PublicKey) *UsersAddPublicKeyCall
- func (r *UsersService) Delete(project string, user string) *UsersDeleteCall
- func (r *UsersService) Get(project string, user string) *UsersGetCall
- func (r *UsersService) GetIamPolicy(project string, resource string) *UsersGetIamPolicyCall
- func (r *UsersService) Insert(project string, user *User) *UsersInsertCall
- func (r *UsersService) List(project string) *UsersListCall
- func (r *UsersService) RemovePublicKey(project string, user string, fingerprint string) *UsersRemovePublicKeyCall
- func (r *UsersService) SetIamPolicy(project string, resource string, policy *Policy) *UsersSetIamPolicyCall
- func (r *UsersService) TestIamPermissions(project string, resource string, ...) *UsersTestIamPermissionsCall
- type UsersSetIamPolicyCall
- type UsersTestIamPermissionsCall
Constants ¶
const ( // View and manage your data across Google Cloud Platform services CloudPlatformScope = "https://www.googleapis.com/auth/cloud-platform" // MESSAGE UNDER CONSTRUCTION View your data across Google Cloud // Platform services CloudPlatformReadOnlyScope = "https://www.googleapis.com/auth/cloud-platform.read-only" // Manage your Google Cloud User Accounts CloudUseraccountsScope = "https://www.googleapis.com/auth/cloud.useraccounts" // View your Google Cloud User Accounts CloudUseraccountsReadonlyScope = "https://www.googleapis.com/auth/cloud.useraccounts.readonly" )
OAuth2 scopes used by this API.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AuthorizedKeysView ¶
type AuthorizedKeysView struct { // Keys: [Output Only] The list of authorized public keys in SSH format. Keys []string `json:"keys,omitempty"` }
AuthorizedKeysView: A list of authorized public keys for a user account.
type Binding ¶
type Binding struct { // Members: Specifies the identities requesting access for a Cloud // Platform resource. `members` can have the following formats: // // * `allUsers`: A special identifier that represents anyone who is on // the internet; with or without a Google account. // // * `allAuthenticatedUsers`: A special identifier that represents // anyone who is authenticated with a Google account or a service // account. // // * `user:{emailid}`: An email address that represents a specific // Google account. For example, `alice@gmail.com` or // `joe@example.com`. // // * `serviceAccount:{emailid}`: An email address that represents a // service account. For example, // `my-other-app@appspot.gserviceaccount.com`. // // * `group:{emailid}`: An email address that represents a Google group. // For example, `admins@example.com`. // // * `domain:{domain}`: A Google Apps domain name that represents all // the users of that domain. For example, `google.com` or `example.com`. Members []string `json:"members,omitempty"` // Role: Role that is assigned to `members`. For example, // `roles/viewer`, `roles/editor`, or `roles/owner`. Role string `json:"role,omitempty"` }
Binding: Associates `members` with a `role`.
type Condition ¶
type Condition struct { // Iam: Trusted attributes supplied by the IAM system. // // Possible values: // "ATTRIBUTION" // "AUTHORITY" // "NO_ATTR" Iam string `json:"iam,omitempty"` // Op: An operator to apply the subject with. // // Possible values: // "DISCHARGED" // "EQUALS" // "IN" // "NOT_EQUALS" // "NOT_IN" // "NO_OP" Op string `json:"op,omitempty"` // Svc: Trusted attributes discharged by the service. Svc string `json:"svc,omitempty"` // Sys: Trusted attributes supplied by any service that owns resources // and uses the IAM system for access control. // // Possible values: // "IP" // "NAME" // "NO_ATTR" // "REGION" // "SERVICE" Sys string `json:"sys,omitempty"` // Value: The object of the condition. Exactly one of these must be set. Value string `json:"value,omitempty"` // Values: The objects of the condition. This is mutually exclusive with // 'value'. Values []string `json:"values,omitempty"` }
Condition: A condition to be met.
type GlobalAccountsOperationsDeleteCall ¶
type GlobalAccountsOperationsDeleteCall struct {
// contains filtered or unexported fields
}
func (*GlobalAccountsOperationsDeleteCall) Do ¶
func (c *GlobalAccountsOperationsDeleteCall) Do() error
func (*GlobalAccountsOperationsDeleteCall) Fields ¶
func (c *GlobalAccountsOperationsDeleteCall) Fields(s ...googleapi.Field) *GlobalAccountsOperationsDeleteCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type GlobalAccountsOperationsGetCall ¶
type GlobalAccountsOperationsGetCall struct {
// contains filtered or unexported fields
}
func (*GlobalAccountsOperationsGetCall) Do ¶
func (c *GlobalAccountsOperationsGetCall) Do() (*Operation, error)
func (*GlobalAccountsOperationsGetCall) Fields ¶
func (c *GlobalAccountsOperationsGetCall) Fields(s ...googleapi.Field) *GlobalAccountsOperationsGetCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type GlobalAccountsOperationsListCall ¶
type GlobalAccountsOperationsListCall struct {
// contains filtered or unexported fields
}
func (*GlobalAccountsOperationsListCall) Do ¶
func (c *GlobalAccountsOperationsListCall) Do() (*OperationList, error)
func (*GlobalAccountsOperationsListCall) Fields ¶
func (c *GlobalAccountsOperationsListCall) Fields(s ...googleapi.Field) *GlobalAccountsOperationsListCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*GlobalAccountsOperationsListCall) Filter ¶
func (c *GlobalAccountsOperationsListCall) Filter(filter string) *GlobalAccountsOperationsListCall
Filter sets the optional parameter "filter": Sets a filter expression for filtering listed resources, in the form filter={expression}. Your {expression} must be in the format: FIELD_NAME COMPARISON_STRING LITERAL_STRING.
The FIELD_NAME is the name of the field you want to compare. Only atomic field types are supported (string, number, boolean). The COMPARISON_STRING must be either eq (equals) or ne (not equals). The LITERAL_STRING is the string value to filter to. The literal value must be valid for the type of field (string, number, boolean). For string fields, the literal value is interpreted as a regular expression using RE2 syntax. The literal value must match the entire field.
For example, filter=name ne example-instance.
func (*GlobalAccountsOperationsListCall) MaxResults ¶
func (c *GlobalAccountsOperationsListCall) MaxResults(maxResults int64) *GlobalAccountsOperationsListCall
MaxResults sets the optional parameter "maxResults": Maximum count of results to be returned.
func (*GlobalAccountsOperationsListCall) OrderBy ¶
func (c *GlobalAccountsOperationsListCall) OrderBy(orderBy string) *GlobalAccountsOperationsListCall
OrderBy sets the optional parameter "orderBy": Sorts list results by a certain order. By default, results are returned in alphanumerical order based on the resource name.
You can also sort results in descending order based on the creation timestamp using orderBy="creationTimestamp desc". This sorts results based on the creationTimestamp field in reverse chronological order (newest result first). Use this to sort resources like operations so that the newest operation is returned first.
Currently, only sorting by name or creationTimestamp desc is supported.
func (*GlobalAccountsOperationsListCall) PageToken ¶
func (c *GlobalAccountsOperationsListCall) PageToken(pageToken string) *GlobalAccountsOperationsListCall
PageToken sets the optional parameter "pageToken": Specifies a page token to use. Use this parameter if you want to list the next page of results. Set pageToken to the nextPageToken returned by a previous list request.
type GlobalAccountsOperationsService ¶
type GlobalAccountsOperationsService struct {
// contains filtered or unexported fields
}
func NewGlobalAccountsOperationsService ¶
func NewGlobalAccountsOperationsService(s *Service) *GlobalAccountsOperationsService
func (*GlobalAccountsOperationsService) Delete ¶
func (r *GlobalAccountsOperationsService) Delete(project string, operation string) *GlobalAccountsOperationsDeleteCall
Delete: Deletes the specified operation resource.
func (*GlobalAccountsOperationsService) Get ¶
func (r *GlobalAccountsOperationsService) Get(project string, operation string) *GlobalAccountsOperationsGetCall
Get: Retrieves the specified operation resource.
func (*GlobalAccountsOperationsService) List ¶
func (r *GlobalAccountsOperationsService) List(project string) *GlobalAccountsOperationsListCall
List: Retrieves the list of operation resources contained within the specified project.
type Group ¶
type Group struct { // CreationTimestamp: [Output Only] Creation timestamp in RFC3339 text // format. CreationTimestamp string `json:"creationTimestamp,omitempty"` // Description: An optional textual description of the resource; // provided by the client when the resource is created. Description string `json:"description,omitempty"` // Id: [Output Only] Unique identifier for the resource; defined by the // server. Id uint64 `json:"id,omitempty,string"` // Kind: [Output Only] Type of the resource. Always // clouduseraccounts#group for groups. Kind string `json:"kind,omitempty"` // Members: [Output Only] A list of URLs to User resources who belong to // the group. Users may only be members of groups in the same project. Members []string `json:"members,omitempty"` // Name: Name of the resource; provided by the client when the resource // is created. Name string `json:"name,omitempty"` // SelfLink: [Output Only] Server defined URL for the resource. SelfLink string `json:"selfLink,omitempty"` }
Group: A Group resource.
type GroupList ¶
type GroupList struct { // Id: [Output Only] Unique identifier for the resource; defined by the // server. Id string `json:"id,omitempty"` // Items: [Output Only] A list of Group resources. Items []*Group `json:"items,omitempty"` // Kind: [Output Only] Type of resource. Always // clouduseraccounts#groupList for lists of groups. Kind string `json:"kind,omitempty"` // NextPageToken: [Output Only] A token used to continue a truncated // list request. NextPageToken string `json:"nextPageToken,omitempty"` // SelfLink: [Output Only] Server defined URL for this resource. SelfLink string `json:"selfLink,omitempty"` }
type GroupsAddMemberCall ¶
type GroupsAddMemberCall struct {
// contains filtered or unexported fields
}
func (*GroupsAddMemberCall) Do ¶
func (c *GroupsAddMemberCall) Do() (*Operation, error)
func (*GroupsAddMemberCall) Fields ¶
func (c *GroupsAddMemberCall) Fields(s ...googleapi.Field) *GroupsAddMemberCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type GroupsAddMemberRequest ¶
type GroupsAddMemberRequest struct { // Users: Fully-qualified URLs of the User resources to add. Users []string `json:"users,omitempty"` }
type GroupsDeleteCall ¶
type GroupsDeleteCall struct {
// contains filtered or unexported fields
}
func (*GroupsDeleteCall) Do ¶
func (c *GroupsDeleteCall) Do() (*Operation, error)
func (*GroupsDeleteCall) Fields ¶
func (c *GroupsDeleteCall) Fields(s ...googleapi.Field) *GroupsDeleteCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type GroupsGetCall ¶
type GroupsGetCall struct {
// contains filtered or unexported fields
}
func (*GroupsGetCall) Do ¶
func (c *GroupsGetCall) Do() (*Group, error)
func (*GroupsGetCall) Fields ¶
func (c *GroupsGetCall) Fields(s ...googleapi.Field) *GroupsGetCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type GroupsGetIamPolicyCall ¶
type GroupsGetIamPolicyCall struct {
// contains filtered or unexported fields
}
func (*GroupsGetIamPolicyCall) Do ¶
func (c *GroupsGetIamPolicyCall) Do() (*Policy, error)
func (*GroupsGetIamPolicyCall) Fields ¶
func (c *GroupsGetIamPolicyCall) Fields(s ...googleapi.Field) *GroupsGetIamPolicyCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type GroupsInsertCall ¶
type GroupsInsertCall struct {
// contains filtered or unexported fields
}
func (*GroupsInsertCall) Do ¶
func (c *GroupsInsertCall) Do() (*Operation, error)
func (*GroupsInsertCall) Fields ¶
func (c *GroupsInsertCall) Fields(s ...googleapi.Field) *GroupsInsertCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type GroupsListCall ¶
type GroupsListCall struct {
// contains filtered or unexported fields
}
func (*GroupsListCall) Do ¶
func (c *GroupsListCall) Do() (*GroupList, error)
func (*GroupsListCall) Fields ¶
func (c *GroupsListCall) Fields(s ...googleapi.Field) *GroupsListCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*GroupsListCall) Filter ¶
func (c *GroupsListCall) Filter(filter string) *GroupsListCall
Filter sets the optional parameter "filter": Sets a filter expression for filtering listed resources, in the form filter={expression}. Your {expression} must be in the format: FIELD_NAME COMPARISON_STRING LITERAL_STRING.
The FIELD_NAME is the name of the field you want to compare. Only atomic field types are supported (string, number, boolean). The COMPARISON_STRING must be either eq (equals) or ne (not equals). The LITERAL_STRING is the string value to filter to. The literal value must be valid for the type of field (string, number, boolean). For string fields, the literal value is interpreted as a regular expression using RE2 syntax. The literal value must match the entire field.
For example, filter=name ne example-instance.
func (*GroupsListCall) MaxResults ¶
func (c *GroupsListCall) MaxResults(maxResults int64) *GroupsListCall
MaxResults sets the optional parameter "maxResults": Maximum count of results to be returned.
func (*GroupsListCall) OrderBy ¶
func (c *GroupsListCall) OrderBy(orderBy string) *GroupsListCall
OrderBy sets the optional parameter "orderBy": Sorts list results by a certain order. By default, results are returned in alphanumerical order based on the resource name.
You can also sort results in descending order based on the creation timestamp using orderBy="creationTimestamp desc". This sorts results based on the creationTimestamp field in reverse chronological order (newest result first). Use this to sort resources like operations so that the newest operation is returned first.
Currently, only sorting by name or creationTimestamp desc is supported.
func (*GroupsListCall) PageToken ¶
func (c *GroupsListCall) PageToken(pageToken string) *GroupsListCall
PageToken sets the optional parameter "pageToken": Specifies a page token to use. Use this parameter if you want to list the next page of results. Set pageToken to the nextPageToken returned by a previous list request.
type GroupsRemoveMemberCall ¶
type GroupsRemoveMemberCall struct {
// contains filtered or unexported fields
}
func (*GroupsRemoveMemberCall) Do ¶
func (c *GroupsRemoveMemberCall) Do() (*Operation, error)
func (*GroupsRemoveMemberCall) Fields ¶
func (c *GroupsRemoveMemberCall) Fields(s ...googleapi.Field) *GroupsRemoveMemberCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type GroupsRemoveMemberRequest ¶
type GroupsRemoveMemberRequest struct { // Users: Fully-qualified URLs of the User resources to remove. Users []string `json:"users,omitempty"` }
type GroupsService ¶
type GroupsService struct {
// contains filtered or unexported fields
}
func NewGroupsService ¶
func NewGroupsService(s *Service) *GroupsService
func (*GroupsService) AddMember ¶
func (r *GroupsService) AddMember(project string, groupName string, groupsaddmemberrequest *GroupsAddMemberRequest) *GroupsAddMemberCall
AddMember: Adds users to the specified group.
func (*GroupsService) Delete ¶
func (r *GroupsService) Delete(project string, groupName string) *GroupsDeleteCall
Delete: Deletes the specified Group resource.
func (*GroupsService) Get ¶
func (r *GroupsService) Get(project string, groupName string) *GroupsGetCall
Get: Returns the specified Group resource.
func (*GroupsService) GetIamPolicy ¶
func (r *GroupsService) GetIamPolicy(project string, resource string) *GroupsGetIamPolicyCall
GetIamPolicy: Gets the access control policy for a resource. May be empty if no such policy or resource exists.
func (*GroupsService) Insert ¶
func (r *GroupsService) Insert(project string, group *Group) *GroupsInsertCall
Insert: Creates a Group resource in the specified project using the data included in the request.
func (*GroupsService) List ¶
func (r *GroupsService) List(project string) *GroupsListCall
List: Retrieves the list of groups contained within the specified project.
func (*GroupsService) RemoveMember ¶
func (r *GroupsService) RemoveMember(project string, groupName string, groupsremovememberrequest *GroupsRemoveMemberRequest) *GroupsRemoveMemberCall
RemoveMember: Removes users from the specified group.
func (*GroupsService) SetIamPolicy ¶
func (r *GroupsService) SetIamPolicy(project string, resource string, policy *Policy) *GroupsSetIamPolicyCall
SetIamPolicy: Sets the access control policy on the specified resource. Replaces any existing policy.
func (*GroupsService) TestIamPermissions ¶
func (r *GroupsService) TestIamPermissions(project string, resource string, testpermissionsrequest *TestPermissionsRequest) *GroupsTestIamPermissionsCall
TestIamPermissions: Returns permissions that a caller has on the specified resource.
type GroupsSetIamPolicyCall ¶
type GroupsSetIamPolicyCall struct {
// contains filtered or unexported fields
}
func (*GroupsSetIamPolicyCall) Do ¶
func (c *GroupsSetIamPolicyCall) Do() (*Policy, error)
func (*GroupsSetIamPolicyCall) Fields ¶
func (c *GroupsSetIamPolicyCall) Fields(s ...googleapi.Field) *GroupsSetIamPolicyCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type GroupsTestIamPermissionsCall ¶
type GroupsTestIamPermissionsCall struct {
// contains filtered or unexported fields
}
func (*GroupsTestIamPermissionsCall) Do ¶
func (c *GroupsTestIamPermissionsCall) Do() (*TestPermissionsResponse, error)
func (*GroupsTestIamPermissionsCall) Fields ¶
func (c *GroupsTestIamPermissionsCall) Fields(s ...googleapi.Field) *GroupsTestIamPermissionsCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type LinuxAccountViews ¶
type LinuxAccountViews struct { // GroupViews: [Output Only] A list of all groups within a project. GroupViews []*LinuxGroupView `json:"groupViews,omitempty"` // Kind: [Output Only] Type of the resource. Always // clouduseraccounts#linuxAccountViews for Linux resources. Kind string `json:"kind,omitempty"` // UserViews: [Output Only] A list of all users within a project. UserViews []*LinuxUserView `json:"userViews,omitempty"` }
LinuxAccountViews: A list of all Linux accounts for this project. This API is only used by Compute Engine virtual machines to get information about user accounts for a project or instance. Linux resources are read-only views into users and groups managed by the Compute Engine Accounts API.
type LinuxGetAuthorizedKeysViewCall ¶
type LinuxGetAuthorizedKeysViewCall struct {
// contains filtered or unexported fields
}
func (*LinuxGetAuthorizedKeysViewCall) Do ¶
func (c *LinuxGetAuthorizedKeysViewCall) Do() (*LinuxGetAuthorizedKeysViewResponse, error)
func (*LinuxGetAuthorizedKeysViewCall) Fields ¶
func (c *LinuxGetAuthorizedKeysViewCall) Fields(s ...googleapi.Field) *LinuxGetAuthorizedKeysViewCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type LinuxGetAuthorizedKeysViewResponse ¶
type LinuxGetAuthorizedKeysViewResponse struct { // Resource: [Output Only] A list of authorized public keys for a user. Resource *AuthorizedKeysView `json:"resource,omitempty"` }
type LinuxGetLinuxAccountViewsCall ¶
type LinuxGetLinuxAccountViewsCall struct {
// contains filtered or unexported fields
}
func (*LinuxGetLinuxAccountViewsCall) Do ¶
func (c *LinuxGetLinuxAccountViewsCall) Do() (*LinuxGetLinuxAccountViewsResponse, error)
func (*LinuxGetLinuxAccountViewsCall) Fields ¶
func (c *LinuxGetLinuxAccountViewsCall) Fields(s ...googleapi.Field) *LinuxGetLinuxAccountViewsCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*LinuxGetLinuxAccountViewsCall) Filter ¶
func (c *LinuxGetLinuxAccountViewsCall) Filter(filter string) *LinuxGetLinuxAccountViewsCall
Filter sets the optional parameter "filter": Sets a filter expression for filtering listed resources, in the form filter={expression}. Your {expression} must be in the format: FIELD_NAME COMPARISON_STRING LITERAL_STRING.
The FIELD_NAME is the name of the field you want to compare. Only atomic field types are supported (string, number, boolean). The COMPARISON_STRING must be either eq (equals) or ne (not equals). The LITERAL_STRING is the string value to filter to. The literal value must be valid for the type of field (string, number, boolean). For string fields, the literal value is interpreted as a regular expression using RE2 syntax. The literal value must match the entire field.
For example, filter=name ne example-instance.
func (*LinuxGetLinuxAccountViewsCall) MaxResults ¶
func (c *LinuxGetLinuxAccountViewsCall) MaxResults(maxResults int64) *LinuxGetLinuxAccountViewsCall
MaxResults sets the optional parameter "maxResults": Maximum count of results to be returned.
func (*LinuxGetLinuxAccountViewsCall) OrderBy ¶
func (c *LinuxGetLinuxAccountViewsCall) OrderBy(orderBy string) *LinuxGetLinuxAccountViewsCall
OrderBy sets the optional parameter "orderBy": Sorts list results by a certain order. By default, results are returned in alphanumerical order based on the resource name.
You can also sort results in descending order based on the creation timestamp using orderBy="creationTimestamp desc". This sorts results based on the creationTimestamp field in reverse chronological order (newest result first). Use this to sort resources like operations so that the newest operation is returned first.
Currently, only sorting by name or creationTimestamp desc is supported.
func (*LinuxGetLinuxAccountViewsCall) PageToken ¶
func (c *LinuxGetLinuxAccountViewsCall) PageToken(pageToken string) *LinuxGetLinuxAccountViewsCall
PageToken sets the optional parameter "pageToken": Specifies a page token to use. Use this parameter if you want to list the next page of results. Set pageToken to the nextPageToken returned by a previous list request.
type LinuxGetLinuxAccountViewsResponse ¶
type LinuxGetLinuxAccountViewsResponse struct { // Resource: [Output Only] A list of authorized user accounts and // groups. Resource *LinuxAccountViews `json:"resource,omitempty"` }
type LinuxGroupView ¶
type LinuxGroupView struct { // Gid: [Output Only] The Group ID. Gid int64 `json:"gid,omitempty"` // GroupName: [Output Only] Group name. GroupName string `json:"groupName,omitempty"` // Members: [Output Only] List of user accounts that belong to the // group. Members []string `json:"members,omitempty"` }
LinuxGroupView: A detailed view of a Linux group.
type LinuxService ¶
type LinuxService struct {
// contains filtered or unexported fields
}
func NewLinuxService ¶
func NewLinuxService(s *Service) *LinuxService
func (*LinuxService) GetAuthorizedKeysView ¶
func (r *LinuxService) GetAuthorizedKeysView(project string, zone string, user string, instance string) *LinuxGetAuthorizedKeysViewCall
GetAuthorizedKeysView: Returns a list of authorized public keys for a specific user account.
func (*LinuxService) GetLinuxAccountViews ¶
func (r *LinuxService) GetLinuxAccountViews(project string, zone string, instance string) *LinuxGetLinuxAccountViewsCall
GetLinuxAccountViews: Retrieves a list of user accounts for an instance within a specific project.
type LinuxUserView ¶
type LinuxUserView struct { // Gecos: [Output Only] The GECOS (user information) entry for this // account. Gecos string `json:"gecos,omitempty"` // Gid: [Output Only] User's default group ID. Gid int64 `json:"gid,omitempty"` // HomeDirectory: [Output Only] The path to the home directory for this // account. HomeDirectory string `json:"homeDirectory,omitempty"` // Shell: [Output Only] The path to the login shell for this account. Shell string `json:"shell,omitempty"` // Uid: [Output Only] User ID. Uid int64 `json:"uid,omitempty"` // Username: [Output Only] The username of the account. Username string `json:"username,omitempty"` }
LinuxUserView: A detailed view of a Linux user account.
type LogConfig ¶
type LogConfig struct { // Counter: Counter options. Counter *LogConfigCounterOptions `json:"counter,omitempty"` }
LogConfig: Specifies what kind of log the caller must write
type LogConfigCounterOptions ¶
type LogConfigCounterOptions struct { // Field: The field value to attribute. Field string `json:"field,omitempty"` // Metric: The metric to update. Metric string `json:"metric,omitempty"` }
LogConfigCounterOptions: Options for counters
type Operation ¶
type Operation struct { // ClientOperationId: [Output Only] An optional identifier specified by // the client when the mutation was initiated. Must be unique for all // Operation resources in the project. ClientOperationId string `json:"clientOperationId,omitempty"` // CreationTimestamp: [Output Only] Creation timestamp in RFC3339 text // format. CreationTimestamp string `json:"creationTimestamp,omitempty"` // EndTime: [Output Only] The time that this operation was completed. // This is in RFC3339 text format. EndTime string `json:"endTime,omitempty"` // Error: [Output Only] If errors are generated during processing of the // operation, this field will be populated. Error *OperationError `json:"error,omitempty"` // HttpErrorMessage: [Output Only] If the operation fails, this field // contains the HTTP error message that was returned, such as NOT FOUND. HttpErrorMessage string `json:"httpErrorMessage,omitempty"` // HttpErrorStatusCode: [Output Only] If the operation fails, this field // contains the HTTP error message that was returned, such as 404. HttpErrorStatusCode int64 `json:"httpErrorStatusCode,omitempty"` // Id: [Output Only] Unique identifier for the resource; defined by the // server. Id uint64 `json:"id,omitempty,string"` // InsertTime: [Output Only] The time that this operation was requested. // This is in RFC3339 text format. InsertTime string `json:"insertTime,omitempty"` // Kind: [Output Only] Type of the resource. Always compute#Operation // for Operation resources. Kind string `json:"kind,omitempty"` // Name: [Output Only] Name of the resource. Name string `json:"name,omitempty"` // OperationType: [Output Only] Type of the operation, such as insert, // update, and delete. OperationType string `json:"operationType,omitempty"` // Progress: [Output Only] An optional progress indicator that ranges // from 0 to 100. There is no requirement that this be linear or support // any granularity of operations. This should not be used to guess at // when the operation will be complete. This number should monotonically // increase as the operation progresses. Progress int64 `json:"progress,omitempty"` // Region: [Output Only] URL of the region where the operation resides. // Only applicable for regional resources. Region string `json:"region,omitempty"` // SelfLink: [Output Only] Server-defined URL for the resource. SelfLink string `json:"selfLink,omitempty"` // StartTime: [Output Only] The time that this operation was started by // the server. This is in RFC3339 text format. StartTime string `json:"startTime,omitempty"` // Status: [Output Only] Status of the operation. Can be one of the // following: PENDING, RUNNING, or DONE. // // Possible values: // "DONE" // "PENDING" // "RUNNING" Status string `json:"status,omitempty"` // StatusMessage: [Output Only] An optional textual description of the // current status of the operation. StatusMessage string `json:"statusMessage,omitempty"` // TargetId: [Output Only] Unique target ID which identifies a // particular incarnation of the target. TargetId uint64 `json:"targetId,omitempty,string"` // TargetLink: [Output Only] URL of the resource the operation is // mutating. TargetLink string `json:"targetLink,omitempty"` // User: [Output Only] User who requested the operation, for example: // user@example.com. User string `json:"user,omitempty"` // Warnings: [Output Only] If warning messages are generated during // processing of the operation, this field will be populated. Warnings []*OperationWarnings `json:"warnings,omitempty"` // Zone: [Output Only] URL of the zone where the operation resides. Zone string `json:"zone,omitempty"` }
Operation: An Operation resource, used to manage asynchronous API requests.
type OperationError ¶
type OperationError struct { // Errors: [Output Only] The array of errors encountered while // processing this operation. Errors []*OperationErrorErrors `json:"errors,omitempty"` }
OperationError: [Output Only] If errors are generated during processing of the operation, this field will be populated.
type OperationErrorErrors ¶
type OperationErrorErrors struct { // Code: [Output Only] The error type identifier for this error. Code string `json:"code,omitempty"` // Location: [Output Only] Indicates the field in the request which // caused the error. This property is optional. Location string `json:"location,omitempty"` // Message: [Output Only] An optional, human-readable error message. Message string `json:"message,omitempty"` }
type OperationList ¶
type OperationList struct { // Id: [Output Only] Unique identifier for the resource; defined by the // server. Id string `json:"id,omitempty"` // Items: [Output Only] The Operation resources. Items []*Operation `json:"items,omitempty"` // Kind: [Output Only] Type of resource. Always compute#operations for // Operations resource. Kind string `json:"kind,omitempty"` // NextPageToken: [Output Only] A token used to continue a truncate. NextPageToken string `json:"nextPageToken,omitempty"` // SelfLink: [Output Only] Server-defined URL for this resource. SelfLink string `json:"selfLink,omitempty"` }
OperationList: Contains a list of Operation resources.
type OperationWarnings ¶
type OperationWarnings struct { // Code: [Output Only] The warning type identifier for this warning. // // Possible values: // "DEPRECATED_RESOURCE_USED" // "DISK_SIZE_LARGER_THAN_IMAGE_SIZE" // "INJECTED_KERNELS_DEPRECATED" // "NEXT_HOP_ADDRESS_NOT_ASSIGNED" // "NEXT_HOP_CANNOT_IP_FORWARD" // "NEXT_HOP_INSTANCE_NOT_FOUND" // "NEXT_HOP_INSTANCE_NOT_ON_NETWORK" // "NEXT_HOP_NOT_RUNNING" // "NOT_CRITICAL_ERROR" // "NO_RESULTS_ON_PAGE" // "REQUIRED_TOS_AGREEMENT" // "RESOURCE_NOT_DELETED" // "SINGLE_INSTANCE_PROPERTY_TEMPLATE" // "UNREACHABLE" Code string `json:"code,omitempty"` // Data: [Output Only] Metadata for this warning in key: value format. Data []*OperationWarningsData `json:"data,omitempty"` // Message: [Output Only] Optional human-readable details for this // warning. Message string `json:"message,omitempty"` }
type OperationWarningsData ¶
type Policy ¶
type Policy struct { // Bindings: Associates a list of `members` to a `role`. Multiple // `bindings` must not be specified for the same `role`. `bindings` with // no members will result in an error. Bindings []*Binding `json:"bindings,omitempty"` // Etag: Can be used to perform a read-modify-write. Etag string `json:"etag,omitempty"` Rules []*Rule `json:"rules,omitempty"` // Version: Version of the `Policy`. The default version is 0. Version int64 `json:"version,omitempty"` }
Policy: Defines an Identity and Access Management (IAM) policy. It is used to specify access control policies for Cloud Platform resources.
A `Policy` consists of a list of `bindings`. A `Binding` binds a list of `members` to a `role`, where the members can be user accounts, Google groups, Google domains, and service accounts. A `role` is a named list of permissions defined by IAM.
**Example**
{ "bindings": [ { "role": "roles/owner", "members": [ "user:mike@example.com", "group:admins@example.com", "domain:google.com", "serviceAccount:my-other-app@appspot.gserviceaccount.com"] }, { "role": "roles/viewer", "members": ["user:sean@example.com"] } ] }
For a description of IAM and its features, see the [IAM developer's guide](https://cloud.google.com/iam).
type PublicKey ¶
type PublicKey struct { // CreationTimestamp: [Output Only] Creation timestamp in RFC3339 text // format. CreationTimestamp string `json:"creationTimestamp,omitempty"` // Description: An optional textual description of the resource; // provided by the client when the resource is created. Description string `json:"description,omitempty"` // ExpirationTimestamp: Optional expiration timestamp. If provided, the // timestamp must be in RFC3339 text format. If not provided, the public // key never expires. ExpirationTimestamp string `json:"expirationTimestamp,omitempty"` // Fingerprint: [Output Only] The fingerprint of the key is defined by // RFC4716 to be the MD5 digest of the public key. Fingerprint string `json:"fingerprint,omitempty"` // Key: Public key text in SSH format, defined by RFC4253 section 6.6. Key string `json:"key,omitempty"` }
PublicKey: A public key for authenticating to guests.
type Rule ¶
type Rule struct { // Action: Required // // Possible values: // "ALLOW" // "ALLOW_WITH_LOG" // "DENY" // "DENY_WITH_LOG" // "LOG" // "NO_ACTION" Action string `json:"action,omitempty"` // Conditions: Additional restrictions that must be met Conditions []*Condition `json:"conditions,omitempty"` // Description: Human-readable description of the rule. Description string `json:"description,omitempty"` // Ins: The rule matches if the PRINCIPAL/AUTHORITY_SELECTOR is in this // set of entries. Ins []string `json:"ins,omitempty"` // LogConfigs: The config returned to callers of // tech.iam.IAM.CheckPolicy for any entries that match the LOG action. LogConfigs []*LogConfig `json:"logConfigs,omitempty"` // NotIns: The rule matches if the PRINCIPAL/AUTHORITY_SELECTOR is not // in this set of entries. NotIns []string `json:"notIns,omitempty"` // Permissions: A permission is a string of form '..' (e.g., // 'storage.buckets.list'). A value of '*' matches all permissions, and // a verb part of '*' (e.g., 'storage.buckets.*') matches all verbs. Permissions []string `json:"permissions,omitempty"` }
Rule: A rule to be applied in a Policy.
type Service ¶
type Service struct { BasePath string // API endpoint base URL UserAgent string // optional additional User-Agent fragment GlobalAccountsOperations *GlobalAccountsOperationsService Groups *GroupsService Linux *LinuxService Users *UsersService // contains filtered or unexported fields }
type TestPermissionsRequest ¶
type TestPermissionsRequest struct { // Permissions: The set of permissions to check for the 'resource'. // Permissions with wildcards (such as '*' or 'storage.*') are not // allowed. Permissions []string `json:"permissions,omitempty"` }
type TestPermissionsResponse ¶
type TestPermissionsResponse struct { // Permissions: A subset of `TestPermissionsRequest.permissions` that // the caller is allowed. Permissions []string `json:"permissions,omitempty"` }
type User ¶
type User struct { // CreationTimestamp: [Output Only] Creation timestamp in RFC3339 text // format. CreationTimestamp string `json:"creationTimestamp,omitempty"` // Description: An optional textual description of the resource; // provided by the client when the resource is created. Description string `json:"description,omitempty"` // Groups: [Output Only] A list of URLs to Group resources who contain // the user. Users are only members of groups in the same project. Groups []string `json:"groups,omitempty"` // Id: [Output Only] Unique identifier for the resource; defined by the // server. Id uint64 `json:"id,omitempty,string"` // Kind: [Output Only] Type of the resource. Always // clouduseraccounts#user for users. Kind string `json:"kind,omitempty"` // Name: Name of the resource; provided by the client when the resource // is created. Name string `json:"name,omitempty"` // Owner: Email address of account's owner. This account will be // validated to make sure it exists. The email can belong to any domain, // but it must be tied to a Google account. Owner string `json:"owner,omitempty"` // PublicKeys: [Output Only] Public keys that this user may use to // login. PublicKeys []*PublicKey `json:"publicKeys,omitempty"` // SelfLink: [Output Only] Server defined URL for the resource. SelfLink string `json:"selfLink,omitempty"` }
User: A User resource.
type UserList ¶
type UserList struct { // Id: [Output Only] Unique identifier for the resource; defined by the // server. Id string `json:"id,omitempty"` // Items: [Output Only] A list of User resources. Items []*User `json:"items,omitempty"` // Kind: [Output Only] Type of resource. Always // clouduseraccounts#userList for lists of users. Kind string `json:"kind,omitempty"` // NextPageToken: [Output Only] A token used to continue a truncated // list request. NextPageToken string `json:"nextPageToken,omitempty"` // SelfLink: [Output Only] Server defined URL for this resource. SelfLink string `json:"selfLink,omitempty"` }
type UsersAddPublicKeyCall ¶
type UsersAddPublicKeyCall struct {
// contains filtered or unexported fields
}
func (*UsersAddPublicKeyCall) Do ¶
func (c *UsersAddPublicKeyCall) Do() (*Operation, error)
func (*UsersAddPublicKeyCall) Fields ¶
func (c *UsersAddPublicKeyCall) Fields(s ...googleapi.Field) *UsersAddPublicKeyCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type UsersDeleteCall ¶
type UsersDeleteCall struct {
// contains filtered or unexported fields
}
func (*UsersDeleteCall) Do ¶
func (c *UsersDeleteCall) Do() (*Operation, error)
func (*UsersDeleteCall) Fields ¶
func (c *UsersDeleteCall) Fields(s ...googleapi.Field) *UsersDeleteCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type UsersGetCall ¶
type UsersGetCall struct {
// contains filtered or unexported fields
}
func (*UsersGetCall) Do ¶
func (c *UsersGetCall) Do() (*User, error)
func (*UsersGetCall) Fields ¶
func (c *UsersGetCall) Fields(s ...googleapi.Field) *UsersGetCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type UsersGetIamPolicyCall ¶
type UsersGetIamPolicyCall struct {
// contains filtered or unexported fields
}
func (*UsersGetIamPolicyCall) Do ¶
func (c *UsersGetIamPolicyCall) Do() (*Policy, error)
func (*UsersGetIamPolicyCall) Fields ¶
func (c *UsersGetIamPolicyCall) Fields(s ...googleapi.Field) *UsersGetIamPolicyCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type UsersInsertCall ¶
type UsersInsertCall struct {
// contains filtered or unexported fields
}
func (*UsersInsertCall) Do ¶
func (c *UsersInsertCall) Do() (*Operation, error)
func (*UsersInsertCall) Fields ¶
func (c *UsersInsertCall) Fields(s ...googleapi.Field) *UsersInsertCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type UsersListCall ¶
type UsersListCall struct {
// contains filtered or unexported fields
}
func (*UsersListCall) Do ¶
func (c *UsersListCall) Do() (*UserList, error)
func (*UsersListCall) Fields ¶
func (c *UsersListCall) Fields(s ...googleapi.Field) *UsersListCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*UsersListCall) Filter ¶
func (c *UsersListCall) Filter(filter string) *UsersListCall
Filter sets the optional parameter "filter": Sets a filter expression for filtering listed resources, in the form filter={expression}. Your {expression} must be in the format: FIELD_NAME COMPARISON_STRING LITERAL_STRING.
The FIELD_NAME is the name of the field you want to compare. Only atomic field types are supported (string, number, boolean). The COMPARISON_STRING must be either eq (equals) or ne (not equals). The LITERAL_STRING is the string value to filter to. The literal value must be valid for the type of field (string, number, boolean). For string fields, the literal value is interpreted as a regular expression using RE2 syntax. The literal value must match the entire field.
For example, filter=name ne example-instance.
func (*UsersListCall) MaxResults ¶
func (c *UsersListCall) MaxResults(maxResults int64) *UsersListCall
MaxResults sets the optional parameter "maxResults": Maximum count of results to be returned.
func (*UsersListCall) OrderBy ¶
func (c *UsersListCall) OrderBy(orderBy string) *UsersListCall
OrderBy sets the optional parameter "orderBy": Sorts list results by a certain order. By default, results are returned in alphanumerical order based on the resource name.
You can also sort results in descending order based on the creation timestamp using orderBy="creationTimestamp desc". This sorts results based on the creationTimestamp field in reverse chronological order (newest result first). Use this to sort resources like operations so that the newest operation is returned first.
Currently, only sorting by name or creationTimestamp desc is supported.
func (*UsersListCall) PageToken ¶
func (c *UsersListCall) PageToken(pageToken string) *UsersListCall
PageToken sets the optional parameter "pageToken": Specifies a page token to use. Use this parameter if you want to list the next page of results. Set pageToken to the nextPageToken returned by a previous list request.
type UsersRemovePublicKeyCall ¶
type UsersRemovePublicKeyCall struct {
// contains filtered or unexported fields
}
func (*UsersRemovePublicKeyCall) Do ¶
func (c *UsersRemovePublicKeyCall) Do() (*Operation, error)
func (*UsersRemovePublicKeyCall) Fields ¶
func (c *UsersRemovePublicKeyCall) Fields(s ...googleapi.Field) *UsersRemovePublicKeyCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type UsersService ¶
type UsersService struct {
// contains filtered or unexported fields
}
func NewUsersService ¶
func NewUsersService(s *Service) *UsersService
func (*UsersService) AddPublicKey ¶
func (r *UsersService) AddPublicKey(project string, user string, publickey *PublicKey) *UsersAddPublicKeyCall
AddPublicKey: Adds a public key to the specified User resource with the data included in the request.
func (*UsersService) Delete ¶
func (r *UsersService) Delete(project string, user string) *UsersDeleteCall
Delete: Deletes the specified User resource.
func (*UsersService) Get ¶
func (r *UsersService) Get(project string, user string) *UsersGetCall
Get: Returns the specified User resource.
func (*UsersService) GetIamPolicy ¶
func (r *UsersService) GetIamPolicy(project string, resource string) *UsersGetIamPolicyCall
GetIamPolicy: Gets the access control policy for a resource. May be empty if no such policy or resource exists.
func (*UsersService) Insert ¶
func (r *UsersService) Insert(project string, user *User) *UsersInsertCall
Insert: Creates a User resource in the specified project using the data included in the request.
func (*UsersService) List ¶
func (r *UsersService) List(project string) *UsersListCall
List: Retrieves a list of users contained within the specified project.
func (*UsersService) RemovePublicKey ¶
func (r *UsersService) RemovePublicKey(project string, user string, fingerprint string) *UsersRemovePublicKeyCall
RemovePublicKey: Removes the specified public key from the user.
func (*UsersService) SetIamPolicy ¶
func (r *UsersService) SetIamPolicy(project string, resource string, policy *Policy) *UsersSetIamPolicyCall
SetIamPolicy: Sets the access control policy on the specified resource. Replaces any existing policy.
func (*UsersService) TestIamPermissions ¶
func (r *UsersService) TestIamPermissions(project string, resource string, testpermissionsrequest *TestPermissionsRequest) *UsersTestIamPermissionsCall
TestIamPermissions: Returns permissions that a caller has on the specified resource.
type UsersSetIamPolicyCall ¶
type UsersSetIamPolicyCall struct {
// contains filtered or unexported fields
}
func (*UsersSetIamPolicyCall) Do ¶
func (c *UsersSetIamPolicyCall) Do() (*Policy, error)
func (*UsersSetIamPolicyCall) Fields ¶
func (c *UsersSetIamPolicyCall) Fields(s ...googleapi.Field) *UsersSetIamPolicyCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type UsersTestIamPermissionsCall ¶
type UsersTestIamPermissionsCall struct {
// contains filtered or unexported fields
}
func (*UsersTestIamPermissionsCall) Do ¶
func (c *UsersTestIamPermissionsCall) Do() (*TestPermissionsResponse, error)
func (*UsersTestIamPermissionsCall) Fields ¶
func (c *UsersTestIamPermissionsCall) Fields(s ...googleapi.Field) *UsersTestIamPermissionsCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.