mirror of
https://github.com/Luzifer/nginx-sso.git
synced 2024-12-21 05:11:17 +00:00
849 lines
29 KiB
Go
849 lines
29 KiB
Go
// Copyright 2019 Google LLC.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// Code generated file. DO NOT EDIT.
|
|
|
|
// Package groupssettings provides access to the Groups Settings API.
|
|
//
|
|
// For product documentation, see: https://developers.google.com/google-apps/groups-settings/get_started
|
|
//
|
|
// Creating a client
|
|
//
|
|
// Usage example:
|
|
//
|
|
// import "google.golang.org/api/groupssettings/v1"
|
|
// ...
|
|
// ctx := context.Background()
|
|
// groupssettingsService, err := groupssettings.NewService(ctx)
|
|
//
|
|
// In this example, Google Application Default Credentials are used for authentication.
|
|
//
|
|
// For information on how to create and obtain Application Default Credentials, see https://developers.google.com/identity/protocols/application-default-credentials.
|
|
//
|
|
// Other authentication options
|
|
//
|
|
// To use an API key for authentication (note: some APIs do not support API keys), use option.WithAPIKey:
|
|
//
|
|
// groupssettingsService, err := groupssettings.NewService(ctx, option.WithAPIKey("AIza..."))
|
|
//
|
|
// To use an OAuth token (e.g., a user token obtained via a three-legged OAuth flow), use option.WithTokenSource:
|
|
//
|
|
// config := &oauth2.Config{...}
|
|
// // ...
|
|
// token, err := config.Exchange(ctx, ...)
|
|
// groupssettingsService, err := groupssettings.NewService(ctx, option.WithTokenSource(config.TokenSource(ctx, token)))
|
|
//
|
|
// See https://godoc.org/google.golang.org/api/option/ for details on options.
|
|
package groupssettings // import "google.golang.org/api/groupssettings/v1"
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"encoding/json"
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"net/http"
|
|
"net/url"
|
|
"strconv"
|
|
"strings"
|
|
|
|
gensupport "google.golang.org/api/gensupport"
|
|
googleapi "google.golang.org/api/googleapi"
|
|
option "google.golang.org/api/option"
|
|
htransport "google.golang.org/api/transport/http"
|
|
)
|
|
|
|
// Always reference these packages, just in case the auto-generated code
|
|
// below doesn't.
|
|
var _ = bytes.NewBuffer
|
|
var _ = strconv.Itoa
|
|
var _ = fmt.Sprintf
|
|
var _ = json.NewDecoder
|
|
var _ = io.Copy
|
|
var _ = url.Parse
|
|
var _ = gensupport.MarshalJSON
|
|
var _ = googleapi.Version
|
|
var _ = errors.New
|
|
var _ = strings.Replace
|
|
var _ = context.Canceled
|
|
|
|
const apiId = "groupssettings:v1"
|
|
const apiName = "groupssettings"
|
|
const apiVersion = "v1"
|
|
const basePath = "https://www.googleapis.com/groups/v1/groups/"
|
|
|
|
// OAuth2 scopes used by this API.
|
|
const (
|
|
// View and manage the settings of a G Suite group
|
|
AppsGroupsSettingsScope = "https://www.googleapis.com/auth/apps.groups.settings"
|
|
)
|
|
|
|
// NewService creates a new Service.
|
|
func NewService(ctx context.Context, opts ...option.ClientOption) (*Service, error) {
|
|
scopesOption := option.WithScopes(
|
|
"https://www.googleapis.com/auth/apps.groups.settings",
|
|
)
|
|
// NOTE: prepend, so we don't override user-specified scopes.
|
|
opts = append([]option.ClientOption{scopesOption}, opts...)
|
|
client, endpoint, err := htransport.NewClient(ctx, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
s, err := New(client)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if endpoint != "" {
|
|
s.BasePath = endpoint
|
|
}
|
|
return s, nil
|
|
}
|
|
|
|
// New creates a new Service. It uses the provided http.Client for requests.
|
|
//
|
|
// Deprecated: please use NewService instead.
|
|
// To provide a custom HTTP client, use option.WithHTTPClient.
|
|
// If you are using google.golang.org/api/googleapis/transport.APIKey, use option.WithAPIKey with NewService instead.
|
|
func New(client *http.Client) (*Service, error) {
|
|
if client == nil {
|
|
return nil, errors.New("client is nil")
|
|
}
|
|
s := &Service{client: client, BasePath: basePath}
|
|
s.Groups = NewGroupsService(s)
|
|
return s, nil
|
|
}
|
|
|
|
type Service struct {
|
|
client *http.Client
|
|
BasePath string // API endpoint base URL
|
|
UserAgent string // optional additional User-Agent fragment
|
|
|
|
Groups *GroupsService
|
|
}
|
|
|
|
func (s *Service) userAgent() string {
|
|
if s.UserAgent == "" {
|
|
return googleapi.UserAgent
|
|
}
|
|
return googleapi.UserAgent + " " + s.UserAgent
|
|
}
|
|
|
|
func NewGroupsService(s *Service) *GroupsService {
|
|
rs := &GroupsService{s: s}
|
|
return rs
|
|
}
|
|
|
|
type GroupsService struct {
|
|
s *Service
|
|
}
|
|
|
|
// Groups: JSON template for Group resource
|
|
type Groups struct {
|
|
// AllowExternalMembers: Are external members allowed to join the group.
|
|
AllowExternalMembers string `json:"allowExternalMembers,omitempty"`
|
|
|
|
// AllowGoogleCommunication: Is google allowed to contact admins.
|
|
AllowGoogleCommunication string `json:"allowGoogleCommunication,omitempty"`
|
|
|
|
// AllowWebPosting: If posting from web is allowed.
|
|
AllowWebPosting string `json:"allowWebPosting,omitempty"`
|
|
|
|
// ArchiveOnly: If the group is archive only
|
|
ArchiveOnly string `json:"archiveOnly,omitempty"`
|
|
|
|
// CustomFooterText: Custom footer text.
|
|
CustomFooterText string `json:"customFooterText,omitempty"`
|
|
|
|
// CustomReplyTo: Default email to which reply to any message should go.
|
|
CustomReplyTo string `json:"customReplyTo,omitempty"`
|
|
|
|
// CustomRolesEnabledForSettingsToBeMerged: If any of the settings that
|
|
// will be merged have custom roles which is anything other than owners,
|
|
// managers, or group scopes.
|
|
CustomRolesEnabledForSettingsToBeMerged string `json:"customRolesEnabledForSettingsToBeMerged,omitempty"`
|
|
|
|
// DefaultMessageDenyNotificationText: Default message deny notification
|
|
// message
|
|
DefaultMessageDenyNotificationText string `json:"defaultMessageDenyNotificationText,omitempty"`
|
|
|
|
// Description: Description of the group
|
|
Description string `json:"description,omitempty"`
|
|
|
|
// Email: Email id of the group
|
|
Email string `json:"email,omitempty"`
|
|
|
|
// EnableCollaborativeInbox: If a primary Collab Inbox feature is
|
|
// enabled.
|
|
EnableCollaborativeInbox string `json:"enableCollaborativeInbox,omitempty"`
|
|
|
|
// FavoriteRepliesOnTop: If favorite replies should be displayed above
|
|
// other replies.
|
|
FavoriteRepliesOnTop string `json:"favoriteRepliesOnTop,omitempty"`
|
|
|
|
// IncludeCustomFooter: Whether to include custom footer.
|
|
IncludeCustomFooter string `json:"includeCustomFooter,omitempty"`
|
|
|
|
// IncludeInGlobalAddressList: If this groups should be included in
|
|
// global address list or not.
|
|
IncludeInGlobalAddressList string `json:"includeInGlobalAddressList,omitempty"`
|
|
|
|
// IsArchived: If the contents of the group are archived.
|
|
IsArchived string `json:"isArchived,omitempty"`
|
|
|
|
// Kind: The type of the resource.
|
|
Kind string `json:"kind,omitempty"`
|
|
|
|
// MaxMessageBytes: Maximum message size allowed.
|
|
MaxMessageBytes int64 `json:"maxMessageBytes,omitempty"`
|
|
|
|
// MembersCanPostAsTheGroup: Can members post using the group email
|
|
// address.
|
|
MembersCanPostAsTheGroup string `json:"membersCanPostAsTheGroup,omitempty"`
|
|
|
|
// MessageDisplayFont: Default message display font. Possible values
|
|
// are: DEFAULT_FONT FIXED_WIDTH_FONT
|
|
MessageDisplayFont string `json:"messageDisplayFont,omitempty"`
|
|
|
|
// MessageModerationLevel: Moderation level for messages. Possible
|
|
// values are: MODERATE_ALL_MESSAGES MODERATE_NON_MEMBERS
|
|
// MODERATE_NEW_MEMBERS MODERATE_NONE
|
|
MessageModerationLevel string `json:"messageModerationLevel,omitempty"`
|
|
|
|
// Name: Name of the Group
|
|
Name string `json:"name,omitempty"`
|
|
|
|
// PrimaryLanguage: Primary language for the group.
|
|
PrimaryLanguage string `json:"primaryLanguage,omitempty"`
|
|
|
|
// ReplyTo: Whome should the default reply to a message go to. Possible
|
|
// values are: REPLY_TO_CUSTOM REPLY_TO_SENDER REPLY_TO_LIST
|
|
// REPLY_TO_OWNER REPLY_TO_IGNORE REPLY_TO_MANAGERS
|
|
ReplyTo string `json:"replyTo,omitempty"`
|
|
|
|
// SendMessageDenyNotification: Should the member be notified if his
|
|
// message is denied by owner.
|
|
SendMessageDenyNotification string `json:"sendMessageDenyNotification,omitempty"`
|
|
|
|
// ShowInGroupDirectory: Is the group listed in groups directory
|
|
ShowInGroupDirectory string `json:"showInGroupDirectory,omitempty"`
|
|
|
|
// SpamModerationLevel: Moderation level for messages detected as spam.
|
|
// Possible values are: ALLOW MODERATE SILENTLY_MODERATE REJECT
|
|
SpamModerationLevel string `json:"spamModerationLevel,omitempty"`
|
|
|
|
// WhoCanAdd: Permissions to add members. Possible values are:
|
|
// ALL_MANAGERS_CAN_ADD ALL_OWNERS_CAN_ADD ALL_MEMBERS_CAN_ADD
|
|
// NONE_CAN_ADD
|
|
WhoCanAdd string `json:"whoCanAdd,omitempty"`
|
|
|
|
// WhoCanAddReferences: Permission to add references to a topic.
|
|
// Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY
|
|
// OWNERS_AND_MANAGERS ALL_MEMBERS
|
|
WhoCanAddReferences string `json:"whoCanAddReferences,omitempty"`
|
|
|
|
// WhoCanApproveMembers: Permission to approve members. Possible values
|
|
// are: ALL_OWNERS_CAN_APPROVE ALL_MANAGERS_CAN_APPROVE
|
|
// ALL_MEMBERS_CAN_APPROVE NONE_CAN_APPROVE
|
|
WhoCanApproveMembers string `json:"whoCanApproveMembers,omitempty"`
|
|
|
|
// WhoCanApproveMessages: Permission to approve pending messages in the
|
|
// moderation queue. Possible values are: NONE OWNERS_ONLY
|
|
// OWNERS_AND_MANAGERS ALL_MEMBERS
|
|
WhoCanApproveMessages string `json:"whoCanApproveMessages,omitempty"`
|
|
|
|
// WhoCanAssignTopics: Permission to assign topics in a forum to another
|
|
// user. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY
|
|
// OWNERS_AND_MANAGERS ALL_MEMBERS
|
|
WhoCanAssignTopics string `json:"whoCanAssignTopics,omitempty"`
|
|
|
|
// WhoCanAssistContent: Permission for content assistants. Possible
|
|
// values are: Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY
|
|
// OWNERS_AND_MANAGERS ALL_MEMBERS
|
|
WhoCanAssistContent string `json:"whoCanAssistContent,omitempty"`
|
|
|
|
// WhoCanBanUsers: Permission to ban users. Possible values are: NONE
|
|
// OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS
|
|
WhoCanBanUsers string `json:"whoCanBanUsers,omitempty"`
|
|
|
|
// WhoCanContactOwner: Permission to contact owner of the group via web
|
|
// UI. Possible values are: ANYONE_CAN_CONTACT ALL_IN_DOMAIN_CAN_CONTACT
|
|
// ALL_MEMBERS_CAN_CONTACT ALL_MANAGERS_CAN_CONTACT
|
|
WhoCanContactOwner string `json:"whoCanContactOwner,omitempty"`
|
|
|
|
// WhoCanDeleteAnyPost: Permission to delete replies to topics. Possible
|
|
// values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS
|
|
WhoCanDeleteAnyPost string `json:"whoCanDeleteAnyPost,omitempty"`
|
|
|
|
// WhoCanDeleteTopics: Permission to delete topics. Possible values are:
|
|
// NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS
|
|
WhoCanDeleteTopics string `json:"whoCanDeleteTopics,omitempty"`
|
|
|
|
// WhoCanDiscoverGroup: Permission for who can discover the group.
|
|
// Possible values are: ALL_MEMBERS_CAN_DISCOVER
|
|
// ALL_IN_DOMAIN_CAN_DISCOVER ANYONE_CAN_DISCOVER
|
|
WhoCanDiscoverGroup string `json:"whoCanDiscoverGroup,omitempty"`
|
|
|
|
// WhoCanEnterFreeFormTags: Permission to enter free form tags for
|
|
// topics in a forum. Possible values are: NONE OWNERS_ONLY
|
|
// MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS
|
|
WhoCanEnterFreeFormTags string `json:"whoCanEnterFreeFormTags,omitempty"`
|
|
|
|
// WhoCanHideAbuse: Permission to hide posts by reporting them as abuse.
|
|
// Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY
|
|
// OWNERS_AND_MANAGERS ALL_MEMBERS
|
|
WhoCanHideAbuse string `json:"whoCanHideAbuse,omitempty"`
|
|
|
|
// WhoCanInvite: Permissions to invite members. Possible values are:
|
|
// ALL_MEMBERS_CAN_INVITE ALL_MANAGERS_CAN_INVITE ALL_OWNERS_CAN_INVITE
|
|
// NONE_CAN_INVITE
|
|
WhoCanInvite string `json:"whoCanInvite,omitempty"`
|
|
|
|
// WhoCanJoin: Permissions to join the group. Possible values are:
|
|
// ANYONE_CAN_JOIN ALL_IN_DOMAIN_CAN_JOIN INVITED_CAN_JOIN
|
|
// CAN_REQUEST_TO_JOIN
|
|
WhoCanJoin string `json:"whoCanJoin,omitempty"`
|
|
|
|
// WhoCanLeaveGroup: Permission to leave the group. Possible values are:
|
|
// ALL_MANAGERS_CAN_LEAVE ALL_OWNERS_CAN_LEAVE ALL_MEMBERS_CAN_LEAVE
|
|
// NONE_CAN_LEAVE
|
|
WhoCanLeaveGroup string `json:"whoCanLeaveGroup,omitempty"`
|
|
|
|
// WhoCanLockTopics: Permission to lock topics. Possible values are:
|
|
// NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS
|
|
WhoCanLockTopics string `json:"whoCanLockTopics,omitempty"`
|
|
|
|
// WhoCanMakeTopicsSticky: Permission to make topics appear at the top
|
|
// of the topic list. Possible values are: NONE OWNERS_ONLY
|
|
// MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS
|
|
WhoCanMakeTopicsSticky string `json:"whoCanMakeTopicsSticky,omitempty"`
|
|
|
|
// WhoCanMarkDuplicate: Permission to mark a topic as a duplicate of
|
|
// another topic. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY
|
|
// OWNERS_AND_MANAGERS ALL_MEMBERS
|
|
WhoCanMarkDuplicate string `json:"whoCanMarkDuplicate,omitempty"`
|
|
|
|
// WhoCanMarkFavoriteReplyOnAnyTopic: Permission to mark any other
|
|
// user's post as a favorite reply. Possible values are: NONE
|
|
// OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS
|
|
WhoCanMarkFavoriteReplyOnAnyTopic string `json:"whoCanMarkFavoriteReplyOnAnyTopic,omitempty"`
|
|
|
|
// WhoCanMarkFavoriteReplyOnOwnTopic: Permission to mark a post for a
|
|
// topic they started as a favorite reply. Possible values are: NONE
|
|
// OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS
|
|
WhoCanMarkFavoriteReplyOnOwnTopic string `json:"whoCanMarkFavoriteReplyOnOwnTopic,omitempty"`
|
|
|
|
// WhoCanMarkNoResponseNeeded: Permission to mark a topic as not needing
|
|
// a response. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY
|
|
// OWNERS_AND_MANAGERS ALL_MEMBERS
|
|
WhoCanMarkNoResponseNeeded string `json:"whoCanMarkNoResponseNeeded,omitempty"`
|
|
|
|
// WhoCanModerateContent: Permission for content moderation. Possible
|
|
// values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS
|
|
WhoCanModerateContent string `json:"whoCanModerateContent,omitempty"`
|
|
|
|
// WhoCanModerateMembers: Permission for membership moderation. Possible
|
|
// values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS
|
|
WhoCanModerateMembers string `json:"whoCanModerateMembers,omitempty"`
|
|
|
|
// WhoCanModifyMembers: Permission to modify members (change member
|
|
// roles). Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS
|
|
// ALL_MEMBERS
|
|
WhoCanModifyMembers string `json:"whoCanModifyMembers,omitempty"`
|
|
|
|
// WhoCanModifyTagsAndCategories: Permission to change tags and
|
|
// categories. Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY
|
|
// OWNERS_AND_MANAGERS ALL_MEMBERS
|
|
WhoCanModifyTagsAndCategories string `json:"whoCanModifyTagsAndCategories,omitempty"`
|
|
|
|
// WhoCanMoveTopicsIn: Permission to move topics into the group or
|
|
// forum. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS
|
|
// ALL_MEMBERS
|
|
WhoCanMoveTopicsIn string `json:"whoCanMoveTopicsIn,omitempty"`
|
|
|
|
// WhoCanMoveTopicsOut: Permission to move topics out of the group or
|
|
// forum. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS
|
|
// ALL_MEMBERS
|
|
WhoCanMoveTopicsOut string `json:"whoCanMoveTopicsOut,omitempty"`
|
|
|
|
// WhoCanPostAnnouncements: Permission to post announcements, a special
|
|
// topic type. Possible values are: NONE OWNERS_ONLY OWNERS_AND_MANAGERS
|
|
// ALL_MEMBERS
|
|
WhoCanPostAnnouncements string `json:"whoCanPostAnnouncements,omitempty"`
|
|
|
|
// WhoCanPostMessage: Permissions to post messages to the group.
|
|
// Possible values are: NONE_CAN_POST ALL_MANAGERS_CAN_POST
|
|
// ALL_MEMBERS_CAN_POST ALL_OWNERS_CAN_POST ALL_IN_DOMAIN_CAN_POST
|
|
// ANYONE_CAN_POST
|
|
WhoCanPostMessage string `json:"whoCanPostMessage,omitempty"`
|
|
|
|
// WhoCanTakeTopics: Permission to take topics in a forum. Possible
|
|
// values are: NONE OWNERS_ONLY MANAGERS_ONLY OWNERS_AND_MANAGERS
|
|
// ALL_MEMBERS
|
|
WhoCanTakeTopics string `json:"whoCanTakeTopics,omitempty"`
|
|
|
|
// WhoCanUnassignTopic: Permission to unassign any topic in a forum.
|
|
// Possible values are: NONE OWNERS_ONLY MANAGERS_ONLY
|
|
// OWNERS_AND_MANAGERS ALL_MEMBERS
|
|
WhoCanUnassignTopic string `json:"whoCanUnassignTopic,omitempty"`
|
|
|
|
// WhoCanUnmarkFavoriteReplyOnAnyTopic: Permission to unmark any post
|
|
// from a favorite reply. Possible values are: NONE OWNERS_ONLY
|
|
// MANAGERS_ONLY OWNERS_AND_MANAGERS ALL_MEMBERS
|
|
WhoCanUnmarkFavoriteReplyOnAnyTopic string `json:"whoCanUnmarkFavoriteReplyOnAnyTopic,omitempty"`
|
|
|
|
// WhoCanViewGroup: Permissions to view group. Possible values are:
|
|
// ANYONE_CAN_VIEW ALL_IN_DOMAIN_CAN_VIEW ALL_MEMBERS_CAN_VIEW
|
|
// ALL_MANAGERS_CAN_VIEW ALL_OWNERS_CAN_VIEW
|
|
WhoCanViewGroup string `json:"whoCanViewGroup,omitempty"`
|
|
|
|
// WhoCanViewMembership: Permissions to view membership. Possible values
|
|
// are: ALL_IN_DOMAIN_CAN_VIEW ALL_MEMBERS_CAN_VIEW
|
|
// ALL_MANAGERS_CAN_VIEW ALL_OWNERS_CAN_VIEW
|
|
WhoCanViewMembership string `json:"whoCanViewMembership,omitempty"`
|
|
|
|
// ServerResponse contains the HTTP response code and headers from the
|
|
// server.
|
|
googleapi.ServerResponse `json:"-"`
|
|
|
|
// ForceSendFields is a list of field names (e.g.
|
|
// "AllowExternalMembers") to unconditionally include in API requests.
|
|
// By default, fields with empty values are omitted from API requests.
|
|
// However, any non-pointer, non-interface field appearing in
|
|
// ForceSendFields will be sent to the server regardless of whether the
|
|
// field is empty or not. This may be used to include empty fields in
|
|
// Patch requests.
|
|
ForceSendFields []string `json:"-"`
|
|
|
|
// NullFields is a list of field names (e.g. "AllowExternalMembers") to
|
|
// include in API requests with the JSON null value. By default, fields
|
|
// with empty values are omitted from API requests. However, any field
|
|
// with an empty value appearing in NullFields will be sent to the
|
|
// server as null. It is an error if a field in this list has a
|
|
// non-empty value. This may be used to include null fields in Patch
|
|
// requests.
|
|
NullFields []string `json:"-"`
|
|
}
|
|
|
|
func (s *Groups) MarshalJSON() ([]byte, error) {
|
|
type NoMethod Groups
|
|
raw := NoMethod(*s)
|
|
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
|
|
}
|
|
|
|
// method id "groupsSettings.groups.get":
|
|
|
|
type GroupsGetCall struct {
|
|
s *Service
|
|
groupUniqueId string
|
|
urlParams_ gensupport.URLParams
|
|
ifNoneMatch_ string
|
|
ctx_ context.Context
|
|
header_ http.Header
|
|
}
|
|
|
|
// Get: Gets one resource by id.
|
|
func (r *GroupsService) Get(groupUniqueId string) *GroupsGetCall {
|
|
c := &GroupsGetCall{s: r.s, urlParams_: make(gensupport.URLParams)}
|
|
c.groupUniqueId = groupUniqueId
|
|
return c
|
|
}
|
|
|
|
// Fields allows partial responses to be retrieved. See
|
|
// https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
|
|
// for more information.
|
|
func (c *GroupsGetCall) Fields(s ...googleapi.Field) *GroupsGetCall {
|
|
c.urlParams_.Set("fields", googleapi.CombineFields(s))
|
|
return c
|
|
}
|
|
|
|
// IfNoneMatch sets the optional parameter which makes the operation
|
|
// fail if the object's ETag matches the given value. This is useful for
|
|
// getting updates only after the object has changed since the last
|
|
// request. Use googleapi.IsNotModified to check whether the response
|
|
// error from Do is the result of In-None-Match.
|
|
func (c *GroupsGetCall) IfNoneMatch(entityTag string) *GroupsGetCall {
|
|
c.ifNoneMatch_ = entityTag
|
|
return c
|
|
}
|
|
|
|
// Context sets the context to be used in this call's Do method. Any
|
|
// pending HTTP request will be aborted if the provided context is
|
|
// canceled.
|
|
func (c *GroupsGetCall) Context(ctx context.Context) *GroupsGetCall {
|
|
c.ctx_ = ctx
|
|
return c
|
|
}
|
|
|
|
// Header returns an http.Header that can be modified by the caller to
|
|
// add HTTP headers to the request.
|
|
func (c *GroupsGetCall) Header() http.Header {
|
|
if c.header_ == nil {
|
|
c.header_ = make(http.Header)
|
|
}
|
|
return c.header_
|
|
}
|
|
|
|
func (c *GroupsGetCall) doRequest(alt string) (*http.Response, error) {
|
|
reqHeaders := make(http.Header)
|
|
for k, v := range c.header_ {
|
|
reqHeaders[k] = v
|
|
}
|
|
reqHeaders.Set("User-Agent", c.s.userAgent())
|
|
if c.ifNoneMatch_ != "" {
|
|
reqHeaders.Set("If-None-Match", c.ifNoneMatch_)
|
|
}
|
|
var body io.Reader = nil
|
|
c.urlParams_.Set("alt", alt)
|
|
c.urlParams_.Set("prettyPrint", "false")
|
|
urls := googleapi.ResolveRelative(c.s.BasePath, "{groupUniqueId}")
|
|
urls += "?" + c.urlParams_.Encode()
|
|
req, err := http.NewRequest("GET", urls, body)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
req.Header = reqHeaders
|
|
googleapi.Expand(req.URL, map[string]string{
|
|
"groupUniqueId": c.groupUniqueId,
|
|
})
|
|
return gensupport.SendRequest(c.ctx_, c.s.client, req)
|
|
}
|
|
|
|
// Do executes the "groupsSettings.groups.get" call.
|
|
// Exactly one of *Groups or error will be non-nil. Any non-2xx status
|
|
// code is an error. Response headers are in either
|
|
// *Groups.ServerResponse.Header or (if a response was returned at all)
|
|
// in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to
|
|
// check whether the returned error was because http.StatusNotModified
|
|
// was returned.
|
|
func (c *GroupsGetCall) Do(opts ...googleapi.CallOption) (*Groups, error) {
|
|
gensupport.SetOptions(c.urlParams_, opts...)
|
|
res, err := c.doRequest("json")
|
|
if res != nil && res.StatusCode == http.StatusNotModified {
|
|
if res.Body != nil {
|
|
res.Body.Close()
|
|
}
|
|
return nil, &googleapi.Error{
|
|
Code: res.StatusCode,
|
|
Header: res.Header,
|
|
}
|
|
}
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer googleapi.CloseBody(res)
|
|
if err := googleapi.CheckResponse(res); err != nil {
|
|
return nil, err
|
|
}
|
|
ret := &Groups{
|
|
ServerResponse: googleapi.ServerResponse{
|
|
Header: res.Header,
|
|
HTTPStatusCode: res.StatusCode,
|
|
},
|
|
}
|
|
target := &ret
|
|
if err := gensupport.DecodeResponse(target, res); err != nil {
|
|
return nil, err
|
|
}
|
|
return ret, nil
|
|
// {
|
|
// "description": "Gets one resource by id.",
|
|
// "httpMethod": "GET",
|
|
// "id": "groupsSettings.groups.get",
|
|
// "parameterOrder": [
|
|
// "groupUniqueId"
|
|
// ],
|
|
// "parameters": {
|
|
// "groupUniqueId": {
|
|
// "description": "The resource ID",
|
|
// "location": "path",
|
|
// "required": true,
|
|
// "type": "string"
|
|
// }
|
|
// },
|
|
// "path": "{groupUniqueId}",
|
|
// "response": {
|
|
// "$ref": "Groups"
|
|
// },
|
|
// "scopes": [
|
|
// "https://www.googleapis.com/auth/apps.groups.settings"
|
|
// ]
|
|
// }
|
|
|
|
}
|
|
|
|
// method id "groupsSettings.groups.patch":
|
|
|
|
type GroupsPatchCall struct {
|
|
s *Service
|
|
groupUniqueId string
|
|
groups *Groups
|
|
urlParams_ gensupport.URLParams
|
|
ctx_ context.Context
|
|
header_ http.Header
|
|
}
|
|
|
|
// Patch: Updates an existing resource. This method supports patch
|
|
// semantics.
|
|
func (r *GroupsService) Patch(groupUniqueId string, groups *Groups) *GroupsPatchCall {
|
|
c := &GroupsPatchCall{s: r.s, urlParams_: make(gensupport.URLParams)}
|
|
c.groupUniqueId = groupUniqueId
|
|
c.groups = groups
|
|
return c
|
|
}
|
|
|
|
// Fields allows partial responses to be retrieved. See
|
|
// https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
|
|
// for more information.
|
|
func (c *GroupsPatchCall) Fields(s ...googleapi.Field) *GroupsPatchCall {
|
|
c.urlParams_.Set("fields", googleapi.CombineFields(s))
|
|
return c
|
|
}
|
|
|
|
// Context sets the context to be used in this call's Do method. Any
|
|
// pending HTTP request will be aborted if the provided context is
|
|
// canceled.
|
|
func (c *GroupsPatchCall) Context(ctx context.Context) *GroupsPatchCall {
|
|
c.ctx_ = ctx
|
|
return c
|
|
}
|
|
|
|
// Header returns an http.Header that can be modified by the caller to
|
|
// add HTTP headers to the request.
|
|
func (c *GroupsPatchCall) Header() http.Header {
|
|
if c.header_ == nil {
|
|
c.header_ = make(http.Header)
|
|
}
|
|
return c.header_
|
|
}
|
|
|
|
func (c *GroupsPatchCall) doRequest(alt string) (*http.Response, error) {
|
|
reqHeaders := make(http.Header)
|
|
for k, v := range c.header_ {
|
|
reqHeaders[k] = v
|
|
}
|
|
reqHeaders.Set("User-Agent", c.s.userAgent())
|
|
var body io.Reader = nil
|
|
body, err := googleapi.WithoutDataWrapper.JSONReader(c.groups)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
reqHeaders.Set("Content-Type", "application/json")
|
|
c.urlParams_.Set("alt", alt)
|
|
c.urlParams_.Set("prettyPrint", "false")
|
|
urls := googleapi.ResolveRelative(c.s.BasePath, "{groupUniqueId}")
|
|
urls += "?" + c.urlParams_.Encode()
|
|
req, err := http.NewRequest("PATCH", urls, body)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
req.Header = reqHeaders
|
|
googleapi.Expand(req.URL, map[string]string{
|
|
"groupUniqueId": c.groupUniqueId,
|
|
})
|
|
return gensupport.SendRequest(c.ctx_, c.s.client, req)
|
|
}
|
|
|
|
// Do executes the "groupsSettings.groups.patch" call.
|
|
// Exactly one of *Groups or error will be non-nil. Any non-2xx status
|
|
// code is an error. Response headers are in either
|
|
// *Groups.ServerResponse.Header or (if a response was returned at all)
|
|
// in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to
|
|
// check whether the returned error was because http.StatusNotModified
|
|
// was returned.
|
|
func (c *GroupsPatchCall) Do(opts ...googleapi.CallOption) (*Groups, error) {
|
|
gensupport.SetOptions(c.urlParams_, opts...)
|
|
res, err := c.doRequest("json")
|
|
if res != nil && res.StatusCode == http.StatusNotModified {
|
|
if res.Body != nil {
|
|
res.Body.Close()
|
|
}
|
|
return nil, &googleapi.Error{
|
|
Code: res.StatusCode,
|
|
Header: res.Header,
|
|
}
|
|
}
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer googleapi.CloseBody(res)
|
|
if err := googleapi.CheckResponse(res); err != nil {
|
|
return nil, err
|
|
}
|
|
ret := &Groups{
|
|
ServerResponse: googleapi.ServerResponse{
|
|
Header: res.Header,
|
|
HTTPStatusCode: res.StatusCode,
|
|
},
|
|
}
|
|
target := &ret
|
|
if err := gensupport.DecodeResponse(target, res); err != nil {
|
|
return nil, err
|
|
}
|
|
return ret, nil
|
|
// {
|
|
// "description": "Updates an existing resource. This method supports patch semantics.",
|
|
// "httpMethod": "PATCH",
|
|
// "id": "groupsSettings.groups.patch",
|
|
// "parameterOrder": [
|
|
// "groupUniqueId"
|
|
// ],
|
|
// "parameters": {
|
|
// "groupUniqueId": {
|
|
// "description": "The resource ID",
|
|
// "location": "path",
|
|
// "required": true,
|
|
// "type": "string"
|
|
// }
|
|
// },
|
|
// "path": "{groupUniqueId}",
|
|
// "request": {
|
|
// "$ref": "Groups"
|
|
// },
|
|
// "response": {
|
|
// "$ref": "Groups"
|
|
// },
|
|
// "scopes": [
|
|
// "https://www.googleapis.com/auth/apps.groups.settings"
|
|
// ]
|
|
// }
|
|
|
|
}
|
|
|
|
// method id "groupsSettings.groups.update":
|
|
|
|
type GroupsUpdateCall struct {
|
|
s *Service
|
|
groupUniqueId string
|
|
groups *Groups
|
|
urlParams_ gensupport.URLParams
|
|
ctx_ context.Context
|
|
header_ http.Header
|
|
}
|
|
|
|
// Update: Updates an existing resource.
|
|
func (r *GroupsService) Update(groupUniqueId string, groups *Groups) *GroupsUpdateCall {
|
|
c := &GroupsUpdateCall{s: r.s, urlParams_: make(gensupport.URLParams)}
|
|
c.groupUniqueId = groupUniqueId
|
|
c.groups = groups
|
|
return c
|
|
}
|
|
|
|
// Fields allows partial responses to be retrieved. See
|
|
// https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
|
|
// for more information.
|
|
func (c *GroupsUpdateCall) Fields(s ...googleapi.Field) *GroupsUpdateCall {
|
|
c.urlParams_.Set("fields", googleapi.CombineFields(s))
|
|
return c
|
|
}
|
|
|
|
// Context sets the context to be used in this call's Do method. Any
|
|
// pending HTTP request will be aborted if the provided context is
|
|
// canceled.
|
|
func (c *GroupsUpdateCall) Context(ctx context.Context) *GroupsUpdateCall {
|
|
c.ctx_ = ctx
|
|
return c
|
|
}
|
|
|
|
// Header returns an http.Header that can be modified by the caller to
|
|
// add HTTP headers to the request.
|
|
func (c *GroupsUpdateCall) Header() http.Header {
|
|
if c.header_ == nil {
|
|
c.header_ = make(http.Header)
|
|
}
|
|
return c.header_
|
|
}
|
|
|
|
func (c *GroupsUpdateCall) doRequest(alt string) (*http.Response, error) {
|
|
reqHeaders := make(http.Header)
|
|
for k, v := range c.header_ {
|
|
reqHeaders[k] = v
|
|
}
|
|
reqHeaders.Set("User-Agent", c.s.userAgent())
|
|
var body io.Reader = nil
|
|
body, err := googleapi.WithoutDataWrapper.JSONReader(c.groups)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
reqHeaders.Set("Content-Type", "application/json")
|
|
c.urlParams_.Set("alt", alt)
|
|
c.urlParams_.Set("prettyPrint", "false")
|
|
urls := googleapi.ResolveRelative(c.s.BasePath, "{groupUniqueId}")
|
|
urls += "?" + c.urlParams_.Encode()
|
|
req, err := http.NewRequest("PUT", urls, body)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
req.Header = reqHeaders
|
|
googleapi.Expand(req.URL, map[string]string{
|
|
"groupUniqueId": c.groupUniqueId,
|
|
})
|
|
return gensupport.SendRequest(c.ctx_, c.s.client, req)
|
|
}
|
|
|
|
// Do executes the "groupsSettings.groups.update" call.
|
|
// Exactly one of *Groups or error will be non-nil. Any non-2xx status
|
|
// code is an error. Response headers are in either
|
|
// *Groups.ServerResponse.Header or (if a response was returned at all)
|
|
// in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to
|
|
// check whether the returned error was because http.StatusNotModified
|
|
// was returned.
|
|
func (c *GroupsUpdateCall) Do(opts ...googleapi.CallOption) (*Groups, error) {
|
|
gensupport.SetOptions(c.urlParams_, opts...)
|
|
res, err := c.doRequest("json")
|
|
if res != nil && res.StatusCode == http.StatusNotModified {
|
|
if res.Body != nil {
|
|
res.Body.Close()
|
|
}
|
|
return nil, &googleapi.Error{
|
|
Code: res.StatusCode,
|
|
Header: res.Header,
|
|
}
|
|
}
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer googleapi.CloseBody(res)
|
|
if err := googleapi.CheckResponse(res); err != nil {
|
|
return nil, err
|
|
}
|
|
ret := &Groups{
|
|
ServerResponse: googleapi.ServerResponse{
|
|
Header: res.Header,
|
|
HTTPStatusCode: res.StatusCode,
|
|
},
|
|
}
|
|
target := &ret
|
|
if err := gensupport.DecodeResponse(target, res); err != nil {
|
|
return nil, err
|
|
}
|
|
return ret, nil
|
|
// {
|
|
// "description": "Updates an existing resource.",
|
|
// "httpMethod": "PUT",
|
|
// "id": "groupsSettings.groups.update",
|
|
// "parameterOrder": [
|
|
// "groupUniqueId"
|
|
// ],
|
|
// "parameters": {
|
|
// "groupUniqueId": {
|
|
// "description": "The resource ID",
|
|
// "location": "path",
|
|
// "required": true,
|
|
// "type": "string"
|
|
// }
|
|
// },
|
|
// "path": "{groupUniqueId}",
|
|
// "request": {
|
|
// "$ref": "Groups"
|
|
// },
|
|
// "response": {
|
|
// "$ref": "Groups"
|
|
// },
|
|
// "scopes": [
|
|
// "https://www.googleapis.com/auth/apps.groups.settings"
|
|
// ]
|
|
// }
|
|
|
|
}
|