// Copyright 2022 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 prod_tt_sasportal provides access to the SAS Portal API (Testing). // // For product documentation, see: https://developers.google.com/spectrum-access-system/ // // Creating a client // // Usage example: // // import "google.golang.org/api/prod_tt_sasportal/v1alpha1" // ... // ctx := context.Background() // prod_tt_sasportalService, err := prod_tt_sasportal.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: // // prod_tt_sasportalService, err := prod_tt_sasportal.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, ...) // prod_tt_sasportalService, err := prod_tt_sasportal.NewService(ctx, option.WithTokenSource(config.TokenSource(ctx, token))) // // See https://godoc.org/google.golang.org/api/option/ for details on options. package prod_tt_sasportal // import "google.golang.org/api/prod_tt_sasportal/v1alpha1" import ( "bytes" "context" "encoding/json" "errors" "fmt" "io" "net/http" "net/url" "strconv" "strings" googleapi "google.golang.org/api/googleapi" internal "google.golang.org/api/internal" gensupport "google.golang.org/api/internal/gensupport" option "google.golang.org/api/option" internaloption "google.golang.org/api/option/internaloption" 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 var _ = internaloption.WithDefaultEndpoint const apiId = "prod_tt_sasportal:v1alpha1" const apiName = "prod_tt_sasportal" const apiVersion = "v1alpha1" const basePath = "https://prod-tt-sasportal.googleapis.com/" const mtlsBasePath = "https://prod-tt-sasportal.mtls.googleapis.com/" // OAuth2 scopes used by this API. const ( // See your primary Google Account email address UserinfoEmailScope = "https://www.googleapis.com/auth/userinfo.email" ) // NewService creates a new Service. func NewService(ctx context.Context, opts ...option.ClientOption) (*Service, error) { scopesOption := internaloption.WithDefaultScopes( "https://www.googleapis.com/auth/userinfo.email", ) // NOTE: prepend, so we don't override user-specified scopes. opts = append([]option.ClientOption{scopesOption}, opts...) opts = append(opts, internaloption.WithDefaultEndpoint(basePath)) opts = append(opts, internaloption.WithDefaultMTLSEndpoint(mtlsBasePath)) 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.Customers = NewCustomersService(s) s.Deployments = NewDeploymentsService(s) s.Installer = NewInstallerService(s) s.Nodes = NewNodesService(s) s.Policies = NewPoliciesService(s) return s, nil } type Service struct { client *http.Client BasePath string // API endpoint base URL UserAgent string // optional additional User-Agent fragment Customers *CustomersService Deployments *DeploymentsService Installer *InstallerService Nodes *NodesService Policies *PoliciesService } func (s *Service) userAgent() string { if s.UserAgent == "" { return googleapi.UserAgent } return googleapi.UserAgent + " " + s.UserAgent } func NewCustomersService(s *Service) *CustomersService { rs := &CustomersService{s: s} rs.Deployments = NewCustomersDeploymentsService(s) rs.Devices = NewCustomersDevicesService(s) rs.Nodes = NewCustomersNodesService(s) return rs } type CustomersService struct { s *Service Deployments *CustomersDeploymentsService Devices *CustomersDevicesService Nodes *CustomersNodesService } func NewCustomersDeploymentsService(s *Service) *CustomersDeploymentsService { rs := &CustomersDeploymentsService{s: s} rs.Devices = NewCustomersDeploymentsDevicesService(s) return rs } type CustomersDeploymentsService struct { s *Service Devices *CustomersDeploymentsDevicesService } func NewCustomersDeploymentsDevicesService(s *Service) *CustomersDeploymentsDevicesService { rs := &CustomersDeploymentsDevicesService{s: s} return rs } type CustomersDeploymentsDevicesService struct { s *Service } func NewCustomersDevicesService(s *Service) *CustomersDevicesService { rs := &CustomersDevicesService{s: s} return rs } type CustomersDevicesService struct { s *Service } func NewCustomersNodesService(s *Service) *CustomersNodesService { rs := &CustomersNodesService{s: s} rs.Deployments = NewCustomersNodesDeploymentsService(s) rs.Devices = NewCustomersNodesDevicesService(s) rs.Nodes = NewCustomersNodesNodesService(s) return rs } type CustomersNodesService struct { s *Service Deployments *CustomersNodesDeploymentsService Devices *CustomersNodesDevicesService Nodes *CustomersNodesNodesService } func NewCustomersNodesDeploymentsService(s *Service) *CustomersNodesDeploymentsService { rs := &CustomersNodesDeploymentsService{s: s} return rs } type CustomersNodesDeploymentsService struct { s *Service } func NewCustomersNodesDevicesService(s *Service) *CustomersNodesDevicesService { rs := &CustomersNodesDevicesService{s: s} return rs } type CustomersNodesDevicesService struct { s *Service } func NewCustomersNodesNodesService(s *Service) *CustomersNodesNodesService { rs := &CustomersNodesNodesService{s: s} return rs } type CustomersNodesNodesService struct { s *Service } func NewDeploymentsService(s *Service) *DeploymentsService { rs := &DeploymentsService{s: s} rs.Devices = NewDeploymentsDevicesService(s) return rs } type DeploymentsService struct { s *Service Devices *DeploymentsDevicesService } func NewDeploymentsDevicesService(s *Service) *DeploymentsDevicesService { rs := &DeploymentsDevicesService{s: s} return rs } type DeploymentsDevicesService struct { s *Service } func NewInstallerService(s *Service) *InstallerService { rs := &InstallerService{s: s} return rs } type InstallerService struct { s *Service } func NewNodesService(s *Service) *NodesService { rs := &NodesService{s: s} rs.Deployments = NewNodesDeploymentsService(s) rs.Devices = NewNodesDevicesService(s) rs.Nodes = NewNodesNodesService(s) return rs } type NodesService struct { s *Service Deployments *NodesDeploymentsService Devices *NodesDevicesService Nodes *NodesNodesService } func NewNodesDeploymentsService(s *Service) *NodesDeploymentsService { rs := &NodesDeploymentsService{s: s} rs.Devices = NewNodesDeploymentsDevicesService(s) return rs } type NodesDeploymentsService struct { s *Service Devices *NodesDeploymentsDevicesService } func NewNodesDeploymentsDevicesService(s *Service) *NodesDeploymentsDevicesService { rs := &NodesDeploymentsDevicesService{s: s} return rs } type NodesDeploymentsDevicesService struct { s *Service } func NewNodesDevicesService(s *Service) *NodesDevicesService { rs := &NodesDevicesService{s: s} return rs } type NodesDevicesService struct { s *Service } func NewNodesNodesService(s *Service) *NodesNodesService { rs := &NodesNodesService{s: s} rs.Deployments = NewNodesNodesDeploymentsService(s) rs.Devices = NewNodesNodesDevicesService(s) rs.Nodes = NewNodesNodesNodesService(s) return rs } type NodesNodesService struct { s *Service Deployments *NodesNodesDeploymentsService Devices *NodesNodesDevicesService Nodes *NodesNodesNodesService } func NewNodesNodesDeploymentsService(s *Service) *NodesNodesDeploymentsService { rs := &NodesNodesDeploymentsService{s: s} return rs } type NodesNodesDeploymentsService struct { s *Service } func NewNodesNodesDevicesService(s *Service) *NodesNodesDevicesService { rs := &NodesNodesDevicesService{s: s} return rs } type NodesNodesDevicesService struct { s *Service } func NewNodesNodesNodesService(s *Service) *NodesNodesNodesService { rs := &NodesNodesNodesService{s: s} return rs } type NodesNodesNodesService struct { s *Service } func NewPoliciesService(s *Service) *PoliciesService { rs := &PoliciesService{s: s} return rs } type PoliciesService struct { s *Service } // SasPortalAssignment: Associates `members` with a `role`. type SasPortalAssignment struct { // Members: The identities the role is assigned to. It can have the // following values: * `{user_email}`: An email address that represents // a specific Google account. For example: `alice@gmail.com`. * // `{group_email}`: An email address that represents a Google group. For // example, `viewers@gmail.com`. Members []string `json:"members,omitempty"` // Role: Required. Role that is assigned to `members`. Role string `json:"role,omitempty"` // ForceSendFields is a list of field names (e.g. "Members") to // unconditionally include in API requests. By default, fields with // empty or default 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. "Members") 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 *SasPortalAssignment) MarshalJSON() ([]byte, error) { type NoMethod SasPortalAssignment raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // SasPortalChannelWithScore: The channel with score. type SasPortalChannelWithScore struct { // FrequencyRange: The frequency range of the channel. FrequencyRange *SasPortalFrequencyRange `json:"frequencyRange,omitempty"` // Score: The channel score, normalized to be in [0,100]. Score float64 `json:"score,omitempty"` // ForceSendFields is a list of field names (e.g. "FrequencyRange") to // unconditionally include in API requests. By default, fields with // empty or default 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. "FrequencyRange") 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 *SasPortalChannelWithScore) MarshalJSON() ([]byte, error) { type NoMethod SasPortalChannelWithScore raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } func (s *SasPortalChannelWithScore) UnmarshalJSON(data []byte) error { type NoMethod SasPortalChannelWithScore var s1 struct { Score gensupport.JSONFloat64 `json:"score"` *NoMethod } s1.NoMethod = (*NoMethod)(s) if err := json.Unmarshal(data, &s1); err != nil { return err } s.Score = float64(s1.Score) return nil } // SasPortalCreateSignedDeviceRequest: Request for CreateSignedDevice. type SasPortalCreateSignedDeviceRequest struct { // EncodedDevice: Required. JSON Web Token signed using a CPI private // key. Payload must be the JSON encoding of the device. The user_id // field must be set. EncodedDevice string `json:"encodedDevice,omitempty"` // InstallerId: Required. Unique installer id (CPI ID) from the // Certified Professional Installers database. InstallerId string `json:"installerId,omitempty"` // ForceSendFields is a list of field names (e.g. "EncodedDevice") to // unconditionally include in API requests. By default, fields with // empty or default 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. "EncodedDevice") 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 *SasPortalCreateSignedDeviceRequest) MarshalJSON() ([]byte, error) { type NoMethod SasPortalCreateSignedDeviceRequest raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // SasPortalCustomer: Entity representing a SAS customer. type SasPortalCustomer struct { // DisplayName: Required. Name of the organization that the customer // entity represents. DisplayName string `json:"displayName,omitempty"` // Name: Output only. Resource name of the customer. Name string `json:"name,omitempty"` // SasUserIds: User IDs used by the devices belonging to this customer. SasUserIds []string `json:"sasUserIds,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "DisplayName") to // unconditionally include in API requests. By default, fields with // empty or default 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. "DisplayName") 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 *SasPortalCustomer) MarshalJSON() ([]byte, error) { type NoMethod SasPortalCustomer raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // SasPortalDeployment: The Deployment. type SasPortalDeployment struct { // DisplayName: The deployment's display name. DisplayName string `json:"displayName,omitempty"` // Frns: Output only. The FRNs copied from its direct parent. Frns []string `json:"frns,omitempty"` // Name: Output only. Resource name. Name string `json:"name,omitempty"` // SasUserIds: User ID used by the devices belonging to this deployment. // Each deployment should be associated with one unique user ID. SasUserIds []string `json:"sasUserIds,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "DisplayName") to // unconditionally include in API requests. By default, fields with // empty or default 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. "DisplayName") 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 *SasPortalDeployment) MarshalJSON() ([]byte, error) { type NoMethod SasPortalDeployment raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } type SasPortalDevice struct { // ActiveConfig: Output only. Current configuration of the device as // registered to the SAS. ActiveConfig *SasPortalDeviceConfig `json:"activeConfig,omitempty"` // CurrentChannels: Output only. Current channels with scores. CurrentChannels []*SasPortalChannelWithScore `json:"currentChannels,omitempty"` // DeviceMetadata: Device parameters that can be overridden by both SAS // Portal and SAS registration requests. DeviceMetadata *SasPortalDeviceMetadata `json:"deviceMetadata,omitempty"` // DisplayName: Device display name. DisplayName string `json:"displayName,omitempty"` // FccId: The FCC identifier of the device. FccId string `json:"fccId,omitempty"` // GrantRangeAllowlists: Only ranges within the allowlists are available // for new grants. GrantRangeAllowlists []*SasPortalFrequencyRange `json:"grantRangeAllowlists,omitempty"` // Grants: Output only. Grants held by the device. Grants []*SasPortalDeviceGrant `json:"grants,omitempty"` // Name: Output only. The resource path name. Name string `json:"name,omitempty"` // PreloadedConfig: Configuration of the device, as specified via SAS // Portal API. PreloadedConfig *SasPortalDeviceConfig `json:"preloadedConfig,omitempty"` // SerialNumber: A serial number assigned to the device by the device // manufacturer. SerialNumber string `json:"serialNumber,omitempty"` // State: Output only. Device state. // // Possible values: // "DEVICE_STATE_UNSPECIFIED" - Unspecified state. // "RESERVED" - Device created in the SAS Portal, however, not yet // registered with SAS. // "REGISTERED" - Device registered with SAS. // "DEREGISTERED" - Device de-registered with SAS. State string `json:"state,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "ActiveConfig") to // unconditionally include in API requests. By default, fields with // empty or default 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. "ActiveConfig") 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 *SasPortalDevice) MarshalJSON() ([]byte, error) { type NoMethod SasPortalDevice raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // SasPortalDeviceAirInterface: Information about the device's air // interface. type SasPortalDeviceAirInterface struct { // RadioTechnology: Conditional. This field specifies the radio access // technology that is used for the CBSD. // // Possible values: // "RADIO_TECHNOLOGY_UNSPECIFIED" // "E_UTRA" // "CAMBIUM_NETWORKS" // "FOUR_G_BBW_SAA_1" // "NR" // "DOODLE_CBRS" // "CW" // "REDLINE" // "TARANA_WIRELESS" RadioTechnology string `json:"radioTechnology,omitempty"` // SupportedSpec: Optional. This field is related to the // `radioTechnology` and provides the air interface specification that // the CBSD is compliant with at the time of registration. SupportedSpec string `json:"supportedSpec,omitempty"` // ForceSendFields is a list of field names (e.g. "RadioTechnology") to // unconditionally include in API requests. By default, fields with // empty or default 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. "RadioTechnology") 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 *SasPortalDeviceAirInterface) MarshalJSON() ([]byte, error) { type NoMethod SasPortalDeviceAirInterface raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // SasPortalDeviceConfig: Information about the device configuration. type SasPortalDeviceConfig struct { // AirInterface: Information about this device's air interface. AirInterface *SasPortalDeviceAirInterface `json:"airInterface,omitempty"` // CallSign: The call sign of the device operator. CallSign string `json:"callSign,omitempty"` // Category: FCC category of the device. // // Possible values: // "DEVICE_CATEGORY_UNSPECIFIED" - Unspecified device category. // "DEVICE_CATEGORY_A" - Category A. // "DEVICE_CATEGORY_B" - Category B. Category string `json:"category,omitempty"` // InstallationParams: Installation parameters for the device. InstallationParams *SasPortalInstallationParams `json:"installationParams,omitempty"` // IsSigned: Output only. Whether the configuration has been signed by a // CPI. IsSigned bool `json:"isSigned,omitempty"` // MeasurementCapabilities: Measurement reporting capabilities of the // device. // // Possible values: // "MEASUREMENT_CAPABILITY_UNSPECIFIED" // "MEASUREMENT_CAPABILITY_RECEIVED_POWER_WITH_GRANT" // "MEASUREMENT_CAPABILITY_RECEIVED_POWER_WITHOUT_GRANT" MeasurementCapabilities []string `json:"measurementCapabilities,omitempty"` // Model: Information about this device model. Model *SasPortalDeviceModel `json:"model,omitempty"` // State: State of the configuration. // // Possible values: // "DEVICE_CONFIG_STATE_UNSPECIFIED" // "DRAFT" // "FINAL" State string `json:"state,omitempty"` // UpdateTime: Output only. The last time the device configuration was // edited. UpdateTime string `json:"updateTime,omitempty"` // UserId: The identifier of a device user. UserId string `json:"userId,omitempty"` // ForceSendFields is a list of field names (e.g. "AirInterface") to // unconditionally include in API requests. By default, fields with // empty or default 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. "AirInterface") 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 *SasPortalDeviceConfig) MarshalJSON() ([]byte, error) { type NoMethod SasPortalDeviceConfig raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // SasPortalDeviceGrant: Device grant. It is an authorization provided // by the Spectrum Access System to a device to transmit using specified // operating parameters after a successful heartbeat by the device. type SasPortalDeviceGrant struct { // ChannelType: Type of channel used. // // Possible values: // "CHANNEL_TYPE_UNSPECIFIED" // "CHANNEL_TYPE_GAA" // "CHANNEL_TYPE_PAL" ChannelType string `json:"channelType,omitempty"` // ExpireTime: The expiration time of the grant. ExpireTime string `json:"expireTime,omitempty"` // FrequencyRange: The transmission frequency range. FrequencyRange *SasPortalFrequencyRange `json:"frequencyRange,omitempty"` // GrantId: Grant Id. GrantId string `json:"grantId,omitempty"` // LastHeartbeatTransmitExpireTime: The transmit expiration time of the // last heartbeat. LastHeartbeatTransmitExpireTime string `json:"lastHeartbeatTransmitExpireTime,omitempty"` // MaxEirp: Maximum Equivalent Isotropically Radiated Power (EIRP) // permitted by the grant. The maximum EIRP is in units of dBm/MHz. The // value of `maxEirp` represents the average (RMS) EIRP that would be // measured by the procedure defined in FCC part 96.41(e)(3). MaxEirp float64 `json:"maxEirp,omitempty"` // MoveList: The DPA move lists on which this grant appears. MoveList []*SasPortalDpaMoveList `json:"moveList,omitempty"` // State: State of the grant. // // Possible values: // "GRANT_STATE_UNSPECIFIED" // "GRANT_STATE_GRANTED" - The grant has been granted but the device // is not heartbeating on it. // "GRANT_STATE_TERMINATED" - The grant has been terminated by the // SAS. // "GRANT_STATE_SUSPENDED" - The grant has been suspended by the SAS. // "GRANT_STATE_AUTHORIZED" - The device is currently transmitting. // "GRANT_STATE_EXPIRED" - The grant has expired. State string `json:"state,omitempty"` // SuspensionReason: If the grant is suspended, the reason(s) for // suspension. SuspensionReason []string `json:"suspensionReason,omitempty"` // ForceSendFields is a list of field names (e.g. "ChannelType") to // unconditionally include in API requests. By default, fields with // empty or default 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. "ChannelType") 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 *SasPortalDeviceGrant) MarshalJSON() ([]byte, error) { type NoMethod SasPortalDeviceGrant raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } func (s *SasPortalDeviceGrant) UnmarshalJSON(data []byte) error { type NoMethod SasPortalDeviceGrant var s1 struct { MaxEirp gensupport.JSONFloat64 `json:"maxEirp"` *NoMethod } s1.NoMethod = (*NoMethod)(s) if err := json.Unmarshal(data, &s1); err != nil { return err } s.MaxEirp = float64(s1.MaxEirp) return nil } // SasPortalDeviceMetadata: Device data overridable by both SAS Portal // and registration requests. type SasPortalDeviceMetadata struct { // AntennaModel: If populated, the Antenna Model Pattern to use. Format // is: RecordCreatorId:PatternId AntennaModel string `json:"antennaModel,omitempty"` // CommonChannelGroup: CCG. A group of CBSDs in the same ICG requesting // a common primary channel assignment. See CBRSA-TS-2001 V3.0.0 for // more details. CommonChannelGroup string `json:"commonChannelGroup,omitempty"` // InterferenceCoordinationGroup: ICG. A group of CBSDs that manage // their own interference with the group. See CBRSA-TS-2001 V3.0.0 for // more details. InterferenceCoordinationGroup string `json:"interferenceCoordinationGroup,omitempty"` // NrqzValidated: Output only. Whether a CPI has validated to have // coordinated with the National Quiet Zone office. NrqzValidated bool `json:"nrqzValidated,omitempty"` // NrqzValidation: Output only. National Radio Quiet Zone validation // info. NrqzValidation *SasPortalNrqzValidation `json:"nrqzValidation,omitempty"` // ForceSendFields is a list of field names (e.g. "AntennaModel") to // unconditionally include in API requests. By default, fields with // empty or default 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. "AntennaModel") 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 *SasPortalDeviceMetadata) MarshalJSON() ([]byte, error) { type NoMethod SasPortalDeviceMetadata raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // SasPortalDeviceModel: Information about the model of the device. type SasPortalDeviceModel struct { // FirmwareVersion: The firmware version of the device. FirmwareVersion string `json:"firmwareVersion,omitempty"` // HardwareVersion: The hardware version of the device. HardwareVersion string `json:"hardwareVersion,omitempty"` // Name: The name of the device model. Name string `json:"name,omitempty"` // SoftwareVersion: The software version of the device. SoftwareVersion string `json:"softwareVersion,omitempty"` // Vendor: The name of the device vendor. Vendor string `json:"vendor,omitempty"` // ForceSendFields is a list of field names (e.g. "FirmwareVersion") to // unconditionally include in API requests. By default, fields with // empty or default 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. "FirmwareVersion") 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 *SasPortalDeviceModel) MarshalJSON() ([]byte, error) { type NoMethod SasPortalDeviceModel raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // SasPortalDpaMoveList: An entry in a DPA's move list. type SasPortalDpaMoveList struct { // DpaId: The ID of the DPA. DpaId string `json:"dpaId,omitempty"` // FrequencyRange: The frequency range that the move list affects. FrequencyRange *SasPortalFrequencyRange `json:"frequencyRange,omitempty"` // ForceSendFields is a list of field names (e.g. "DpaId") to // unconditionally include in API requests. By default, fields with // empty or default 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. "DpaId") 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 *SasPortalDpaMoveList) MarshalJSON() ([]byte, error) { type NoMethod SasPortalDpaMoveList raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // SasPortalEmpty: A generic empty message that you can re-use to avoid // defining duplicated empty messages in your APIs. A typical example is // to use it as the request or the response type of an API method. For // instance: service Foo { rpc Bar(google.protobuf.Empty) returns // (google.protobuf.Empty); } type SasPortalEmpty struct { // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` } // SasPortalFrequencyRange: Frequency range from `low_frequency` to // `high_frequency`. type SasPortalFrequencyRange struct { // HighFrequencyMhz: The highest frequency of the frequency range in // MHz. HighFrequencyMhz float64 `json:"highFrequencyMhz,omitempty"` // LowFrequencyMhz: The lowest frequency of the frequency range in MHz. LowFrequencyMhz float64 `json:"lowFrequencyMhz,omitempty"` // ForceSendFields is a list of field names (e.g. "HighFrequencyMhz") to // unconditionally include in API requests. By default, fields with // empty or default 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. "HighFrequencyMhz") 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 *SasPortalFrequencyRange) MarshalJSON() ([]byte, error) { type NoMethod SasPortalFrequencyRange raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } func (s *SasPortalFrequencyRange) UnmarshalJSON(data []byte) error { type NoMethod SasPortalFrequencyRange var s1 struct { HighFrequencyMhz gensupport.JSONFloat64 `json:"highFrequencyMhz"` LowFrequencyMhz gensupport.JSONFloat64 `json:"lowFrequencyMhz"` *NoMethod } s1.NoMethod = (*NoMethod)(s) if err := json.Unmarshal(data, &s1); err != nil { return err } s.HighFrequencyMhz = float64(s1.HighFrequencyMhz) s.LowFrequencyMhz = float64(s1.LowFrequencyMhz) return nil } // SasPortalGenerateSecretRequest: Request for GenerateSecret. type SasPortalGenerateSecretRequest struct { } // SasPortalGenerateSecretResponse: Response for GenerateSecret. type SasPortalGenerateSecretResponse struct { // Secret: The secret generated by the string and used by // ValidateInstaller. Secret string `json:"secret,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Secret") to // unconditionally include in API requests. By default, fields with // empty or default 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. "Secret") 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 *SasPortalGenerateSecretResponse) MarshalJSON() ([]byte, error) { type NoMethod SasPortalGenerateSecretResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // SasPortalGetPolicyRequest: Request message for `GetPolicy` method. type SasPortalGetPolicyRequest struct { // Resource: Required. The resource for which the policy is being // requested. Resource string `json:"resource,omitempty"` // ForceSendFields is a list of field names (e.g. "Resource") to // unconditionally include in API requests. By default, fields with // empty or default 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. "Resource") 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 *SasPortalGetPolicyRequest) MarshalJSON() ([]byte, error) { type NoMethod SasPortalGetPolicyRequest raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // SasPortalInstallationParams: Information about the device // installation parameters. type SasPortalInstallationParams struct { // AntennaAzimuth: Boresight direction of the horizontal plane of the // antenna in degrees with respect to true north. The value of this // parameter is an integer with a value between 0 and 359 inclusive. A // value of 0 degrees means true north; a value of 90 degrees means // east. This parameter is optional for Category A devices and // conditional for Category B devices. AntennaAzimuth int64 `json:"antennaAzimuth,omitempty"` // AntennaBeamwidth: 3-dB antenna beamwidth of the antenna in the // horizontal-plane in degrees. This parameter is an unsigned integer // having a value between 0 and 360 (degrees) inclusive; it is optional // for Category A devices and conditional for Category B devices. AntennaBeamwidth int64 `json:"antennaBeamwidth,omitempty"` // AntennaDowntilt: Antenna downtilt in degrees and is an integer with a // value between -90 and +90 inclusive; a negative value means the // antenna is tilted up (above horizontal). This parameter is optional // for Category A devices and conditional for Category B devices. AntennaDowntilt int64 `json:"antennaDowntilt,omitempty"` // AntennaGain: Peak antenna gain in dBi. This parameter is an integer // with a value between -127 and +128 (dBi) inclusive. AntennaGain int64 `json:"antennaGain,omitempty"` // AntennaModel: If an external antenna is used, the antenna model is // optionally provided in this field. The string has a maximum length of // 128 octets. AntennaModel string `json:"antennaModel,omitempty"` // CpeCbsdIndication: If present, this parameter specifies whether the // CBSD is a CPE-CBSD or not. CpeCbsdIndication bool `json:"cpeCbsdIndication,omitempty"` // EirpCapability: This parameter is the maximum device EIRP in units of // dBm/10MHz and is an integer with a value between -127 and +47 (dBm/10 // MHz) inclusive. If not included, SAS interprets it as maximum // allowable EIRP in units of dBm/10MHz for device category. EirpCapability int64 `json:"eirpCapability,omitempty"` // Height: Device antenna height in meters. When the `heightType` // parameter value is "AGL", the antenna height should be given relative // to ground level. When the `heightType` parameter value is "AMSL", it // is given with respect to WGS84 datum. Height float64 `json:"height,omitempty"` // HeightType: Specifies how the height is measured. // // Possible values: // "HEIGHT_TYPE_UNSPECIFIED" - Unspecified height type. // "HEIGHT_TYPE_AGL" - AGL height is measured relative to the ground // level. // "HEIGHT_TYPE_AMSL" - AMSL height is measured relative to the mean // sea level. HeightType string `json:"heightType,omitempty"` // HorizontalAccuracy: A positive number in meters to indicate accuracy // of the device antenna horizontal location. This optional parameter // should only be present if its value is less than the FCC requirement // of 50 meters. HorizontalAccuracy float64 `json:"horizontalAccuracy,omitempty"` // IndoorDeployment: Whether the device antenna is indoor or not. // `true`: indoor. `false`: outdoor. IndoorDeployment bool `json:"indoorDeployment,omitempty"` // Latitude: Latitude of the device antenna location in degrees relative // to the WGS 84 datum. The allowed range is from -90.000000 to // +90.000000. Positive values represent latitudes north of the equator; // negative values south of the equator. Latitude float64 `json:"latitude,omitempty"` // Longitude: Longitude of the device antenna location in degrees // relative to the WGS 84 datum. The allowed range is from -180.000000 // to +180.000000. Positive values represent longitudes east of the // prime meridian; negative values west of the prime meridian. Longitude float64 `json:"longitude,omitempty"` // VerticalAccuracy: A positive number in meters to indicate accuracy of // the device antenna vertical location. This optional parameter should // only be present if its value is less than the FCC requirement of 3 // meters. VerticalAccuracy float64 `json:"verticalAccuracy,omitempty"` // ForceSendFields is a list of field names (e.g. "AntennaAzimuth") to // unconditionally include in API requests. By default, fields with // empty or default 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. "AntennaAzimuth") 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 *SasPortalInstallationParams) MarshalJSON() ([]byte, error) { type NoMethod SasPortalInstallationParams raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } func (s *SasPortalInstallationParams) UnmarshalJSON(data []byte) error { type NoMethod SasPortalInstallationParams var s1 struct { Height gensupport.JSONFloat64 `json:"height"` HorizontalAccuracy gensupport.JSONFloat64 `json:"horizontalAccuracy"` Latitude gensupport.JSONFloat64 `json:"latitude"` Longitude gensupport.JSONFloat64 `json:"longitude"` VerticalAccuracy gensupport.JSONFloat64 `json:"verticalAccuracy"` *NoMethod } s1.NoMethod = (*NoMethod)(s) if err := json.Unmarshal(data, &s1); err != nil { return err } s.Height = float64(s1.Height) s.HorizontalAccuracy = float64(s1.HorizontalAccuracy) s.Latitude = float64(s1.Latitude) s.Longitude = float64(s1.Longitude) s.VerticalAccuracy = float64(s1.VerticalAccuracy) return nil } // SasPortalListCustomersResponse: Response for `ListCustomers`. type SasPortalListCustomersResponse struct { // Customers: The list of customers that match the request. Customers []*SasPortalCustomer `json:"customers,omitempty"` // NextPageToken: A pagination token returned from a previous call to // ListCustomers that indicates from where listing should continue. If // the field is missing or empty, it means there are no more customers. NextPageToken string `json:"nextPageToken,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Customers") to // unconditionally include in API requests. By default, fields with // empty or default 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. "Customers") 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 *SasPortalListCustomersResponse) MarshalJSON() ([]byte, error) { type NoMethod SasPortalListCustomersResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // SasPortalListDeploymentsResponse: Response for ListDeployments. type SasPortalListDeploymentsResponse struct { // Deployments: The deployments that match the request. Deployments []*SasPortalDeployment `json:"deployments,omitempty"` // NextPageToken: A pagination token returned from a previous call to // ListDeployments that indicates from where listing should continue. If // the field is missing or empty, it means there are no more // deployments. NextPageToken string `json:"nextPageToken,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Deployments") to // unconditionally include in API requests. By default, fields with // empty or default 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. "Deployments") 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 *SasPortalListDeploymentsResponse) MarshalJSON() ([]byte, error) { type NoMethod SasPortalListDeploymentsResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // SasPortalListDevicesResponse: Response for ListDevices. type SasPortalListDevicesResponse struct { // Devices: The devices that match the request. Devices []*SasPortalDevice `json:"devices,omitempty"` // NextPageToken: A pagination token returned from a previous call to // ListDevices that indicates from where listing should continue. If the // field is missing or empty, it means there is no more devices. NextPageToken string `json:"nextPageToken,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Devices") to // unconditionally include in API requests. By default, fields with // empty or default 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. "Devices") 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 *SasPortalListDevicesResponse) MarshalJSON() ([]byte, error) { type NoMethod SasPortalListDevicesResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // SasPortalListNodesResponse: Response for ListNodes. type SasPortalListNodesResponse struct { // NextPageToken: A pagination token returned from a previous call to // ListNodes that indicates from where listing should continue. If the // field is missing or empty, it means there is no more nodes. NextPageToken string `json:"nextPageToken,omitempty"` // Nodes: The nodes that match the request. Nodes []*SasPortalNode `json:"nodes,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "NextPageToken") to // unconditionally include in API requests. By default, fields with // empty or default 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. "NextPageToken") 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 *SasPortalListNodesResponse) MarshalJSON() ([]byte, error) { type NoMethod SasPortalListNodesResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // SasPortalMoveDeploymentRequest: Request for MoveDeployment. type SasPortalMoveDeploymentRequest struct { // Destination: Required. The name of the new parent resource node or // customer to reparent the deployment under. Destination string `json:"destination,omitempty"` // ForceSendFields is a list of field names (e.g. "Destination") to // unconditionally include in API requests. By default, fields with // empty or default 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. "Destination") 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 *SasPortalMoveDeploymentRequest) MarshalJSON() ([]byte, error) { type NoMethod SasPortalMoveDeploymentRequest raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // SasPortalMoveDeviceRequest: Request for MoveDevice. type SasPortalMoveDeviceRequest struct { // Destination: Required. The name of the new parent resource node or // customer to reparent the device under. Destination string `json:"destination,omitempty"` // ForceSendFields is a list of field names (e.g. "Destination") to // unconditionally include in API requests. By default, fields with // empty or default 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. "Destination") 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 *SasPortalMoveDeviceRequest) MarshalJSON() ([]byte, error) { type NoMethod SasPortalMoveDeviceRequest raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // SasPortalMoveNodeRequest: Request for MoveNode. type SasPortalMoveNodeRequest struct { // Destination: Required. The name of the new parent resource node or // customer to reparent the node under. Destination string `json:"destination,omitempty"` // ForceSendFields is a list of field names (e.g. "Destination") to // unconditionally include in API requests. By default, fields with // empty or default 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. "Destination") 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 *SasPortalMoveNodeRequest) MarshalJSON() ([]byte, error) { type NoMethod SasPortalMoveNodeRequest raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // SasPortalNode: The Node. type SasPortalNode struct { // DisplayName: The node's display name. DisplayName string `json:"displayName,omitempty"` // Name: Output only. Resource name. Name string `json:"name,omitempty"` // SasUserIds: User ids used by the devices belonging to this node. SasUserIds []string `json:"sasUserIds,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "DisplayName") to // unconditionally include in API requests. By default, fields with // empty or default 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. "DisplayName") 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 *SasPortalNode) MarshalJSON() ([]byte, error) { type NoMethod SasPortalNode raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // SasPortalNrqzValidation: Information about National Radio Quiet Zone // validation. type SasPortalNrqzValidation struct { // CaseId: Validation case id. CaseId string `json:"caseId,omitempty"` // CpiId: CPI who signed the validation. CpiId string `json:"cpiId,omitempty"` // Latitude: Device latitude associated with the validation. Latitude float64 `json:"latitude,omitempty"` // Longitude: Device longitude associated with the validation. Longitude float64 `json:"longitude,omitempty"` // State: State of the NRQZ validation info. // // Possible values: // "STATE_UNSPECIFIED" - Unspecified state. // "DRAFT" - Draft state. // "FINAL" - Final state. State string `json:"state,omitempty"` // ForceSendFields is a list of field names (e.g. "CaseId") to // unconditionally include in API requests. By default, fields with // empty or default 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. "CaseId") 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 *SasPortalNrqzValidation) MarshalJSON() ([]byte, error) { type NoMethod SasPortalNrqzValidation raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } func (s *SasPortalNrqzValidation) UnmarshalJSON(data []byte) error { type NoMethod SasPortalNrqzValidation var s1 struct { Latitude gensupport.JSONFloat64 `json:"latitude"` Longitude gensupport.JSONFloat64 `json:"longitude"` *NoMethod } s1.NoMethod = (*NoMethod)(s) if err := json.Unmarshal(data, &s1); err != nil { return err } s.Latitude = float64(s1.Latitude) s.Longitude = float64(s1.Longitude) return nil } // SasPortalOperation: This resource represents a long-running operation // that is the result of a network API call. type SasPortalOperation struct { // Done: If the value is `false`, it means the operation is still in // progress. If `true`, the operation is completed, and either `error` // or `response` is available. Done bool `json:"done,omitempty"` // Error: The error result of the operation in case of failure or // cancellation. Error *SasPortalStatus `json:"error,omitempty"` // Metadata: Service-specific metadata associated with the operation. It // typically contains progress information and common metadata such as // create time. Some services might not provide such metadata. Any // method that returns a long-running operation should document the // metadata type, if any. Metadata googleapi.RawMessage `json:"metadata,omitempty"` // Name: The server-assigned name, which is only unique within the same // service that originally returns it. If you use the default HTTP // mapping, the `name` should be a resource name ending with // `operations/{unique_id}`. Name string `json:"name,omitempty"` // Response: The normal response of the operation in case of success. If // the original method returns no data on success, such as `Delete`, the // response is `google.protobuf.Empty`. If the original method is // standard `Get`/`Create`/`Update`, the response should be the // resource. For other methods, the response should have the type // `XxxResponse`, where `Xxx` is the original method name. For example, // if the original method name is `TakeSnapshot()`, the inferred // response type is `TakeSnapshotResponse`. Response googleapi.RawMessage `json:"response,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Done") to // unconditionally include in API requests. By default, fields with // empty or default 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. "Done") 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 *SasPortalOperation) MarshalJSON() ([]byte, error) { type NoMethod SasPortalOperation raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // SasPortalPolicy: Defines an access control policy to the resources. type SasPortalPolicy struct { // Assignments: List of assignments Assignments []*SasPortalAssignment `json:"assignments,omitempty"` // Etag: The etag is used for optimistic concurrency control as a way to // help prevent simultaneous updates of a policy from overwriting each // other. It is strongly suggested that systems make use of the etag in // the read-modify-write cycle to perform policy updates in order to // avoid race conditions: An etag is returned in the response to // GetPolicy, and systems are expected to put that etag in the request // to SetPolicy to ensure that their change will be applied to the same // version of the policy. If no etag is provided in the call to // GetPolicy, then the existing policy is overwritten blindly. Etag string `json:"etag,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Assignments") to // unconditionally include in API requests. By default, fields with // empty or default 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. "Assignments") 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 *SasPortalPolicy) MarshalJSON() ([]byte, error) { type NoMethod SasPortalPolicy raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // SasPortalSetPolicyRequest: Request message for `SetPolicy` method. type SasPortalSetPolicyRequest struct { // DisableNotification: Optional. Set the field as true when we would // like to disable the onboarding notification. DisableNotification bool `json:"disableNotification,omitempty"` // Policy: Required. The policy to be applied to the `resource`. Policy *SasPortalPolicy `json:"policy,omitempty"` // Resource: Required. The resource for which the policy is being // specified. This policy replaces any existing policy. Resource string `json:"resource,omitempty"` // ForceSendFields is a list of field names (e.g. "DisableNotification") // to unconditionally include in API requests. By default, fields with // empty or default 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. "DisableNotification") 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 *SasPortalSetPolicyRequest) MarshalJSON() ([]byte, error) { type NoMethod SasPortalSetPolicyRequest raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // SasPortalSignDeviceRequest: Request for SignDevice. type SasPortalSignDeviceRequest struct { // Device: Required. The device to sign. The device fields name, fcc_id // and serial_number must be set. The user_id field must be set. Device *SasPortalDevice `json:"device,omitempty"` // ForceSendFields is a list of field names (e.g. "Device") to // unconditionally include in API requests. By default, fields with // empty or default 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. "Device") 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 *SasPortalSignDeviceRequest) MarshalJSON() ([]byte, error) { type NoMethod SasPortalSignDeviceRequest raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // SasPortalStatus: The `Status` type defines a logical error model that // is suitable for different programming environments, including REST // APIs and RPC APIs. It is used by gRPC (https://github.com/grpc). Each // `Status` message contains three pieces of data: error code, error // message, and error details. You can find out more about this error // model and how to work with it in the API Design Guide // (https://cloud.google.com/apis/design/errors). type SasPortalStatus struct { // Code: The status code, which should be an enum value of // google.rpc.Code. Code int64 `json:"code,omitempty"` // Details: A list of messages that carry the error details. There is a // common set of message types for APIs to use. Details []googleapi.RawMessage `json:"details,omitempty"` // Message: A developer-facing error message, which should be in // English. Any user-facing error message should be localized and sent // in the google.rpc.Status.details field, or localized by the client. Message string `json:"message,omitempty"` // ForceSendFields is a list of field names (e.g. "Code") to // unconditionally include in API requests. By default, fields with // empty or default 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. "Code") 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 *SasPortalStatus) MarshalJSON() ([]byte, error) { type NoMethod SasPortalStatus raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // SasPortalTestPermissionsRequest: Request message for // `TestPermissions` method. type SasPortalTestPermissionsRequest struct { // Permissions: The set of permissions to check for the `resource`. Permissions []string `json:"permissions,omitempty"` // Resource: Required. The resource for which the permissions are being // requested. Resource string `json:"resource,omitempty"` // ForceSendFields is a list of field names (e.g. "Permissions") to // unconditionally include in API requests. By default, fields with // empty or default 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. "Permissions") 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 *SasPortalTestPermissionsRequest) MarshalJSON() ([]byte, error) { type NoMethod SasPortalTestPermissionsRequest raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // SasPortalTestPermissionsResponse: Response message for // `TestPermissions` method. type SasPortalTestPermissionsResponse struct { // Permissions: A set of permissions that the caller is allowed. Permissions []string `json:"permissions,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Permissions") to // unconditionally include in API requests. By default, fields with // empty or default 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. "Permissions") 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 *SasPortalTestPermissionsResponse) MarshalJSON() ([]byte, error) { type NoMethod SasPortalTestPermissionsResponse raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // SasPortalUpdateSignedDeviceRequest: Request for UpdateSignedDevice. type SasPortalUpdateSignedDeviceRequest struct { // EncodedDevice: Required. The JSON Web Token signed using a CPI // private key. Payload must be the JSON encoding of the device. The // user_id field must be set. EncodedDevice string `json:"encodedDevice,omitempty"` // InstallerId: Required. Unique installer ID (CPI ID) from the // Certified Professional Installers database. InstallerId string `json:"installerId,omitempty"` // ForceSendFields is a list of field names (e.g. "EncodedDevice") to // unconditionally include in API requests. By default, fields with // empty or default 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. "EncodedDevice") 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 *SasPortalUpdateSignedDeviceRequest) MarshalJSON() ([]byte, error) { type NoMethod SasPortalUpdateSignedDeviceRequest raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // SasPortalValidateInstallerRequest: Request for ValidateInstaller. type SasPortalValidateInstallerRequest struct { // EncodedSecret: Required. JSON Web Token signed using a CPI private // key. Payload must include a "secret" claim whose value is the secret. EncodedSecret string `json:"encodedSecret,omitempty"` // InstallerId: Required. Unique installer id (CPI ID) from the // Certified Professional Installers database. InstallerId string `json:"installerId,omitempty"` // Secret: Required. Secret returned by the GenerateSecret. Secret string `json:"secret,omitempty"` // ForceSendFields is a list of field names (e.g. "EncodedSecret") to // unconditionally include in API requests. By default, fields with // empty or default 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. "EncodedSecret") 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 *SasPortalValidateInstallerRequest) MarshalJSON() ([]byte, error) { type NoMethod SasPortalValidateInstallerRequest raw := NoMethod(*s) return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) } // SasPortalValidateInstallerResponse: Response for ValidateInstaller. type SasPortalValidateInstallerResponse struct { // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` } // method id "prod_tt_sasportal.customers.get": type CustomersGetCall struct { s *Service name string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // Get: Returns a requested customer. // // - name: The name of the customer. func (r *CustomersService) Get(name string) *CustomersGetCall { c := &CustomersGetCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name 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 *CustomersGetCall) Fields(s ...googleapi.Field) *CustomersGetCall { 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 *CustomersGetCall) IfNoneMatch(entityTag string) *CustomersGetCall { 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 *CustomersGetCall) Context(ctx context.Context) *CustomersGetCall { 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 *CustomersGetCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *CustomersGetCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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, "v1alpha1/{+name}") 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{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.customers.get" call. // Exactly one of *SasPortalCustomer or error will be non-nil. Any // non-2xx status code is an error. Response headers are in either // *SasPortalCustomer.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 *CustomersGetCall) Do(opts ...googleapi.CallOption) (*SasPortalCustomer, 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 := &SasPortalCustomer{ 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": "Returns a requested customer.", // "flatPath": "v1alpha1/customers/{customersId}", // "httpMethod": "GET", // "id": "prod_tt_sasportal.customers.get", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Required. The name of the customer.", // "location": "path", // "pattern": "^customers/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+name}", // "response": { // "$ref": "SasPortalCustomer" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.customers.list": type CustomersListCall struct { s *Service urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // List: Returns a list of requested customers. func (r *CustomersService) List() *CustomersListCall { c := &CustomersListCall{s: r.s, urlParams_: make(gensupport.URLParams)} return c } // PageSize sets the optional parameter "pageSize": The maximum number // of customers to return in the response. func (c *CustomersListCall) PageSize(pageSize int64) *CustomersListCall { c.urlParams_.Set("pageSize", fmt.Sprint(pageSize)) return c } // PageToken sets the optional parameter "pageToken": A pagination token // returned from a previous call to ListCustomers that indicates where // this listing should continue from. func (c *CustomersListCall) PageToken(pageToken string) *CustomersListCall { c.urlParams_.Set("pageToken", pageToken) 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 *CustomersListCall) Fields(s ...googleapi.Field) *CustomersListCall { 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 *CustomersListCall) IfNoneMatch(entityTag string) *CustomersListCall { 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 *CustomersListCall) Context(ctx context.Context) *CustomersListCall { 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 *CustomersListCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *CustomersListCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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, "v1alpha1/customers") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("GET", urls, body) if err != nil { return nil, err } req.Header = reqHeaders return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.customers.list" call. // Exactly one of *SasPortalListCustomersResponse or error will be // non-nil. Any non-2xx status code is an error. Response headers are in // either *SasPortalListCustomersResponse.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 *CustomersListCall) Do(opts ...googleapi.CallOption) (*SasPortalListCustomersResponse, 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 := &SasPortalListCustomersResponse{ 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": "Returns a list of requested customers.", // "flatPath": "v1alpha1/customers", // "httpMethod": "GET", // "id": "prod_tt_sasportal.customers.list", // "parameterOrder": [], // "parameters": { // "pageSize": { // "description": "The maximum number of customers to return in the response.", // "format": "int32", // "location": "query", // "type": "integer" // }, // "pageToken": { // "description": "A pagination token returned from a previous call to ListCustomers that indicates where this listing should continue from.", // "location": "query", // "type": "string" // } // }, // "path": "v1alpha1/customers", // "response": { // "$ref": "SasPortalListCustomersResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // Pages invokes f for each page of results. // A non-nil error returned from f will halt the iteration. // The provided context supersedes any context provided to the Context method. func (c *CustomersListCall) Pages(ctx context.Context, f func(*SasPortalListCustomersResponse) error) error { c.ctx_ = ctx defer c.PageToken(c.urlParams_.Get("pageToken")) // reset paging to original point for { x, err := c.Do() if err != nil { return err } if err := f(x); err != nil { return err } if x.NextPageToken == "" { return nil } c.PageToken(x.NextPageToken) } } // method id "prod_tt_sasportal.customers.patch": type CustomersPatchCall struct { s *Service name string sasportalcustomer *SasPortalCustomer urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Patch: Updates an existing customer. // // - name: Output only. Resource name of the customer. func (r *CustomersService) Patch(name string, sasportalcustomer *SasPortalCustomer) *CustomersPatchCall { c := &CustomersPatchCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name c.sasportalcustomer = sasportalcustomer return c } // UpdateMask sets the optional parameter "updateMask": Fields to be // updated. func (c *CustomersPatchCall) UpdateMask(updateMask string) *CustomersPatchCall { c.urlParams_.Set("updateMask", updateMask) 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 *CustomersPatchCall) Fields(s ...googleapi.Field) *CustomersPatchCall { 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 *CustomersPatchCall) Context(ctx context.Context) *CustomersPatchCall { 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 *CustomersPatchCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *CustomersPatchCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportalcustomer) 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, "v1alpha1/{+name}") 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{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.customers.patch" call. // Exactly one of *SasPortalCustomer or error will be non-nil. Any // non-2xx status code is an error. Response headers are in either // *SasPortalCustomer.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 *CustomersPatchCall) Do(opts ...googleapi.CallOption) (*SasPortalCustomer, 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 := &SasPortalCustomer{ 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 customer.", // "flatPath": "v1alpha1/customers/{customersId}", // "httpMethod": "PATCH", // "id": "prod_tt_sasportal.customers.patch", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Output only. Resource name of the customer.", // "location": "path", // "pattern": "^customers/[^/]+$", // "required": true, // "type": "string" // }, // "updateMask": { // "description": "Fields to be updated.", // "format": "google-fieldmask", // "location": "query", // "type": "string" // } // }, // "path": "v1alpha1/{+name}", // "request": { // "$ref": "SasPortalCustomer" // }, // "response": { // "$ref": "SasPortalCustomer" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.customers.deployments.create": type CustomersDeploymentsCreateCall struct { s *Service parent string sasportaldeployment *SasPortalDeployment urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Create: Creates a new deployment. // // - parent: The parent resource name where the deployment is to be // created. func (r *CustomersDeploymentsService) Create(parent string, sasportaldeployment *SasPortalDeployment) *CustomersDeploymentsCreateCall { c := &CustomersDeploymentsCreateCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.parent = parent c.sasportaldeployment = sasportaldeployment 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 *CustomersDeploymentsCreateCall) Fields(s ...googleapi.Field) *CustomersDeploymentsCreateCall { 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 *CustomersDeploymentsCreateCall) Context(ctx context.Context) *CustomersDeploymentsCreateCall { 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 *CustomersDeploymentsCreateCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *CustomersDeploymentsCreateCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportaldeployment) 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, "v1alpha1/{+parent}/deployments") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "parent": c.parent, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.customers.deployments.create" call. // Exactly one of *SasPortalDeployment or error will be non-nil. Any // non-2xx status code is an error. Response headers are in either // *SasPortalDeployment.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 *CustomersDeploymentsCreateCall) Do(opts ...googleapi.CallOption) (*SasPortalDeployment, 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 := &SasPortalDeployment{ 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": "Creates a new deployment.", // "flatPath": "v1alpha1/customers/{customersId}/deployments", // "httpMethod": "POST", // "id": "prod_tt_sasportal.customers.deployments.create", // "parameterOrder": [ // "parent" // ], // "parameters": { // "parent": { // "description": "Required. The parent resource name where the deployment is to be created.", // "location": "path", // "pattern": "^customers/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+parent}/deployments", // "request": { // "$ref": "SasPortalDeployment" // }, // "response": { // "$ref": "SasPortalDeployment" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.customers.deployments.delete": type CustomersDeploymentsDeleteCall struct { s *Service name string urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Delete: Deletes a deployment. // // - name: The name of the deployment. func (r *CustomersDeploymentsService) Delete(name string) *CustomersDeploymentsDeleteCall { c := &CustomersDeploymentsDeleteCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name 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 *CustomersDeploymentsDeleteCall) Fields(s ...googleapi.Field) *CustomersDeploymentsDeleteCall { 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 *CustomersDeploymentsDeleteCall) Context(ctx context.Context) *CustomersDeploymentsDeleteCall { 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 *CustomersDeploymentsDeleteCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *CustomersDeploymentsDeleteCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "v1alpha1/{+name}") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("DELETE", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.customers.deployments.delete" call. // Exactly one of *SasPortalEmpty or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalEmpty.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 *CustomersDeploymentsDeleteCall) Do(opts ...googleapi.CallOption) (*SasPortalEmpty, 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 := &SasPortalEmpty{ 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": "Deletes a deployment.", // "flatPath": "v1alpha1/customers/{customersId}/deployments/{deploymentsId}", // "httpMethod": "DELETE", // "id": "prod_tt_sasportal.customers.deployments.delete", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Required. The name of the deployment.", // "location": "path", // "pattern": "^customers/[^/]+/deployments/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+name}", // "response": { // "$ref": "SasPortalEmpty" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.customers.deployments.get": type CustomersDeploymentsGetCall struct { s *Service name string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // Get: Returns a requested deployment. // // - name: The name of the deployment. func (r *CustomersDeploymentsService) Get(name string) *CustomersDeploymentsGetCall { c := &CustomersDeploymentsGetCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name 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 *CustomersDeploymentsGetCall) Fields(s ...googleapi.Field) *CustomersDeploymentsGetCall { 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 *CustomersDeploymentsGetCall) IfNoneMatch(entityTag string) *CustomersDeploymentsGetCall { 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 *CustomersDeploymentsGetCall) Context(ctx context.Context) *CustomersDeploymentsGetCall { 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 *CustomersDeploymentsGetCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *CustomersDeploymentsGetCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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, "v1alpha1/{+name}") 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{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.customers.deployments.get" call. // Exactly one of *SasPortalDeployment or error will be non-nil. Any // non-2xx status code is an error. Response headers are in either // *SasPortalDeployment.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 *CustomersDeploymentsGetCall) Do(opts ...googleapi.CallOption) (*SasPortalDeployment, 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 := &SasPortalDeployment{ 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": "Returns a requested deployment.", // "flatPath": "v1alpha1/customers/{customersId}/deployments/{deploymentsId}", // "httpMethod": "GET", // "id": "prod_tt_sasportal.customers.deployments.get", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Required. The name of the deployment.", // "location": "path", // "pattern": "^customers/[^/]+/deployments/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+name}", // "response": { // "$ref": "SasPortalDeployment" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.customers.deployments.list": type CustomersDeploymentsListCall struct { s *Service parent string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // List: Lists deployments. // // - parent: The parent resource name, for example, "nodes/1", // customer/1/nodes/2. func (r *CustomersDeploymentsService) List(parent string) *CustomersDeploymentsListCall { c := &CustomersDeploymentsListCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.parent = parent return c } // Filter sets the optional parameter "filter": The filter expression. // The filter should have the following format: "DIRECT_CHILDREN" or // format: "direct_children". The filter is case insensitive. If empty, // then no deployments are filtered. func (c *CustomersDeploymentsListCall) Filter(filter string) *CustomersDeploymentsListCall { c.urlParams_.Set("filter", filter) return c } // PageSize sets the optional parameter "pageSize": The maximum number // of deployments to return in the response. func (c *CustomersDeploymentsListCall) PageSize(pageSize int64) *CustomersDeploymentsListCall { c.urlParams_.Set("pageSize", fmt.Sprint(pageSize)) return c } // PageToken sets the optional parameter "pageToken": A pagination token // returned from a previous call to ListDeployments that indicates where // this listing should continue from. func (c *CustomersDeploymentsListCall) PageToken(pageToken string) *CustomersDeploymentsListCall { c.urlParams_.Set("pageToken", pageToken) 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 *CustomersDeploymentsListCall) Fields(s ...googleapi.Field) *CustomersDeploymentsListCall { 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 *CustomersDeploymentsListCall) IfNoneMatch(entityTag string) *CustomersDeploymentsListCall { 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 *CustomersDeploymentsListCall) Context(ctx context.Context) *CustomersDeploymentsListCall { 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 *CustomersDeploymentsListCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *CustomersDeploymentsListCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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, "v1alpha1/{+parent}/deployments") 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{ "parent": c.parent, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.customers.deployments.list" call. // Exactly one of *SasPortalListDeploymentsResponse or error will be // non-nil. Any non-2xx status code is an error. Response headers are in // either *SasPortalListDeploymentsResponse.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 *CustomersDeploymentsListCall) Do(opts ...googleapi.CallOption) (*SasPortalListDeploymentsResponse, 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 := &SasPortalListDeploymentsResponse{ 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": "Lists deployments.", // "flatPath": "v1alpha1/customers/{customersId}/deployments", // "httpMethod": "GET", // "id": "prod_tt_sasportal.customers.deployments.list", // "parameterOrder": [ // "parent" // ], // "parameters": { // "filter": { // "description": "The filter expression. The filter should have the following format: \"DIRECT_CHILDREN\" or format: \"direct_children\". The filter is case insensitive. If empty, then no deployments are filtered.", // "location": "query", // "type": "string" // }, // "pageSize": { // "description": "The maximum number of deployments to return in the response.", // "format": "int32", // "location": "query", // "type": "integer" // }, // "pageToken": { // "description": "A pagination token returned from a previous call to ListDeployments that indicates where this listing should continue from.", // "location": "query", // "type": "string" // }, // "parent": { // "description": "Required. The parent resource name, for example, \"nodes/1\", customer/1/nodes/2.", // "location": "path", // "pattern": "^customers/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+parent}/deployments", // "response": { // "$ref": "SasPortalListDeploymentsResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // Pages invokes f for each page of results. // A non-nil error returned from f will halt the iteration. // The provided context supersedes any context provided to the Context method. func (c *CustomersDeploymentsListCall) Pages(ctx context.Context, f func(*SasPortalListDeploymentsResponse) error) error { c.ctx_ = ctx defer c.PageToken(c.urlParams_.Get("pageToken")) // reset paging to original point for { x, err := c.Do() if err != nil { return err } if err := f(x); err != nil { return err } if x.NextPageToken == "" { return nil } c.PageToken(x.NextPageToken) } } // method id "prod_tt_sasportal.customers.deployments.move": type CustomersDeploymentsMoveCall struct { s *Service name string sasportalmovedeploymentrequest *SasPortalMoveDeploymentRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Move: Moves a deployment under another node or customer. // // - name: The name of the deployment to move. func (r *CustomersDeploymentsService) Move(name string, sasportalmovedeploymentrequest *SasPortalMoveDeploymentRequest) *CustomersDeploymentsMoveCall { c := &CustomersDeploymentsMoveCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name c.sasportalmovedeploymentrequest = sasportalmovedeploymentrequest 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 *CustomersDeploymentsMoveCall) Fields(s ...googleapi.Field) *CustomersDeploymentsMoveCall { 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 *CustomersDeploymentsMoveCall) Context(ctx context.Context) *CustomersDeploymentsMoveCall { 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 *CustomersDeploymentsMoveCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *CustomersDeploymentsMoveCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportalmovedeploymentrequest) 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, "v1alpha1/{+name}:move") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.customers.deployments.move" call. // Exactly one of *SasPortalOperation or error will be non-nil. Any // non-2xx status code is an error. Response headers are in either // *SasPortalOperation.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 *CustomersDeploymentsMoveCall) Do(opts ...googleapi.CallOption) (*SasPortalOperation, 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 := &SasPortalOperation{ 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": "Moves a deployment under another node or customer.", // "flatPath": "v1alpha1/customers/{customersId}/deployments/{deploymentsId}:move", // "httpMethod": "POST", // "id": "prod_tt_sasportal.customers.deployments.move", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Required. The name of the deployment to move.", // "location": "path", // "pattern": "^customers/[^/]+/deployments/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+name}:move", // "request": { // "$ref": "SasPortalMoveDeploymentRequest" // }, // "response": { // "$ref": "SasPortalOperation" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.customers.deployments.patch": type CustomersDeploymentsPatchCall struct { s *Service name string sasportaldeployment *SasPortalDeployment urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Patch: Updates an existing deployment. // // - name: Output only. Resource name. func (r *CustomersDeploymentsService) Patch(name string, sasportaldeployment *SasPortalDeployment) *CustomersDeploymentsPatchCall { c := &CustomersDeploymentsPatchCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name c.sasportaldeployment = sasportaldeployment return c } // UpdateMask sets the optional parameter "updateMask": Fields to be // updated. func (c *CustomersDeploymentsPatchCall) UpdateMask(updateMask string) *CustomersDeploymentsPatchCall { c.urlParams_.Set("updateMask", updateMask) 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 *CustomersDeploymentsPatchCall) Fields(s ...googleapi.Field) *CustomersDeploymentsPatchCall { 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 *CustomersDeploymentsPatchCall) Context(ctx context.Context) *CustomersDeploymentsPatchCall { 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 *CustomersDeploymentsPatchCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *CustomersDeploymentsPatchCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportaldeployment) 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, "v1alpha1/{+name}") 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{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.customers.deployments.patch" call. // Exactly one of *SasPortalDeployment or error will be non-nil. Any // non-2xx status code is an error. Response headers are in either // *SasPortalDeployment.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 *CustomersDeploymentsPatchCall) Do(opts ...googleapi.CallOption) (*SasPortalDeployment, 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 := &SasPortalDeployment{ 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 deployment.", // "flatPath": "v1alpha1/customers/{customersId}/deployments/{deploymentsId}", // "httpMethod": "PATCH", // "id": "prod_tt_sasportal.customers.deployments.patch", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Output only. Resource name.", // "location": "path", // "pattern": "^customers/[^/]+/deployments/[^/]+$", // "required": true, // "type": "string" // }, // "updateMask": { // "description": "Fields to be updated.", // "format": "google-fieldmask", // "location": "query", // "type": "string" // } // }, // "path": "v1alpha1/{+name}", // "request": { // "$ref": "SasPortalDeployment" // }, // "response": { // "$ref": "SasPortalDeployment" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.customers.deployments.devices.create": type CustomersDeploymentsDevicesCreateCall struct { s *Service parent string sasportaldevice *SasPortalDevice urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Create: Creates a device under a node or customer. // // - parent: The name of the parent resource. func (r *CustomersDeploymentsDevicesService) Create(parent string, sasportaldevice *SasPortalDevice) *CustomersDeploymentsDevicesCreateCall { c := &CustomersDeploymentsDevicesCreateCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.parent = parent c.sasportaldevice = sasportaldevice 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 *CustomersDeploymentsDevicesCreateCall) Fields(s ...googleapi.Field) *CustomersDeploymentsDevicesCreateCall { 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 *CustomersDeploymentsDevicesCreateCall) Context(ctx context.Context) *CustomersDeploymentsDevicesCreateCall { 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 *CustomersDeploymentsDevicesCreateCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *CustomersDeploymentsDevicesCreateCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportaldevice) 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, "v1alpha1/{+parent}/devices") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "parent": c.parent, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.customers.deployments.devices.create" call. // Exactly one of *SasPortalDevice or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalDevice.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 *CustomersDeploymentsDevicesCreateCall) Do(opts ...googleapi.CallOption) (*SasPortalDevice, 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 := &SasPortalDevice{ 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": "Creates a device under a node or customer.", // "flatPath": "v1alpha1/customers/{customersId}/deployments/{deploymentsId}/devices", // "httpMethod": "POST", // "id": "prod_tt_sasportal.customers.deployments.devices.create", // "parameterOrder": [ // "parent" // ], // "parameters": { // "parent": { // "description": "Required. The name of the parent resource.", // "location": "path", // "pattern": "^customers/[^/]+/deployments/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+parent}/devices", // "request": { // "$ref": "SasPortalDevice" // }, // "response": { // "$ref": "SasPortalDevice" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.customers.deployments.devices.createSigned": type CustomersDeploymentsDevicesCreateSignedCall struct { s *Service parent string sasportalcreatesigneddevicerequest *SasPortalCreateSignedDeviceRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // CreateSigned: Creates a signed device under a node or customer. // // - parent: The name of the parent resource. func (r *CustomersDeploymentsDevicesService) CreateSigned(parent string, sasportalcreatesigneddevicerequest *SasPortalCreateSignedDeviceRequest) *CustomersDeploymentsDevicesCreateSignedCall { c := &CustomersDeploymentsDevicesCreateSignedCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.parent = parent c.sasportalcreatesigneddevicerequest = sasportalcreatesigneddevicerequest 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 *CustomersDeploymentsDevicesCreateSignedCall) Fields(s ...googleapi.Field) *CustomersDeploymentsDevicesCreateSignedCall { 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 *CustomersDeploymentsDevicesCreateSignedCall) Context(ctx context.Context) *CustomersDeploymentsDevicesCreateSignedCall { 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 *CustomersDeploymentsDevicesCreateSignedCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *CustomersDeploymentsDevicesCreateSignedCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportalcreatesigneddevicerequest) 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, "v1alpha1/{+parent}/devices:createSigned") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "parent": c.parent, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.customers.deployments.devices.createSigned" call. // Exactly one of *SasPortalDevice or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalDevice.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 *CustomersDeploymentsDevicesCreateSignedCall) Do(opts ...googleapi.CallOption) (*SasPortalDevice, 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 := &SasPortalDevice{ 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": "Creates a signed device under a node or customer.", // "flatPath": "v1alpha1/customers/{customersId}/deployments/{deploymentsId}/devices:createSigned", // "httpMethod": "POST", // "id": "prod_tt_sasportal.customers.deployments.devices.createSigned", // "parameterOrder": [ // "parent" // ], // "parameters": { // "parent": { // "description": "Required. The name of the parent resource.", // "location": "path", // "pattern": "^customers/[^/]+/deployments/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+parent}/devices:createSigned", // "request": { // "$ref": "SasPortalCreateSignedDeviceRequest" // }, // "response": { // "$ref": "SasPortalDevice" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.customers.deployments.devices.list": type CustomersDeploymentsDevicesListCall struct { s *Service parent string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // List: Lists devices under a node or customer. // // - parent: The name of the parent resource. func (r *CustomersDeploymentsDevicesService) List(parent string) *CustomersDeploymentsDevicesListCall { c := &CustomersDeploymentsDevicesListCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.parent = parent return c } // Filter sets the optional parameter "filter": The filter expression. // The filter should have one of the following formats: "sn=123454" or // "display_name=MyDevice". sn corresponds to serial number of the // device. The filter is case insensitive. func (c *CustomersDeploymentsDevicesListCall) Filter(filter string) *CustomersDeploymentsDevicesListCall { c.urlParams_.Set("filter", filter) return c } // PageSize sets the optional parameter "pageSize": The maximum number // of devices to return in the response. If empty or zero, all devices // will be listed. Must be in the range [0, 1000]. func (c *CustomersDeploymentsDevicesListCall) PageSize(pageSize int64) *CustomersDeploymentsDevicesListCall { c.urlParams_.Set("pageSize", fmt.Sprint(pageSize)) return c } // PageToken sets the optional parameter "pageToken": A pagination token // returned from a previous call to ListDevices that indicates where // this listing should continue from. func (c *CustomersDeploymentsDevicesListCall) PageToken(pageToken string) *CustomersDeploymentsDevicesListCall { c.urlParams_.Set("pageToken", pageToken) 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 *CustomersDeploymentsDevicesListCall) Fields(s ...googleapi.Field) *CustomersDeploymentsDevicesListCall { 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 *CustomersDeploymentsDevicesListCall) IfNoneMatch(entityTag string) *CustomersDeploymentsDevicesListCall { 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 *CustomersDeploymentsDevicesListCall) Context(ctx context.Context) *CustomersDeploymentsDevicesListCall { 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 *CustomersDeploymentsDevicesListCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *CustomersDeploymentsDevicesListCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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, "v1alpha1/{+parent}/devices") 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{ "parent": c.parent, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.customers.deployments.devices.list" call. // Exactly one of *SasPortalListDevicesResponse or error will be // non-nil. Any non-2xx status code is an error. Response headers are in // either *SasPortalListDevicesResponse.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 *CustomersDeploymentsDevicesListCall) Do(opts ...googleapi.CallOption) (*SasPortalListDevicesResponse, 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 := &SasPortalListDevicesResponse{ 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": "Lists devices under a node or customer.", // "flatPath": "v1alpha1/customers/{customersId}/deployments/{deploymentsId}/devices", // "httpMethod": "GET", // "id": "prod_tt_sasportal.customers.deployments.devices.list", // "parameterOrder": [ // "parent" // ], // "parameters": { // "filter": { // "description": "The filter expression. The filter should have one of the following formats: \"sn=123454\" or \"display_name=MyDevice\". sn corresponds to serial number of the device. The filter is case insensitive.", // "location": "query", // "type": "string" // }, // "pageSize": { // "description": "The maximum number of devices to return in the response. If empty or zero, all devices will be listed. Must be in the range [0, 1000].", // "format": "int32", // "location": "query", // "type": "integer" // }, // "pageToken": { // "description": "A pagination token returned from a previous call to ListDevices that indicates where this listing should continue from.", // "location": "query", // "type": "string" // }, // "parent": { // "description": "Required. The name of the parent resource.", // "location": "path", // "pattern": "^customers/[^/]+/deployments/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+parent}/devices", // "response": { // "$ref": "SasPortalListDevicesResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // Pages invokes f for each page of results. // A non-nil error returned from f will halt the iteration. // The provided context supersedes any context provided to the Context method. func (c *CustomersDeploymentsDevicesListCall) Pages(ctx context.Context, f func(*SasPortalListDevicesResponse) error) error { c.ctx_ = ctx defer c.PageToken(c.urlParams_.Get("pageToken")) // reset paging to original point for { x, err := c.Do() if err != nil { return err } if err := f(x); err != nil { return err } if x.NextPageToken == "" { return nil } c.PageToken(x.NextPageToken) } } // method id "prod_tt_sasportal.customers.devices.create": type CustomersDevicesCreateCall struct { s *Service parent string sasportaldevice *SasPortalDevice urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Create: Creates a device under a node or customer. // // - parent: The name of the parent resource. func (r *CustomersDevicesService) Create(parent string, sasportaldevice *SasPortalDevice) *CustomersDevicesCreateCall { c := &CustomersDevicesCreateCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.parent = parent c.sasportaldevice = sasportaldevice 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 *CustomersDevicesCreateCall) Fields(s ...googleapi.Field) *CustomersDevicesCreateCall { 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 *CustomersDevicesCreateCall) Context(ctx context.Context) *CustomersDevicesCreateCall { 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 *CustomersDevicesCreateCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *CustomersDevicesCreateCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportaldevice) 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, "v1alpha1/{+parent}/devices") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "parent": c.parent, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.customers.devices.create" call. // Exactly one of *SasPortalDevice or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalDevice.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 *CustomersDevicesCreateCall) Do(opts ...googleapi.CallOption) (*SasPortalDevice, 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 := &SasPortalDevice{ 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": "Creates a device under a node or customer.", // "flatPath": "v1alpha1/customers/{customersId}/devices", // "httpMethod": "POST", // "id": "prod_tt_sasportal.customers.devices.create", // "parameterOrder": [ // "parent" // ], // "parameters": { // "parent": { // "description": "Required. The name of the parent resource.", // "location": "path", // "pattern": "^customers/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+parent}/devices", // "request": { // "$ref": "SasPortalDevice" // }, // "response": { // "$ref": "SasPortalDevice" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.customers.devices.createSigned": type CustomersDevicesCreateSignedCall struct { s *Service parent string sasportalcreatesigneddevicerequest *SasPortalCreateSignedDeviceRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // CreateSigned: Creates a signed device under a node or customer. // // - parent: The name of the parent resource. func (r *CustomersDevicesService) CreateSigned(parent string, sasportalcreatesigneddevicerequest *SasPortalCreateSignedDeviceRequest) *CustomersDevicesCreateSignedCall { c := &CustomersDevicesCreateSignedCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.parent = parent c.sasportalcreatesigneddevicerequest = sasportalcreatesigneddevicerequest 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 *CustomersDevicesCreateSignedCall) Fields(s ...googleapi.Field) *CustomersDevicesCreateSignedCall { 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 *CustomersDevicesCreateSignedCall) Context(ctx context.Context) *CustomersDevicesCreateSignedCall { 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 *CustomersDevicesCreateSignedCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *CustomersDevicesCreateSignedCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportalcreatesigneddevicerequest) 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, "v1alpha1/{+parent}/devices:createSigned") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "parent": c.parent, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.customers.devices.createSigned" call. // Exactly one of *SasPortalDevice or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalDevice.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 *CustomersDevicesCreateSignedCall) Do(opts ...googleapi.CallOption) (*SasPortalDevice, 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 := &SasPortalDevice{ 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": "Creates a signed device under a node or customer.", // "flatPath": "v1alpha1/customers/{customersId}/devices:createSigned", // "httpMethod": "POST", // "id": "prod_tt_sasportal.customers.devices.createSigned", // "parameterOrder": [ // "parent" // ], // "parameters": { // "parent": { // "description": "Required. The name of the parent resource.", // "location": "path", // "pattern": "^customers/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+parent}/devices:createSigned", // "request": { // "$ref": "SasPortalCreateSignedDeviceRequest" // }, // "response": { // "$ref": "SasPortalDevice" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.customers.devices.delete": type CustomersDevicesDeleteCall struct { s *Service name string urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Delete: Deletes a device. // // - name: The name of the device. func (r *CustomersDevicesService) Delete(name string) *CustomersDevicesDeleteCall { c := &CustomersDevicesDeleteCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name 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 *CustomersDevicesDeleteCall) Fields(s ...googleapi.Field) *CustomersDevicesDeleteCall { 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 *CustomersDevicesDeleteCall) Context(ctx context.Context) *CustomersDevicesDeleteCall { 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 *CustomersDevicesDeleteCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *CustomersDevicesDeleteCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "v1alpha1/{+name}") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("DELETE", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.customers.devices.delete" call. // Exactly one of *SasPortalEmpty or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalEmpty.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 *CustomersDevicesDeleteCall) Do(opts ...googleapi.CallOption) (*SasPortalEmpty, 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 := &SasPortalEmpty{ 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": "Deletes a device.", // "flatPath": "v1alpha1/customers/{customersId}/devices/{devicesId}", // "httpMethod": "DELETE", // "id": "prod_tt_sasportal.customers.devices.delete", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Required. The name of the device.", // "location": "path", // "pattern": "^customers/[^/]+/devices/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+name}", // "response": { // "$ref": "SasPortalEmpty" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.customers.devices.get": type CustomersDevicesGetCall struct { s *Service name string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // Get: Gets details about a device. // // - name: The name of the device. func (r *CustomersDevicesService) Get(name string) *CustomersDevicesGetCall { c := &CustomersDevicesGetCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name 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 *CustomersDevicesGetCall) Fields(s ...googleapi.Field) *CustomersDevicesGetCall { 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 *CustomersDevicesGetCall) IfNoneMatch(entityTag string) *CustomersDevicesGetCall { 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 *CustomersDevicesGetCall) Context(ctx context.Context) *CustomersDevicesGetCall { 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 *CustomersDevicesGetCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *CustomersDevicesGetCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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, "v1alpha1/{+name}") 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{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.customers.devices.get" call. // Exactly one of *SasPortalDevice or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalDevice.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 *CustomersDevicesGetCall) Do(opts ...googleapi.CallOption) (*SasPortalDevice, 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 := &SasPortalDevice{ 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 details about a device.", // "flatPath": "v1alpha1/customers/{customersId}/devices/{devicesId}", // "httpMethod": "GET", // "id": "prod_tt_sasportal.customers.devices.get", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Required. The name of the device.", // "location": "path", // "pattern": "^customers/[^/]+/devices/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+name}", // "response": { // "$ref": "SasPortalDevice" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.customers.devices.list": type CustomersDevicesListCall struct { s *Service parent string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // List: Lists devices under a node or customer. // // - parent: The name of the parent resource. func (r *CustomersDevicesService) List(parent string) *CustomersDevicesListCall { c := &CustomersDevicesListCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.parent = parent return c } // Filter sets the optional parameter "filter": The filter expression. // The filter should have one of the following formats: "sn=123454" or // "display_name=MyDevice". sn corresponds to serial number of the // device. The filter is case insensitive. func (c *CustomersDevicesListCall) Filter(filter string) *CustomersDevicesListCall { c.urlParams_.Set("filter", filter) return c } // PageSize sets the optional parameter "pageSize": The maximum number // of devices to return in the response. If empty or zero, all devices // will be listed. Must be in the range [0, 1000]. func (c *CustomersDevicesListCall) PageSize(pageSize int64) *CustomersDevicesListCall { c.urlParams_.Set("pageSize", fmt.Sprint(pageSize)) return c } // PageToken sets the optional parameter "pageToken": A pagination token // returned from a previous call to ListDevices that indicates where // this listing should continue from. func (c *CustomersDevicesListCall) PageToken(pageToken string) *CustomersDevicesListCall { c.urlParams_.Set("pageToken", pageToken) 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 *CustomersDevicesListCall) Fields(s ...googleapi.Field) *CustomersDevicesListCall { 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 *CustomersDevicesListCall) IfNoneMatch(entityTag string) *CustomersDevicesListCall { 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 *CustomersDevicesListCall) Context(ctx context.Context) *CustomersDevicesListCall { 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 *CustomersDevicesListCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *CustomersDevicesListCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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, "v1alpha1/{+parent}/devices") 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{ "parent": c.parent, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.customers.devices.list" call. // Exactly one of *SasPortalListDevicesResponse or error will be // non-nil. Any non-2xx status code is an error. Response headers are in // either *SasPortalListDevicesResponse.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 *CustomersDevicesListCall) Do(opts ...googleapi.CallOption) (*SasPortalListDevicesResponse, 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 := &SasPortalListDevicesResponse{ 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": "Lists devices under a node or customer.", // "flatPath": "v1alpha1/customers/{customersId}/devices", // "httpMethod": "GET", // "id": "prod_tt_sasportal.customers.devices.list", // "parameterOrder": [ // "parent" // ], // "parameters": { // "filter": { // "description": "The filter expression. The filter should have one of the following formats: \"sn=123454\" or \"display_name=MyDevice\". sn corresponds to serial number of the device. The filter is case insensitive.", // "location": "query", // "type": "string" // }, // "pageSize": { // "description": "The maximum number of devices to return in the response. If empty or zero, all devices will be listed. Must be in the range [0, 1000].", // "format": "int32", // "location": "query", // "type": "integer" // }, // "pageToken": { // "description": "A pagination token returned from a previous call to ListDevices that indicates where this listing should continue from.", // "location": "query", // "type": "string" // }, // "parent": { // "description": "Required. The name of the parent resource.", // "location": "path", // "pattern": "^customers/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+parent}/devices", // "response": { // "$ref": "SasPortalListDevicesResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // Pages invokes f for each page of results. // A non-nil error returned from f will halt the iteration. // The provided context supersedes any context provided to the Context method. func (c *CustomersDevicesListCall) Pages(ctx context.Context, f func(*SasPortalListDevicesResponse) error) error { c.ctx_ = ctx defer c.PageToken(c.urlParams_.Get("pageToken")) // reset paging to original point for { x, err := c.Do() if err != nil { return err } if err := f(x); err != nil { return err } if x.NextPageToken == "" { return nil } c.PageToken(x.NextPageToken) } } // method id "prod_tt_sasportal.customers.devices.move": type CustomersDevicesMoveCall struct { s *Service name string sasportalmovedevicerequest *SasPortalMoveDeviceRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Move: Moves a device under another node or customer. // // - name: The name of the device to move. func (r *CustomersDevicesService) Move(name string, sasportalmovedevicerequest *SasPortalMoveDeviceRequest) *CustomersDevicesMoveCall { c := &CustomersDevicesMoveCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name c.sasportalmovedevicerequest = sasportalmovedevicerequest 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 *CustomersDevicesMoveCall) Fields(s ...googleapi.Field) *CustomersDevicesMoveCall { 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 *CustomersDevicesMoveCall) Context(ctx context.Context) *CustomersDevicesMoveCall { 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 *CustomersDevicesMoveCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *CustomersDevicesMoveCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportalmovedevicerequest) 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, "v1alpha1/{+name}:move") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.customers.devices.move" call. // Exactly one of *SasPortalOperation or error will be non-nil. Any // non-2xx status code is an error. Response headers are in either // *SasPortalOperation.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 *CustomersDevicesMoveCall) Do(opts ...googleapi.CallOption) (*SasPortalOperation, 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 := &SasPortalOperation{ 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": "Moves a device under another node or customer.", // "flatPath": "v1alpha1/customers/{customersId}/devices/{devicesId}:move", // "httpMethod": "POST", // "id": "prod_tt_sasportal.customers.devices.move", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Required. The name of the device to move.", // "location": "path", // "pattern": "^customers/[^/]+/devices/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+name}:move", // "request": { // "$ref": "SasPortalMoveDeviceRequest" // }, // "response": { // "$ref": "SasPortalOperation" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.customers.devices.patch": type CustomersDevicesPatchCall struct { s *Service name string sasportaldevice *SasPortalDevice urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Patch: Updates a device. // // - name: Output only. The resource path name. func (r *CustomersDevicesService) Patch(name string, sasportaldevice *SasPortalDevice) *CustomersDevicesPatchCall { c := &CustomersDevicesPatchCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name c.sasportaldevice = sasportaldevice return c } // UpdateMask sets the optional parameter "updateMask": Fields to be // updated. func (c *CustomersDevicesPatchCall) UpdateMask(updateMask string) *CustomersDevicesPatchCall { c.urlParams_.Set("updateMask", updateMask) 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 *CustomersDevicesPatchCall) Fields(s ...googleapi.Field) *CustomersDevicesPatchCall { 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 *CustomersDevicesPatchCall) Context(ctx context.Context) *CustomersDevicesPatchCall { 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 *CustomersDevicesPatchCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *CustomersDevicesPatchCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportaldevice) 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, "v1alpha1/{+name}") 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{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.customers.devices.patch" call. // Exactly one of *SasPortalDevice or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalDevice.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 *CustomersDevicesPatchCall) Do(opts ...googleapi.CallOption) (*SasPortalDevice, 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 := &SasPortalDevice{ 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 a device.", // "flatPath": "v1alpha1/customers/{customersId}/devices/{devicesId}", // "httpMethod": "PATCH", // "id": "prod_tt_sasportal.customers.devices.patch", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Output only. The resource path name.", // "location": "path", // "pattern": "^customers/[^/]+/devices/[^/]+$", // "required": true, // "type": "string" // }, // "updateMask": { // "description": "Fields to be updated.", // "format": "google-fieldmask", // "location": "query", // "type": "string" // } // }, // "path": "v1alpha1/{+name}", // "request": { // "$ref": "SasPortalDevice" // }, // "response": { // "$ref": "SasPortalDevice" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.customers.devices.signDevice": type CustomersDevicesSignDeviceCall struct { s *Service name string sasportalsigndevicerequest *SasPortalSignDeviceRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // SignDevice: Signs a device. // // - name: Output only. The resource path name. func (r *CustomersDevicesService) SignDevice(name string, sasportalsigndevicerequest *SasPortalSignDeviceRequest) *CustomersDevicesSignDeviceCall { c := &CustomersDevicesSignDeviceCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name c.sasportalsigndevicerequest = sasportalsigndevicerequest 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 *CustomersDevicesSignDeviceCall) Fields(s ...googleapi.Field) *CustomersDevicesSignDeviceCall { 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 *CustomersDevicesSignDeviceCall) Context(ctx context.Context) *CustomersDevicesSignDeviceCall { 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 *CustomersDevicesSignDeviceCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *CustomersDevicesSignDeviceCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportalsigndevicerequest) 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, "v1alpha1/{+name}:signDevice") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.customers.devices.signDevice" call. // Exactly one of *SasPortalEmpty or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalEmpty.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 *CustomersDevicesSignDeviceCall) Do(opts ...googleapi.CallOption) (*SasPortalEmpty, 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 := &SasPortalEmpty{ 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": "Signs a device.", // "flatPath": "v1alpha1/customers/{customersId}/devices/{devicesId}:signDevice", // "httpMethod": "POST", // "id": "prod_tt_sasportal.customers.devices.signDevice", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Output only. The resource path name.", // "location": "path", // "pattern": "^customers/[^/]+/devices/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+name}:signDevice", // "request": { // "$ref": "SasPortalSignDeviceRequest" // }, // "response": { // "$ref": "SasPortalEmpty" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.customers.devices.updateSigned": type CustomersDevicesUpdateSignedCall struct { s *Service name string sasportalupdatesigneddevicerequest *SasPortalUpdateSignedDeviceRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // UpdateSigned: Updates a signed device. // // - name: The name of the device to update. func (r *CustomersDevicesService) UpdateSigned(name string, sasportalupdatesigneddevicerequest *SasPortalUpdateSignedDeviceRequest) *CustomersDevicesUpdateSignedCall { c := &CustomersDevicesUpdateSignedCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name c.sasportalupdatesigneddevicerequest = sasportalupdatesigneddevicerequest 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 *CustomersDevicesUpdateSignedCall) Fields(s ...googleapi.Field) *CustomersDevicesUpdateSignedCall { 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 *CustomersDevicesUpdateSignedCall) Context(ctx context.Context) *CustomersDevicesUpdateSignedCall { 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 *CustomersDevicesUpdateSignedCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *CustomersDevicesUpdateSignedCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportalupdatesigneddevicerequest) 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, "v1alpha1/{+name}:updateSigned") 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{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.customers.devices.updateSigned" call. // Exactly one of *SasPortalDevice or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalDevice.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 *CustomersDevicesUpdateSignedCall) Do(opts ...googleapi.CallOption) (*SasPortalDevice, 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 := &SasPortalDevice{ 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 a signed device.", // "flatPath": "v1alpha1/customers/{customersId}/devices/{devicesId}:updateSigned", // "httpMethod": "PATCH", // "id": "prod_tt_sasportal.customers.devices.updateSigned", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Required. The name of the device to update.", // "location": "path", // "pattern": "^customers/[^/]+/devices/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+name}:updateSigned", // "request": { // "$ref": "SasPortalUpdateSignedDeviceRequest" // }, // "response": { // "$ref": "SasPortalDevice" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.customers.nodes.create": type CustomersNodesCreateCall struct { s *Service parent string sasportalnode *SasPortalNode urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Create: Creates a new node. // // - parent: The parent resource name where the node is to be created. func (r *CustomersNodesService) Create(parent string, sasportalnode *SasPortalNode) *CustomersNodesCreateCall { c := &CustomersNodesCreateCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.parent = parent c.sasportalnode = sasportalnode 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 *CustomersNodesCreateCall) Fields(s ...googleapi.Field) *CustomersNodesCreateCall { 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 *CustomersNodesCreateCall) Context(ctx context.Context) *CustomersNodesCreateCall { 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 *CustomersNodesCreateCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *CustomersNodesCreateCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportalnode) 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, "v1alpha1/{+parent}/nodes") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "parent": c.parent, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.customers.nodes.create" call. // Exactly one of *SasPortalNode or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalNode.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 *CustomersNodesCreateCall) Do(opts ...googleapi.CallOption) (*SasPortalNode, 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 := &SasPortalNode{ 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": "Creates a new node.", // "flatPath": "v1alpha1/customers/{customersId}/nodes", // "httpMethod": "POST", // "id": "prod_tt_sasportal.customers.nodes.create", // "parameterOrder": [ // "parent" // ], // "parameters": { // "parent": { // "description": "Required. The parent resource name where the node is to be created.", // "location": "path", // "pattern": "^customers/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+parent}/nodes", // "request": { // "$ref": "SasPortalNode" // }, // "response": { // "$ref": "SasPortalNode" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.customers.nodes.delete": type CustomersNodesDeleteCall struct { s *Service name string urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Delete: Deletes a node. // // - name: The name of the node. func (r *CustomersNodesService) Delete(name string) *CustomersNodesDeleteCall { c := &CustomersNodesDeleteCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name 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 *CustomersNodesDeleteCall) Fields(s ...googleapi.Field) *CustomersNodesDeleteCall { 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 *CustomersNodesDeleteCall) Context(ctx context.Context) *CustomersNodesDeleteCall { 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 *CustomersNodesDeleteCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *CustomersNodesDeleteCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "v1alpha1/{+name}") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("DELETE", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.customers.nodes.delete" call. // Exactly one of *SasPortalEmpty or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalEmpty.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 *CustomersNodesDeleteCall) Do(opts ...googleapi.CallOption) (*SasPortalEmpty, 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 := &SasPortalEmpty{ 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": "Deletes a node.", // "flatPath": "v1alpha1/customers/{customersId}/nodes/{nodesId}", // "httpMethod": "DELETE", // "id": "prod_tt_sasportal.customers.nodes.delete", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Required. The name of the node.", // "location": "path", // "pattern": "^customers/[^/]+/nodes/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+name}", // "response": { // "$ref": "SasPortalEmpty" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.customers.nodes.get": type CustomersNodesGetCall struct { s *Service name string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // Get: Returns a requested node. // // - name: The name of the node. func (r *CustomersNodesService) Get(name string) *CustomersNodesGetCall { c := &CustomersNodesGetCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name 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 *CustomersNodesGetCall) Fields(s ...googleapi.Field) *CustomersNodesGetCall { 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 *CustomersNodesGetCall) IfNoneMatch(entityTag string) *CustomersNodesGetCall { 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 *CustomersNodesGetCall) Context(ctx context.Context) *CustomersNodesGetCall { 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 *CustomersNodesGetCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *CustomersNodesGetCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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, "v1alpha1/{+name}") 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{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.customers.nodes.get" call. // Exactly one of *SasPortalNode or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalNode.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 *CustomersNodesGetCall) Do(opts ...googleapi.CallOption) (*SasPortalNode, 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 := &SasPortalNode{ 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": "Returns a requested node.", // "flatPath": "v1alpha1/customers/{customersId}/nodes/{nodesId}", // "httpMethod": "GET", // "id": "prod_tt_sasportal.customers.nodes.get", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Required. The name of the node.", // "location": "path", // "pattern": "^customers/[^/]+/nodes/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+name}", // "response": { // "$ref": "SasPortalNode" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.customers.nodes.list": type CustomersNodesListCall struct { s *Service parent string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // List: Lists nodes. // // - parent: The parent resource name, for example, "nodes/1". func (r *CustomersNodesService) List(parent string) *CustomersNodesListCall { c := &CustomersNodesListCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.parent = parent return c } // Filter sets the optional parameter "filter": The filter expression. // The filter should have the following format: "DIRECT_CHILDREN" or // format: "direct_children". The filter is case insensitive. If empty, // then no nodes are filtered. func (c *CustomersNodesListCall) Filter(filter string) *CustomersNodesListCall { c.urlParams_.Set("filter", filter) return c } // PageSize sets the optional parameter "pageSize": The maximum number // of nodes to return in the response. func (c *CustomersNodesListCall) PageSize(pageSize int64) *CustomersNodesListCall { c.urlParams_.Set("pageSize", fmt.Sprint(pageSize)) return c } // PageToken sets the optional parameter "pageToken": A pagination token // returned from a previous call to ListNodes that indicates where this // listing should continue from. func (c *CustomersNodesListCall) PageToken(pageToken string) *CustomersNodesListCall { c.urlParams_.Set("pageToken", pageToken) 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 *CustomersNodesListCall) Fields(s ...googleapi.Field) *CustomersNodesListCall { 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 *CustomersNodesListCall) IfNoneMatch(entityTag string) *CustomersNodesListCall { 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 *CustomersNodesListCall) Context(ctx context.Context) *CustomersNodesListCall { 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 *CustomersNodesListCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *CustomersNodesListCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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, "v1alpha1/{+parent}/nodes") 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{ "parent": c.parent, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.customers.nodes.list" call. // Exactly one of *SasPortalListNodesResponse or error will be non-nil. // Any non-2xx status code is an error. Response headers are in either // *SasPortalListNodesResponse.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 *CustomersNodesListCall) Do(opts ...googleapi.CallOption) (*SasPortalListNodesResponse, 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 := &SasPortalListNodesResponse{ 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": "Lists nodes.", // "flatPath": "v1alpha1/customers/{customersId}/nodes", // "httpMethod": "GET", // "id": "prod_tt_sasportal.customers.nodes.list", // "parameterOrder": [ // "parent" // ], // "parameters": { // "filter": { // "description": "The filter expression. The filter should have the following format: \"DIRECT_CHILDREN\" or format: \"direct_children\". The filter is case insensitive. If empty, then no nodes are filtered.", // "location": "query", // "type": "string" // }, // "pageSize": { // "description": "The maximum number of nodes to return in the response.", // "format": "int32", // "location": "query", // "type": "integer" // }, // "pageToken": { // "description": "A pagination token returned from a previous call to ListNodes that indicates where this listing should continue from.", // "location": "query", // "type": "string" // }, // "parent": { // "description": "Required. The parent resource name, for example, \"nodes/1\".", // "location": "path", // "pattern": "^customers/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+parent}/nodes", // "response": { // "$ref": "SasPortalListNodesResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // Pages invokes f for each page of results. // A non-nil error returned from f will halt the iteration. // The provided context supersedes any context provided to the Context method. func (c *CustomersNodesListCall) Pages(ctx context.Context, f func(*SasPortalListNodesResponse) error) error { c.ctx_ = ctx defer c.PageToken(c.urlParams_.Get("pageToken")) // reset paging to original point for { x, err := c.Do() if err != nil { return err } if err := f(x); err != nil { return err } if x.NextPageToken == "" { return nil } c.PageToken(x.NextPageToken) } } // method id "prod_tt_sasportal.customers.nodes.move": type CustomersNodesMoveCall struct { s *Service name string sasportalmovenoderequest *SasPortalMoveNodeRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Move: Moves a node under another node or customer. // // - name: The name of the node to move. func (r *CustomersNodesService) Move(name string, sasportalmovenoderequest *SasPortalMoveNodeRequest) *CustomersNodesMoveCall { c := &CustomersNodesMoveCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name c.sasportalmovenoderequest = sasportalmovenoderequest 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 *CustomersNodesMoveCall) Fields(s ...googleapi.Field) *CustomersNodesMoveCall { 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 *CustomersNodesMoveCall) Context(ctx context.Context) *CustomersNodesMoveCall { 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 *CustomersNodesMoveCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *CustomersNodesMoveCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportalmovenoderequest) 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, "v1alpha1/{+name}:move") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.customers.nodes.move" call. // Exactly one of *SasPortalOperation or error will be non-nil. Any // non-2xx status code is an error. Response headers are in either // *SasPortalOperation.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 *CustomersNodesMoveCall) Do(opts ...googleapi.CallOption) (*SasPortalOperation, 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 := &SasPortalOperation{ 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": "Moves a node under another node or customer.", // "flatPath": "v1alpha1/customers/{customersId}/nodes/{nodesId}:move", // "httpMethod": "POST", // "id": "prod_tt_sasportal.customers.nodes.move", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Required. The name of the node to move.", // "location": "path", // "pattern": "^customers/[^/]+/nodes/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+name}:move", // "request": { // "$ref": "SasPortalMoveNodeRequest" // }, // "response": { // "$ref": "SasPortalOperation" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.customers.nodes.patch": type CustomersNodesPatchCall struct { s *Service name string sasportalnode *SasPortalNode urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Patch: Updates an existing node. // // - name: Output only. Resource name. func (r *CustomersNodesService) Patch(name string, sasportalnode *SasPortalNode) *CustomersNodesPatchCall { c := &CustomersNodesPatchCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name c.sasportalnode = sasportalnode return c } // UpdateMask sets the optional parameter "updateMask": Fields to be // updated. func (c *CustomersNodesPatchCall) UpdateMask(updateMask string) *CustomersNodesPatchCall { c.urlParams_.Set("updateMask", updateMask) 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 *CustomersNodesPatchCall) Fields(s ...googleapi.Field) *CustomersNodesPatchCall { 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 *CustomersNodesPatchCall) Context(ctx context.Context) *CustomersNodesPatchCall { 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 *CustomersNodesPatchCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *CustomersNodesPatchCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportalnode) 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, "v1alpha1/{+name}") 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{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.customers.nodes.patch" call. // Exactly one of *SasPortalNode or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalNode.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 *CustomersNodesPatchCall) Do(opts ...googleapi.CallOption) (*SasPortalNode, 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 := &SasPortalNode{ 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 node.", // "flatPath": "v1alpha1/customers/{customersId}/nodes/{nodesId}", // "httpMethod": "PATCH", // "id": "prod_tt_sasportal.customers.nodes.patch", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Output only. Resource name.", // "location": "path", // "pattern": "^customers/[^/]+/nodes/[^/]+$", // "required": true, // "type": "string" // }, // "updateMask": { // "description": "Fields to be updated.", // "format": "google-fieldmask", // "location": "query", // "type": "string" // } // }, // "path": "v1alpha1/{+name}", // "request": { // "$ref": "SasPortalNode" // }, // "response": { // "$ref": "SasPortalNode" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.customers.nodes.deployments.create": type CustomersNodesDeploymentsCreateCall struct { s *Service parent string sasportaldeployment *SasPortalDeployment urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Create: Creates a new deployment. // // - parent: The parent resource name where the deployment is to be // created. func (r *CustomersNodesDeploymentsService) Create(parent string, sasportaldeployment *SasPortalDeployment) *CustomersNodesDeploymentsCreateCall { c := &CustomersNodesDeploymentsCreateCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.parent = parent c.sasportaldeployment = sasportaldeployment 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 *CustomersNodesDeploymentsCreateCall) Fields(s ...googleapi.Field) *CustomersNodesDeploymentsCreateCall { 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 *CustomersNodesDeploymentsCreateCall) Context(ctx context.Context) *CustomersNodesDeploymentsCreateCall { 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 *CustomersNodesDeploymentsCreateCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *CustomersNodesDeploymentsCreateCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportaldeployment) 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, "v1alpha1/{+parent}/deployments") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "parent": c.parent, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.customers.nodes.deployments.create" call. // Exactly one of *SasPortalDeployment or error will be non-nil. Any // non-2xx status code is an error. Response headers are in either // *SasPortalDeployment.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 *CustomersNodesDeploymentsCreateCall) Do(opts ...googleapi.CallOption) (*SasPortalDeployment, 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 := &SasPortalDeployment{ 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": "Creates a new deployment.", // "flatPath": "v1alpha1/customers/{customersId}/nodes/{nodesId}/deployments", // "httpMethod": "POST", // "id": "prod_tt_sasportal.customers.nodes.deployments.create", // "parameterOrder": [ // "parent" // ], // "parameters": { // "parent": { // "description": "Required. The parent resource name where the deployment is to be created.", // "location": "path", // "pattern": "^customers/[^/]+/nodes/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+parent}/deployments", // "request": { // "$ref": "SasPortalDeployment" // }, // "response": { // "$ref": "SasPortalDeployment" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.customers.nodes.deployments.list": type CustomersNodesDeploymentsListCall struct { s *Service parent string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // List: Lists deployments. // // - parent: The parent resource name, for example, "nodes/1", // customer/1/nodes/2. func (r *CustomersNodesDeploymentsService) List(parent string) *CustomersNodesDeploymentsListCall { c := &CustomersNodesDeploymentsListCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.parent = parent return c } // Filter sets the optional parameter "filter": The filter expression. // The filter should have the following format: "DIRECT_CHILDREN" or // format: "direct_children". The filter is case insensitive. If empty, // then no deployments are filtered. func (c *CustomersNodesDeploymentsListCall) Filter(filter string) *CustomersNodesDeploymentsListCall { c.urlParams_.Set("filter", filter) return c } // PageSize sets the optional parameter "pageSize": The maximum number // of deployments to return in the response. func (c *CustomersNodesDeploymentsListCall) PageSize(pageSize int64) *CustomersNodesDeploymentsListCall { c.urlParams_.Set("pageSize", fmt.Sprint(pageSize)) return c } // PageToken sets the optional parameter "pageToken": A pagination token // returned from a previous call to ListDeployments that indicates where // this listing should continue from. func (c *CustomersNodesDeploymentsListCall) PageToken(pageToken string) *CustomersNodesDeploymentsListCall { c.urlParams_.Set("pageToken", pageToken) 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 *CustomersNodesDeploymentsListCall) Fields(s ...googleapi.Field) *CustomersNodesDeploymentsListCall { 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 *CustomersNodesDeploymentsListCall) IfNoneMatch(entityTag string) *CustomersNodesDeploymentsListCall { 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 *CustomersNodesDeploymentsListCall) Context(ctx context.Context) *CustomersNodesDeploymentsListCall { 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 *CustomersNodesDeploymentsListCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *CustomersNodesDeploymentsListCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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, "v1alpha1/{+parent}/deployments") 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{ "parent": c.parent, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.customers.nodes.deployments.list" call. // Exactly one of *SasPortalListDeploymentsResponse or error will be // non-nil. Any non-2xx status code is an error. Response headers are in // either *SasPortalListDeploymentsResponse.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 *CustomersNodesDeploymentsListCall) Do(opts ...googleapi.CallOption) (*SasPortalListDeploymentsResponse, 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 := &SasPortalListDeploymentsResponse{ 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": "Lists deployments.", // "flatPath": "v1alpha1/customers/{customersId}/nodes/{nodesId}/deployments", // "httpMethod": "GET", // "id": "prod_tt_sasportal.customers.nodes.deployments.list", // "parameterOrder": [ // "parent" // ], // "parameters": { // "filter": { // "description": "The filter expression. The filter should have the following format: \"DIRECT_CHILDREN\" or format: \"direct_children\". The filter is case insensitive. If empty, then no deployments are filtered.", // "location": "query", // "type": "string" // }, // "pageSize": { // "description": "The maximum number of deployments to return in the response.", // "format": "int32", // "location": "query", // "type": "integer" // }, // "pageToken": { // "description": "A pagination token returned from a previous call to ListDeployments that indicates where this listing should continue from.", // "location": "query", // "type": "string" // }, // "parent": { // "description": "Required. The parent resource name, for example, \"nodes/1\", customer/1/nodes/2.", // "location": "path", // "pattern": "^customers/[^/]+/nodes/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+parent}/deployments", // "response": { // "$ref": "SasPortalListDeploymentsResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // Pages invokes f for each page of results. // A non-nil error returned from f will halt the iteration. // The provided context supersedes any context provided to the Context method. func (c *CustomersNodesDeploymentsListCall) Pages(ctx context.Context, f func(*SasPortalListDeploymentsResponse) error) error { c.ctx_ = ctx defer c.PageToken(c.urlParams_.Get("pageToken")) // reset paging to original point for { x, err := c.Do() if err != nil { return err } if err := f(x); err != nil { return err } if x.NextPageToken == "" { return nil } c.PageToken(x.NextPageToken) } } // method id "prod_tt_sasportal.customers.nodes.devices.create": type CustomersNodesDevicesCreateCall struct { s *Service parent string sasportaldevice *SasPortalDevice urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Create: Creates a device under a node or customer. // // - parent: The name of the parent resource. func (r *CustomersNodesDevicesService) Create(parent string, sasportaldevice *SasPortalDevice) *CustomersNodesDevicesCreateCall { c := &CustomersNodesDevicesCreateCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.parent = parent c.sasportaldevice = sasportaldevice 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 *CustomersNodesDevicesCreateCall) Fields(s ...googleapi.Field) *CustomersNodesDevicesCreateCall { 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 *CustomersNodesDevicesCreateCall) Context(ctx context.Context) *CustomersNodesDevicesCreateCall { 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 *CustomersNodesDevicesCreateCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *CustomersNodesDevicesCreateCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportaldevice) 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, "v1alpha1/{+parent}/devices") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "parent": c.parent, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.customers.nodes.devices.create" call. // Exactly one of *SasPortalDevice or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalDevice.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 *CustomersNodesDevicesCreateCall) Do(opts ...googleapi.CallOption) (*SasPortalDevice, 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 := &SasPortalDevice{ 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": "Creates a device under a node or customer.", // "flatPath": "v1alpha1/customers/{customersId}/nodes/{nodesId}/devices", // "httpMethod": "POST", // "id": "prod_tt_sasportal.customers.nodes.devices.create", // "parameterOrder": [ // "parent" // ], // "parameters": { // "parent": { // "description": "Required. The name of the parent resource.", // "location": "path", // "pattern": "^customers/[^/]+/nodes/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+parent}/devices", // "request": { // "$ref": "SasPortalDevice" // }, // "response": { // "$ref": "SasPortalDevice" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.customers.nodes.devices.createSigned": type CustomersNodesDevicesCreateSignedCall struct { s *Service parent string sasportalcreatesigneddevicerequest *SasPortalCreateSignedDeviceRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // CreateSigned: Creates a signed device under a node or customer. // // - parent: The name of the parent resource. func (r *CustomersNodesDevicesService) CreateSigned(parent string, sasportalcreatesigneddevicerequest *SasPortalCreateSignedDeviceRequest) *CustomersNodesDevicesCreateSignedCall { c := &CustomersNodesDevicesCreateSignedCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.parent = parent c.sasportalcreatesigneddevicerequest = sasportalcreatesigneddevicerequest 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 *CustomersNodesDevicesCreateSignedCall) Fields(s ...googleapi.Field) *CustomersNodesDevicesCreateSignedCall { 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 *CustomersNodesDevicesCreateSignedCall) Context(ctx context.Context) *CustomersNodesDevicesCreateSignedCall { 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 *CustomersNodesDevicesCreateSignedCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *CustomersNodesDevicesCreateSignedCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportalcreatesigneddevicerequest) 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, "v1alpha1/{+parent}/devices:createSigned") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "parent": c.parent, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.customers.nodes.devices.createSigned" call. // Exactly one of *SasPortalDevice or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalDevice.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 *CustomersNodesDevicesCreateSignedCall) Do(opts ...googleapi.CallOption) (*SasPortalDevice, 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 := &SasPortalDevice{ 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": "Creates a signed device under a node or customer.", // "flatPath": "v1alpha1/customers/{customersId}/nodes/{nodesId}/devices:createSigned", // "httpMethod": "POST", // "id": "prod_tt_sasportal.customers.nodes.devices.createSigned", // "parameterOrder": [ // "parent" // ], // "parameters": { // "parent": { // "description": "Required. The name of the parent resource.", // "location": "path", // "pattern": "^customers/[^/]+/nodes/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+parent}/devices:createSigned", // "request": { // "$ref": "SasPortalCreateSignedDeviceRequest" // }, // "response": { // "$ref": "SasPortalDevice" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.customers.nodes.devices.list": type CustomersNodesDevicesListCall struct { s *Service parent string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // List: Lists devices under a node or customer. // // - parent: The name of the parent resource. func (r *CustomersNodesDevicesService) List(parent string) *CustomersNodesDevicesListCall { c := &CustomersNodesDevicesListCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.parent = parent return c } // Filter sets the optional parameter "filter": The filter expression. // The filter should have one of the following formats: "sn=123454" or // "display_name=MyDevice". sn corresponds to serial number of the // device. The filter is case insensitive. func (c *CustomersNodesDevicesListCall) Filter(filter string) *CustomersNodesDevicesListCall { c.urlParams_.Set("filter", filter) return c } // PageSize sets the optional parameter "pageSize": The maximum number // of devices to return in the response. If empty or zero, all devices // will be listed. Must be in the range [0, 1000]. func (c *CustomersNodesDevicesListCall) PageSize(pageSize int64) *CustomersNodesDevicesListCall { c.urlParams_.Set("pageSize", fmt.Sprint(pageSize)) return c } // PageToken sets the optional parameter "pageToken": A pagination token // returned from a previous call to ListDevices that indicates where // this listing should continue from. func (c *CustomersNodesDevicesListCall) PageToken(pageToken string) *CustomersNodesDevicesListCall { c.urlParams_.Set("pageToken", pageToken) 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 *CustomersNodesDevicesListCall) Fields(s ...googleapi.Field) *CustomersNodesDevicesListCall { 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 *CustomersNodesDevicesListCall) IfNoneMatch(entityTag string) *CustomersNodesDevicesListCall { 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 *CustomersNodesDevicesListCall) Context(ctx context.Context) *CustomersNodesDevicesListCall { 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 *CustomersNodesDevicesListCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *CustomersNodesDevicesListCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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, "v1alpha1/{+parent}/devices") 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{ "parent": c.parent, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.customers.nodes.devices.list" call. // Exactly one of *SasPortalListDevicesResponse or error will be // non-nil. Any non-2xx status code is an error. Response headers are in // either *SasPortalListDevicesResponse.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 *CustomersNodesDevicesListCall) Do(opts ...googleapi.CallOption) (*SasPortalListDevicesResponse, 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 := &SasPortalListDevicesResponse{ 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": "Lists devices under a node or customer.", // "flatPath": "v1alpha1/customers/{customersId}/nodes/{nodesId}/devices", // "httpMethod": "GET", // "id": "prod_tt_sasportal.customers.nodes.devices.list", // "parameterOrder": [ // "parent" // ], // "parameters": { // "filter": { // "description": "The filter expression. The filter should have one of the following formats: \"sn=123454\" or \"display_name=MyDevice\". sn corresponds to serial number of the device. The filter is case insensitive.", // "location": "query", // "type": "string" // }, // "pageSize": { // "description": "The maximum number of devices to return in the response. If empty or zero, all devices will be listed. Must be in the range [0, 1000].", // "format": "int32", // "location": "query", // "type": "integer" // }, // "pageToken": { // "description": "A pagination token returned from a previous call to ListDevices that indicates where this listing should continue from.", // "location": "query", // "type": "string" // }, // "parent": { // "description": "Required. The name of the parent resource.", // "location": "path", // "pattern": "^customers/[^/]+/nodes/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+parent}/devices", // "response": { // "$ref": "SasPortalListDevicesResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // Pages invokes f for each page of results. // A non-nil error returned from f will halt the iteration. // The provided context supersedes any context provided to the Context method. func (c *CustomersNodesDevicesListCall) Pages(ctx context.Context, f func(*SasPortalListDevicesResponse) error) error { c.ctx_ = ctx defer c.PageToken(c.urlParams_.Get("pageToken")) // reset paging to original point for { x, err := c.Do() if err != nil { return err } if err := f(x); err != nil { return err } if x.NextPageToken == "" { return nil } c.PageToken(x.NextPageToken) } } // method id "prod_tt_sasportal.customers.nodes.nodes.create": type CustomersNodesNodesCreateCall struct { s *Service parent string sasportalnode *SasPortalNode urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Create: Creates a new node. // // - parent: The parent resource name where the node is to be created. func (r *CustomersNodesNodesService) Create(parent string, sasportalnode *SasPortalNode) *CustomersNodesNodesCreateCall { c := &CustomersNodesNodesCreateCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.parent = parent c.sasportalnode = sasportalnode 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 *CustomersNodesNodesCreateCall) Fields(s ...googleapi.Field) *CustomersNodesNodesCreateCall { 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 *CustomersNodesNodesCreateCall) Context(ctx context.Context) *CustomersNodesNodesCreateCall { 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 *CustomersNodesNodesCreateCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *CustomersNodesNodesCreateCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportalnode) 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, "v1alpha1/{+parent}/nodes") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "parent": c.parent, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.customers.nodes.nodes.create" call. // Exactly one of *SasPortalNode or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalNode.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 *CustomersNodesNodesCreateCall) Do(opts ...googleapi.CallOption) (*SasPortalNode, 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 := &SasPortalNode{ 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": "Creates a new node.", // "flatPath": "v1alpha1/customers/{customersId}/nodes/{nodesId}/nodes", // "httpMethod": "POST", // "id": "prod_tt_sasportal.customers.nodes.nodes.create", // "parameterOrder": [ // "parent" // ], // "parameters": { // "parent": { // "description": "Required. The parent resource name where the node is to be created.", // "location": "path", // "pattern": "^customers/[^/]+/nodes/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+parent}/nodes", // "request": { // "$ref": "SasPortalNode" // }, // "response": { // "$ref": "SasPortalNode" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.customers.nodes.nodes.list": type CustomersNodesNodesListCall struct { s *Service parent string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // List: Lists nodes. // // - parent: The parent resource name, for example, "nodes/1". func (r *CustomersNodesNodesService) List(parent string) *CustomersNodesNodesListCall { c := &CustomersNodesNodesListCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.parent = parent return c } // Filter sets the optional parameter "filter": The filter expression. // The filter should have the following format: "DIRECT_CHILDREN" or // format: "direct_children". The filter is case insensitive. If empty, // then no nodes are filtered. func (c *CustomersNodesNodesListCall) Filter(filter string) *CustomersNodesNodesListCall { c.urlParams_.Set("filter", filter) return c } // PageSize sets the optional parameter "pageSize": The maximum number // of nodes to return in the response. func (c *CustomersNodesNodesListCall) PageSize(pageSize int64) *CustomersNodesNodesListCall { c.urlParams_.Set("pageSize", fmt.Sprint(pageSize)) return c } // PageToken sets the optional parameter "pageToken": A pagination token // returned from a previous call to ListNodes that indicates where this // listing should continue from. func (c *CustomersNodesNodesListCall) PageToken(pageToken string) *CustomersNodesNodesListCall { c.urlParams_.Set("pageToken", pageToken) 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 *CustomersNodesNodesListCall) Fields(s ...googleapi.Field) *CustomersNodesNodesListCall { 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 *CustomersNodesNodesListCall) IfNoneMatch(entityTag string) *CustomersNodesNodesListCall { 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 *CustomersNodesNodesListCall) Context(ctx context.Context) *CustomersNodesNodesListCall { 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 *CustomersNodesNodesListCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *CustomersNodesNodesListCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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, "v1alpha1/{+parent}/nodes") 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{ "parent": c.parent, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.customers.nodes.nodes.list" call. // Exactly one of *SasPortalListNodesResponse or error will be non-nil. // Any non-2xx status code is an error. Response headers are in either // *SasPortalListNodesResponse.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 *CustomersNodesNodesListCall) Do(opts ...googleapi.CallOption) (*SasPortalListNodesResponse, 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 := &SasPortalListNodesResponse{ 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": "Lists nodes.", // "flatPath": "v1alpha1/customers/{customersId}/nodes/{nodesId}/nodes", // "httpMethod": "GET", // "id": "prod_tt_sasportal.customers.nodes.nodes.list", // "parameterOrder": [ // "parent" // ], // "parameters": { // "filter": { // "description": "The filter expression. The filter should have the following format: \"DIRECT_CHILDREN\" or format: \"direct_children\". The filter is case insensitive. If empty, then no nodes are filtered.", // "location": "query", // "type": "string" // }, // "pageSize": { // "description": "The maximum number of nodes to return in the response.", // "format": "int32", // "location": "query", // "type": "integer" // }, // "pageToken": { // "description": "A pagination token returned from a previous call to ListNodes that indicates where this listing should continue from.", // "location": "query", // "type": "string" // }, // "parent": { // "description": "Required. The parent resource name, for example, \"nodes/1\".", // "location": "path", // "pattern": "^customers/[^/]+/nodes/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+parent}/nodes", // "response": { // "$ref": "SasPortalListNodesResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // Pages invokes f for each page of results. // A non-nil error returned from f will halt the iteration. // The provided context supersedes any context provided to the Context method. func (c *CustomersNodesNodesListCall) Pages(ctx context.Context, f func(*SasPortalListNodesResponse) error) error { c.ctx_ = ctx defer c.PageToken(c.urlParams_.Get("pageToken")) // reset paging to original point for { x, err := c.Do() if err != nil { return err } if err := f(x); err != nil { return err } if x.NextPageToken == "" { return nil } c.PageToken(x.NextPageToken) } } // method id "prod_tt_sasportal.deployments.get": type DeploymentsGetCall struct { s *Service name string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // Get: Returns a requested deployment. // // - name: The name of the deployment. func (r *DeploymentsService) Get(name string) *DeploymentsGetCall { c := &DeploymentsGetCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name 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 *DeploymentsGetCall) Fields(s ...googleapi.Field) *DeploymentsGetCall { 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 *DeploymentsGetCall) IfNoneMatch(entityTag string) *DeploymentsGetCall { 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 *DeploymentsGetCall) Context(ctx context.Context) *DeploymentsGetCall { 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 *DeploymentsGetCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *DeploymentsGetCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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, "v1alpha1/{+name}") 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{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.deployments.get" call. // Exactly one of *SasPortalDeployment or error will be non-nil. Any // non-2xx status code is an error. Response headers are in either // *SasPortalDeployment.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 *DeploymentsGetCall) Do(opts ...googleapi.CallOption) (*SasPortalDeployment, 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 := &SasPortalDeployment{ 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": "Returns a requested deployment.", // "flatPath": "v1alpha1/deployments/{deploymentsId}", // "httpMethod": "GET", // "id": "prod_tt_sasportal.deployments.get", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Required. The name of the deployment.", // "location": "path", // "pattern": "^deployments/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+name}", // "response": { // "$ref": "SasPortalDeployment" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.deployments.devices.delete": type DeploymentsDevicesDeleteCall struct { s *Service name string urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Delete: Deletes a device. // // - name: The name of the device. func (r *DeploymentsDevicesService) Delete(name string) *DeploymentsDevicesDeleteCall { c := &DeploymentsDevicesDeleteCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name 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 *DeploymentsDevicesDeleteCall) Fields(s ...googleapi.Field) *DeploymentsDevicesDeleteCall { 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 *DeploymentsDevicesDeleteCall) Context(ctx context.Context) *DeploymentsDevicesDeleteCall { 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 *DeploymentsDevicesDeleteCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *DeploymentsDevicesDeleteCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "v1alpha1/{+name}") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("DELETE", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.deployments.devices.delete" call. // Exactly one of *SasPortalEmpty or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalEmpty.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 *DeploymentsDevicesDeleteCall) Do(opts ...googleapi.CallOption) (*SasPortalEmpty, 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 := &SasPortalEmpty{ 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": "Deletes a device.", // "flatPath": "v1alpha1/deployments/{deploymentsId}/devices/{devicesId}", // "httpMethod": "DELETE", // "id": "prod_tt_sasportal.deployments.devices.delete", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Required. The name of the device.", // "location": "path", // "pattern": "^deployments/[^/]+/devices/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+name}", // "response": { // "$ref": "SasPortalEmpty" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.deployments.devices.get": type DeploymentsDevicesGetCall struct { s *Service name string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // Get: Gets details about a device. // // - name: The name of the device. func (r *DeploymentsDevicesService) Get(name string) *DeploymentsDevicesGetCall { c := &DeploymentsDevicesGetCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name 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 *DeploymentsDevicesGetCall) Fields(s ...googleapi.Field) *DeploymentsDevicesGetCall { 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 *DeploymentsDevicesGetCall) IfNoneMatch(entityTag string) *DeploymentsDevicesGetCall { 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 *DeploymentsDevicesGetCall) Context(ctx context.Context) *DeploymentsDevicesGetCall { 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 *DeploymentsDevicesGetCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *DeploymentsDevicesGetCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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, "v1alpha1/{+name}") 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{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.deployments.devices.get" call. // Exactly one of *SasPortalDevice or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalDevice.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 *DeploymentsDevicesGetCall) Do(opts ...googleapi.CallOption) (*SasPortalDevice, 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 := &SasPortalDevice{ 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 details about a device.", // "flatPath": "v1alpha1/deployments/{deploymentsId}/devices/{devicesId}", // "httpMethod": "GET", // "id": "prod_tt_sasportal.deployments.devices.get", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Required. The name of the device.", // "location": "path", // "pattern": "^deployments/[^/]+/devices/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+name}", // "response": { // "$ref": "SasPortalDevice" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.deployments.devices.move": type DeploymentsDevicesMoveCall struct { s *Service name string sasportalmovedevicerequest *SasPortalMoveDeviceRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Move: Moves a device under another node or customer. // // - name: The name of the device to move. func (r *DeploymentsDevicesService) Move(name string, sasportalmovedevicerequest *SasPortalMoveDeviceRequest) *DeploymentsDevicesMoveCall { c := &DeploymentsDevicesMoveCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name c.sasportalmovedevicerequest = sasportalmovedevicerequest 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 *DeploymentsDevicesMoveCall) Fields(s ...googleapi.Field) *DeploymentsDevicesMoveCall { 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 *DeploymentsDevicesMoveCall) Context(ctx context.Context) *DeploymentsDevicesMoveCall { 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 *DeploymentsDevicesMoveCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *DeploymentsDevicesMoveCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportalmovedevicerequest) 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, "v1alpha1/{+name}:move") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.deployments.devices.move" call. // Exactly one of *SasPortalOperation or error will be non-nil. Any // non-2xx status code is an error. Response headers are in either // *SasPortalOperation.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 *DeploymentsDevicesMoveCall) Do(opts ...googleapi.CallOption) (*SasPortalOperation, 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 := &SasPortalOperation{ 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": "Moves a device under another node or customer.", // "flatPath": "v1alpha1/deployments/{deploymentsId}/devices/{devicesId}:move", // "httpMethod": "POST", // "id": "prod_tt_sasportal.deployments.devices.move", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Required. The name of the device to move.", // "location": "path", // "pattern": "^deployments/[^/]+/devices/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+name}:move", // "request": { // "$ref": "SasPortalMoveDeviceRequest" // }, // "response": { // "$ref": "SasPortalOperation" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.deployments.devices.patch": type DeploymentsDevicesPatchCall struct { s *Service name string sasportaldevice *SasPortalDevice urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Patch: Updates a device. // // - name: Output only. The resource path name. func (r *DeploymentsDevicesService) Patch(name string, sasportaldevice *SasPortalDevice) *DeploymentsDevicesPatchCall { c := &DeploymentsDevicesPatchCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name c.sasportaldevice = sasportaldevice return c } // UpdateMask sets the optional parameter "updateMask": Fields to be // updated. func (c *DeploymentsDevicesPatchCall) UpdateMask(updateMask string) *DeploymentsDevicesPatchCall { c.urlParams_.Set("updateMask", updateMask) 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 *DeploymentsDevicesPatchCall) Fields(s ...googleapi.Field) *DeploymentsDevicesPatchCall { 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 *DeploymentsDevicesPatchCall) Context(ctx context.Context) *DeploymentsDevicesPatchCall { 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 *DeploymentsDevicesPatchCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *DeploymentsDevicesPatchCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportaldevice) 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, "v1alpha1/{+name}") 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{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.deployments.devices.patch" call. // Exactly one of *SasPortalDevice or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalDevice.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 *DeploymentsDevicesPatchCall) Do(opts ...googleapi.CallOption) (*SasPortalDevice, 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 := &SasPortalDevice{ 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 a device.", // "flatPath": "v1alpha1/deployments/{deploymentsId}/devices/{devicesId}", // "httpMethod": "PATCH", // "id": "prod_tt_sasportal.deployments.devices.patch", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Output only. The resource path name.", // "location": "path", // "pattern": "^deployments/[^/]+/devices/[^/]+$", // "required": true, // "type": "string" // }, // "updateMask": { // "description": "Fields to be updated.", // "format": "google-fieldmask", // "location": "query", // "type": "string" // } // }, // "path": "v1alpha1/{+name}", // "request": { // "$ref": "SasPortalDevice" // }, // "response": { // "$ref": "SasPortalDevice" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.deployments.devices.signDevice": type DeploymentsDevicesSignDeviceCall struct { s *Service name string sasportalsigndevicerequest *SasPortalSignDeviceRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // SignDevice: Signs a device. // // - name: Output only. The resource path name. func (r *DeploymentsDevicesService) SignDevice(name string, sasportalsigndevicerequest *SasPortalSignDeviceRequest) *DeploymentsDevicesSignDeviceCall { c := &DeploymentsDevicesSignDeviceCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name c.sasportalsigndevicerequest = sasportalsigndevicerequest 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 *DeploymentsDevicesSignDeviceCall) Fields(s ...googleapi.Field) *DeploymentsDevicesSignDeviceCall { 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 *DeploymentsDevicesSignDeviceCall) Context(ctx context.Context) *DeploymentsDevicesSignDeviceCall { 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 *DeploymentsDevicesSignDeviceCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *DeploymentsDevicesSignDeviceCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportalsigndevicerequest) 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, "v1alpha1/{+name}:signDevice") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.deployments.devices.signDevice" call. // Exactly one of *SasPortalEmpty or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalEmpty.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 *DeploymentsDevicesSignDeviceCall) Do(opts ...googleapi.CallOption) (*SasPortalEmpty, 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 := &SasPortalEmpty{ 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": "Signs a device.", // "flatPath": "v1alpha1/deployments/{deploymentsId}/devices/{devicesId}:signDevice", // "httpMethod": "POST", // "id": "prod_tt_sasportal.deployments.devices.signDevice", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Output only. The resource path name.", // "location": "path", // "pattern": "^deployments/[^/]+/devices/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+name}:signDevice", // "request": { // "$ref": "SasPortalSignDeviceRequest" // }, // "response": { // "$ref": "SasPortalEmpty" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.deployments.devices.updateSigned": type DeploymentsDevicesUpdateSignedCall struct { s *Service name string sasportalupdatesigneddevicerequest *SasPortalUpdateSignedDeviceRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // UpdateSigned: Updates a signed device. // // - name: The name of the device to update. func (r *DeploymentsDevicesService) UpdateSigned(name string, sasportalupdatesigneddevicerequest *SasPortalUpdateSignedDeviceRequest) *DeploymentsDevicesUpdateSignedCall { c := &DeploymentsDevicesUpdateSignedCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name c.sasportalupdatesigneddevicerequest = sasportalupdatesigneddevicerequest 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 *DeploymentsDevicesUpdateSignedCall) Fields(s ...googleapi.Field) *DeploymentsDevicesUpdateSignedCall { 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 *DeploymentsDevicesUpdateSignedCall) Context(ctx context.Context) *DeploymentsDevicesUpdateSignedCall { 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 *DeploymentsDevicesUpdateSignedCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *DeploymentsDevicesUpdateSignedCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportalupdatesigneddevicerequest) 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, "v1alpha1/{+name}:updateSigned") 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{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.deployments.devices.updateSigned" call. // Exactly one of *SasPortalDevice or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalDevice.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 *DeploymentsDevicesUpdateSignedCall) Do(opts ...googleapi.CallOption) (*SasPortalDevice, 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 := &SasPortalDevice{ 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 a signed device.", // "flatPath": "v1alpha1/deployments/{deploymentsId}/devices/{devicesId}:updateSigned", // "httpMethod": "PATCH", // "id": "prod_tt_sasportal.deployments.devices.updateSigned", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Required. The name of the device to update.", // "location": "path", // "pattern": "^deployments/[^/]+/devices/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+name}:updateSigned", // "request": { // "$ref": "SasPortalUpdateSignedDeviceRequest" // }, // "response": { // "$ref": "SasPortalDevice" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.installer.generateSecret": type InstallerGenerateSecretCall struct { s *Service sasportalgeneratesecretrequest *SasPortalGenerateSecretRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // GenerateSecret: Generates a secret to be used with the // ValidateInstaller. func (r *InstallerService) GenerateSecret(sasportalgeneratesecretrequest *SasPortalGenerateSecretRequest) *InstallerGenerateSecretCall { c := &InstallerGenerateSecretCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.sasportalgeneratesecretrequest = sasportalgeneratesecretrequest 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 *InstallerGenerateSecretCall) Fields(s ...googleapi.Field) *InstallerGenerateSecretCall { 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 *InstallerGenerateSecretCall) Context(ctx context.Context) *InstallerGenerateSecretCall { 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 *InstallerGenerateSecretCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *InstallerGenerateSecretCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportalgeneratesecretrequest) 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, "v1alpha1/installer:generateSecret") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.installer.generateSecret" call. // Exactly one of *SasPortalGenerateSecretResponse or error will be // non-nil. Any non-2xx status code is an error. Response headers are in // either *SasPortalGenerateSecretResponse.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 *InstallerGenerateSecretCall) Do(opts ...googleapi.CallOption) (*SasPortalGenerateSecretResponse, 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 := &SasPortalGenerateSecretResponse{ 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": "Generates a secret to be used with the ValidateInstaller.", // "flatPath": "v1alpha1/installer:generateSecret", // "httpMethod": "POST", // "id": "prod_tt_sasportal.installer.generateSecret", // "parameterOrder": [], // "parameters": {}, // "path": "v1alpha1/installer:generateSecret", // "request": { // "$ref": "SasPortalGenerateSecretRequest" // }, // "response": { // "$ref": "SasPortalGenerateSecretResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.installer.validate": type InstallerValidateCall struct { s *Service sasportalvalidateinstallerrequest *SasPortalValidateInstallerRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Validate: Validates the identity of a Certified Professional // Installer (CPI). func (r *InstallerService) Validate(sasportalvalidateinstallerrequest *SasPortalValidateInstallerRequest) *InstallerValidateCall { c := &InstallerValidateCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.sasportalvalidateinstallerrequest = sasportalvalidateinstallerrequest 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 *InstallerValidateCall) Fields(s ...googleapi.Field) *InstallerValidateCall { 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 *InstallerValidateCall) Context(ctx context.Context) *InstallerValidateCall { 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 *InstallerValidateCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *InstallerValidateCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportalvalidateinstallerrequest) 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, "v1alpha1/installer:validate") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.installer.validate" call. // Exactly one of *SasPortalValidateInstallerResponse or error will be // non-nil. Any non-2xx status code is an error. Response headers are in // either *SasPortalValidateInstallerResponse.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 *InstallerValidateCall) Do(opts ...googleapi.CallOption) (*SasPortalValidateInstallerResponse, 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 := &SasPortalValidateInstallerResponse{ 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": "Validates the identity of a Certified Professional Installer (CPI).", // "flatPath": "v1alpha1/installer:validate", // "httpMethod": "POST", // "id": "prod_tt_sasportal.installer.validate", // "parameterOrder": [], // "parameters": {}, // "path": "v1alpha1/installer:validate", // "request": { // "$ref": "SasPortalValidateInstallerRequest" // }, // "response": { // "$ref": "SasPortalValidateInstallerResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.nodes.get": type NodesGetCall struct { s *Service name string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // Get: Returns a requested node. // // - name: The name of the node. func (r *NodesService) Get(name string) *NodesGetCall { c := &NodesGetCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name 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 *NodesGetCall) Fields(s ...googleapi.Field) *NodesGetCall { 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 *NodesGetCall) IfNoneMatch(entityTag string) *NodesGetCall { 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 *NodesGetCall) Context(ctx context.Context) *NodesGetCall { 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 *NodesGetCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *NodesGetCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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, "v1alpha1/{+name}") 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{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.nodes.get" call. // Exactly one of *SasPortalNode or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalNode.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 *NodesGetCall) Do(opts ...googleapi.CallOption) (*SasPortalNode, 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 := &SasPortalNode{ 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": "Returns a requested node.", // "flatPath": "v1alpha1/nodes/{nodesId}", // "httpMethod": "GET", // "id": "prod_tt_sasportal.nodes.get", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Required. The name of the node.", // "location": "path", // "pattern": "^nodes/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+name}", // "response": { // "$ref": "SasPortalNode" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.nodes.deployments.delete": type NodesDeploymentsDeleteCall struct { s *Service name string urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Delete: Deletes a deployment. // // - name: The name of the deployment. func (r *NodesDeploymentsService) Delete(name string) *NodesDeploymentsDeleteCall { c := &NodesDeploymentsDeleteCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name 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 *NodesDeploymentsDeleteCall) Fields(s ...googleapi.Field) *NodesDeploymentsDeleteCall { 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 *NodesDeploymentsDeleteCall) Context(ctx context.Context) *NodesDeploymentsDeleteCall { 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 *NodesDeploymentsDeleteCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *NodesDeploymentsDeleteCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "v1alpha1/{+name}") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("DELETE", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.nodes.deployments.delete" call. // Exactly one of *SasPortalEmpty or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalEmpty.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 *NodesDeploymentsDeleteCall) Do(opts ...googleapi.CallOption) (*SasPortalEmpty, 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 := &SasPortalEmpty{ 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": "Deletes a deployment.", // "flatPath": "v1alpha1/nodes/{nodesId}/deployments/{deploymentsId}", // "httpMethod": "DELETE", // "id": "prod_tt_sasportal.nodes.deployments.delete", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Required. The name of the deployment.", // "location": "path", // "pattern": "^nodes/[^/]+/deployments/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+name}", // "response": { // "$ref": "SasPortalEmpty" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.nodes.deployments.get": type NodesDeploymentsGetCall struct { s *Service name string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // Get: Returns a requested deployment. // // - name: The name of the deployment. func (r *NodesDeploymentsService) Get(name string) *NodesDeploymentsGetCall { c := &NodesDeploymentsGetCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name 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 *NodesDeploymentsGetCall) Fields(s ...googleapi.Field) *NodesDeploymentsGetCall { 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 *NodesDeploymentsGetCall) IfNoneMatch(entityTag string) *NodesDeploymentsGetCall { 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 *NodesDeploymentsGetCall) Context(ctx context.Context) *NodesDeploymentsGetCall { 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 *NodesDeploymentsGetCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *NodesDeploymentsGetCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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, "v1alpha1/{+name}") 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{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.nodes.deployments.get" call. // Exactly one of *SasPortalDeployment or error will be non-nil. Any // non-2xx status code is an error. Response headers are in either // *SasPortalDeployment.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 *NodesDeploymentsGetCall) Do(opts ...googleapi.CallOption) (*SasPortalDeployment, 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 := &SasPortalDeployment{ 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": "Returns a requested deployment.", // "flatPath": "v1alpha1/nodes/{nodesId}/deployments/{deploymentsId}", // "httpMethod": "GET", // "id": "prod_tt_sasportal.nodes.deployments.get", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Required. The name of the deployment.", // "location": "path", // "pattern": "^nodes/[^/]+/deployments/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+name}", // "response": { // "$ref": "SasPortalDeployment" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.nodes.deployments.list": type NodesDeploymentsListCall struct { s *Service parent string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // List: Lists deployments. // // - parent: The parent resource name, for example, "nodes/1", // customer/1/nodes/2. func (r *NodesDeploymentsService) List(parent string) *NodesDeploymentsListCall { c := &NodesDeploymentsListCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.parent = parent return c } // Filter sets the optional parameter "filter": The filter expression. // The filter should have the following format: "DIRECT_CHILDREN" or // format: "direct_children". The filter is case insensitive. If empty, // then no deployments are filtered. func (c *NodesDeploymentsListCall) Filter(filter string) *NodesDeploymentsListCall { c.urlParams_.Set("filter", filter) return c } // PageSize sets the optional parameter "pageSize": The maximum number // of deployments to return in the response. func (c *NodesDeploymentsListCall) PageSize(pageSize int64) *NodesDeploymentsListCall { c.urlParams_.Set("pageSize", fmt.Sprint(pageSize)) return c } // PageToken sets the optional parameter "pageToken": A pagination token // returned from a previous call to ListDeployments that indicates where // this listing should continue from. func (c *NodesDeploymentsListCall) PageToken(pageToken string) *NodesDeploymentsListCall { c.urlParams_.Set("pageToken", pageToken) 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 *NodesDeploymentsListCall) Fields(s ...googleapi.Field) *NodesDeploymentsListCall { 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 *NodesDeploymentsListCall) IfNoneMatch(entityTag string) *NodesDeploymentsListCall { 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 *NodesDeploymentsListCall) Context(ctx context.Context) *NodesDeploymentsListCall { 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 *NodesDeploymentsListCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *NodesDeploymentsListCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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, "v1alpha1/{+parent}/deployments") 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{ "parent": c.parent, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.nodes.deployments.list" call. // Exactly one of *SasPortalListDeploymentsResponse or error will be // non-nil. Any non-2xx status code is an error. Response headers are in // either *SasPortalListDeploymentsResponse.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 *NodesDeploymentsListCall) Do(opts ...googleapi.CallOption) (*SasPortalListDeploymentsResponse, 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 := &SasPortalListDeploymentsResponse{ 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": "Lists deployments.", // "flatPath": "v1alpha1/nodes/{nodesId}/deployments", // "httpMethod": "GET", // "id": "prod_tt_sasportal.nodes.deployments.list", // "parameterOrder": [ // "parent" // ], // "parameters": { // "filter": { // "description": "The filter expression. The filter should have the following format: \"DIRECT_CHILDREN\" or format: \"direct_children\". The filter is case insensitive. If empty, then no deployments are filtered.", // "location": "query", // "type": "string" // }, // "pageSize": { // "description": "The maximum number of deployments to return in the response.", // "format": "int32", // "location": "query", // "type": "integer" // }, // "pageToken": { // "description": "A pagination token returned from a previous call to ListDeployments that indicates where this listing should continue from.", // "location": "query", // "type": "string" // }, // "parent": { // "description": "Required. The parent resource name, for example, \"nodes/1\", customer/1/nodes/2.", // "location": "path", // "pattern": "^nodes/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+parent}/deployments", // "response": { // "$ref": "SasPortalListDeploymentsResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // Pages invokes f for each page of results. // A non-nil error returned from f will halt the iteration. // The provided context supersedes any context provided to the Context method. func (c *NodesDeploymentsListCall) Pages(ctx context.Context, f func(*SasPortalListDeploymentsResponse) error) error { c.ctx_ = ctx defer c.PageToken(c.urlParams_.Get("pageToken")) // reset paging to original point for { x, err := c.Do() if err != nil { return err } if err := f(x); err != nil { return err } if x.NextPageToken == "" { return nil } c.PageToken(x.NextPageToken) } } // method id "prod_tt_sasportal.nodes.deployments.move": type NodesDeploymentsMoveCall struct { s *Service name string sasportalmovedeploymentrequest *SasPortalMoveDeploymentRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Move: Moves a deployment under another node or customer. // // - name: The name of the deployment to move. func (r *NodesDeploymentsService) Move(name string, sasportalmovedeploymentrequest *SasPortalMoveDeploymentRequest) *NodesDeploymentsMoveCall { c := &NodesDeploymentsMoveCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name c.sasportalmovedeploymentrequest = sasportalmovedeploymentrequest 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 *NodesDeploymentsMoveCall) Fields(s ...googleapi.Field) *NodesDeploymentsMoveCall { 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 *NodesDeploymentsMoveCall) Context(ctx context.Context) *NodesDeploymentsMoveCall { 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 *NodesDeploymentsMoveCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *NodesDeploymentsMoveCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportalmovedeploymentrequest) 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, "v1alpha1/{+name}:move") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.nodes.deployments.move" call. // Exactly one of *SasPortalOperation or error will be non-nil. Any // non-2xx status code is an error. Response headers are in either // *SasPortalOperation.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 *NodesDeploymentsMoveCall) Do(opts ...googleapi.CallOption) (*SasPortalOperation, 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 := &SasPortalOperation{ 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": "Moves a deployment under another node or customer.", // "flatPath": "v1alpha1/nodes/{nodesId}/deployments/{deploymentsId}:move", // "httpMethod": "POST", // "id": "prod_tt_sasportal.nodes.deployments.move", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Required. The name of the deployment to move.", // "location": "path", // "pattern": "^nodes/[^/]+/deployments/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+name}:move", // "request": { // "$ref": "SasPortalMoveDeploymentRequest" // }, // "response": { // "$ref": "SasPortalOperation" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.nodes.deployments.patch": type NodesDeploymentsPatchCall struct { s *Service name string sasportaldeployment *SasPortalDeployment urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Patch: Updates an existing deployment. // // - name: Output only. Resource name. func (r *NodesDeploymentsService) Patch(name string, sasportaldeployment *SasPortalDeployment) *NodesDeploymentsPatchCall { c := &NodesDeploymentsPatchCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name c.sasportaldeployment = sasportaldeployment return c } // UpdateMask sets the optional parameter "updateMask": Fields to be // updated. func (c *NodesDeploymentsPatchCall) UpdateMask(updateMask string) *NodesDeploymentsPatchCall { c.urlParams_.Set("updateMask", updateMask) 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 *NodesDeploymentsPatchCall) Fields(s ...googleapi.Field) *NodesDeploymentsPatchCall { 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 *NodesDeploymentsPatchCall) Context(ctx context.Context) *NodesDeploymentsPatchCall { 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 *NodesDeploymentsPatchCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *NodesDeploymentsPatchCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportaldeployment) 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, "v1alpha1/{+name}") 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{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.nodes.deployments.patch" call. // Exactly one of *SasPortalDeployment or error will be non-nil. Any // non-2xx status code is an error. Response headers are in either // *SasPortalDeployment.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 *NodesDeploymentsPatchCall) Do(opts ...googleapi.CallOption) (*SasPortalDeployment, 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 := &SasPortalDeployment{ 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 deployment.", // "flatPath": "v1alpha1/nodes/{nodesId}/deployments/{deploymentsId}", // "httpMethod": "PATCH", // "id": "prod_tt_sasportal.nodes.deployments.patch", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Output only. Resource name.", // "location": "path", // "pattern": "^nodes/[^/]+/deployments/[^/]+$", // "required": true, // "type": "string" // }, // "updateMask": { // "description": "Fields to be updated.", // "format": "google-fieldmask", // "location": "query", // "type": "string" // } // }, // "path": "v1alpha1/{+name}", // "request": { // "$ref": "SasPortalDeployment" // }, // "response": { // "$ref": "SasPortalDeployment" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.nodes.deployments.devices.create": type NodesDeploymentsDevicesCreateCall struct { s *Service parent string sasportaldevice *SasPortalDevice urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Create: Creates a device under a node or customer. // // - parent: The name of the parent resource. func (r *NodesDeploymentsDevicesService) Create(parent string, sasportaldevice *SasPortalDevice) *NodesDeploymentsDevicesCreateCall { c := &NodesDeploymentsDevicesCreateCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.parent = parent c.sasportaldevice = sasportaldevice 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 *NodesDeploymentsDevicesCreateCall) Fields(s ...googleapi.Field) *NodesDeploymentsDevicesCreateCall { 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 *NodesDeploymentsDevicesCreateCall) Context(ctx context.Context) *NodesDeploymentsDevicesCreateCall { 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 *NodesDeploymentsDevicesCreateCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *NodesDeploymentsDevicesCreateCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportaldevice) 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, "v1alpha1/{+parent}/devices") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "parent": c.parent, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.nodes.deployments.devices.create" call. // Exactly one of *SasPortalDevice or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalDevice.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 *NodesDeploymentsDevicesCreateCall) Do(opts ...googleapi.CallOption) (*SasPortalDevice, 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 := &SasPortalDevice{ 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": "Creates a device under a node or customer.", // "flatPath": "v1alpha1/nodes/{nodesId}/deployments/{deploymentsId}/devices", // "httpMethod": "POST", // "id": "prod_tt_sasportal.nodes.deployments.devices.create", // "parameterOrder": [ // "parent" // ], // "parameters": { // "parent": { // "description": "Required. The name of the parent resource.", // "location": "path", // "pattern": "^nodes/[^/]+/deployments/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+parent}/devices", // "request": { // "$ref": "SasPortalDevice" // }, // "response": { // "$ref": "SasPortalDevice" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.nodes.deployments.devices.createSigned": type NodesDeploymentsDevicesCreateSignedCall struct { s *Service parent string sasportalcreatesigneddevicerequest *SasPortalCreateSignedDeviceRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // CreateSigned: Creates a signed device under a node or customer. // // - parent: The name of the parent resource. func (r *NodesDeploymentsDevicesService) CreateSigned(parent string, sasportalcreatesigneddevicerequest *SasPortalCreateSignedDeviceRequest) *NodesDeploymentsDevicesCreateSignedCall { c := &NodesDeploymentsDevicesCreateSignedCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.parent = parent c.sasportalcreatesigneddevicerequest = sasportalcreatesigneddevicerequest 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 *NodesDeploymentsDevicesCreateSignedCall) Fields(s ...googleapi.Field) *NodesDeploymentsDevicesCreateSignedCall { 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 *NodesDeploymentsDevicesCreateSignedCall) Context(ctx context.Context) *NodesDeploymentsDevicesCreateSignedCall { 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 *NodesDeploymentsDevicesCreateSignedCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *NodesDeploymentsDevicesCreateSignedCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportalcreatesigneddevicerequest) 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, "v1alpha1/{+parent}/devices:createSigned") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "parent": c.parent, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.nodes.deployments.devices.createSigned" call. // Exactly one of *SasPortalDevice or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalDevice.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 *NodesDeploymentsDevicesCreateSignedCall) Do(opts ...googleapi.CallOption) (*SasPortalDevice, 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 := &SasPortalDevice{ 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": "Creates a signed device under a node or customer.", // "flatPath": "v1alpha1/nodes/{nodesId}/deployments/{deploymentsId}/devices:createSigned", // "httpMethod": "POST", // "id": "prod_tt_sasportal.nodes.deployments.devices.createSigned", // "parameterOrder": [ // "parent" // ], // "parameters": { // "parent": { // "description": "Required. The name of the parent resource.", // "location": "path", // "pattern": "^nodes/[^/]+/deployments/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+parent}/devices:createSigned", // "request": { // "$ref": "SasPortalCreateSignedDeviceRequest" // }, // "response": { // "$ref": "SasPortalDevice" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.nodes.deployments.devices.list": type NodesDeploymentsDevicesListCall struct { s *Service parent string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // List: Lists devices under a node or customer. // // - parent: The name of the parent resource. func (r *NodesDeploymentsDevicesService) List(parent string) *NodesDeploymentsDevicesListCall { c := &NodesDeploymentsDevicesListCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.parent = parent return c } // Filter sets the optional parameter "filter": The filter expression. // The filter should have one of the following formats: "sn=123454" or // "display_name=MyDevice". sn corresponds to serial number of the // device. The filter is case insensitive. func (c *NodesDeploymentsDevicesListCall) Filter(filter string) *NodesDeploymentsDevicesListCall { c.urlParams_.Set("filter", filter) return c } // PageSize sets the optional parameter "pageSize": The maximum number // of devices to return in the response. If empty or zero, all devices // will be listed. Must be in the range [0, 1000]. func (c *NodesDeploymentsDevicesListCall) PageSize(pageSize int64) *NodesDeploymentsDevicesListCall { c.urlParams_.Set("pageSize", fmt.Sprint(pageSize)) return c } // PageToken sets the optional parameter "pageToken": A pagination token // returned from a previous call to ListDevices that indicates where // this listing should continue from. func (c *NodesDeploymentsDevicesListCall) PageToken(pageToken string) *NodesDeploymentsDevicesListCall { c.urlParams_.Set("pageToken", pageToken) 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 *NodesDeploymentsDevicesListCall) Fields(s ...googleapi.Field) *NodesDeploymentsDevicesListCall { 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 *NodesDeploymentsDevicesListCall) IfNoneMatch(entityTag string) *NodesDeploymentsDevicesListCall { 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 *NodesDeploymentsDevicesListCall) Context(ctx context.Context) *NodesDeploymentsDevicesListCall { 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 *NodesDeploymentsDevicesListCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *NodesDeploymentsDevicesListCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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, "v1alpha1/{+parent}/devices") 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{ "parent": c.parent, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.nodes.deployments.devices.list" call. // Exactly one of *SasPortalListDevicesResponse or error will be // non-nil. Any non-2xx status code is an error. Response headers are in // either *SasPortalListDevicesResponse.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 *NodesDeploymentsDevicesListCall) Do(opts ...googleapi.CallOption) (*SasPortalListDevicesResponse, 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 := &SasPortalListDevicesResponse{ 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": "Lists devices under a node or customer.", // "flatPath": "v1alpha1/nodes/{nodesId}/deployments/{deploymentsId}/devices", // "httpMethod": "GET", // "id": "prod_tt_sasportal.nodes.deployments.devices.list", // "parameterOrder": [ // "parent" // ], // "parameters": { // "filter": { // "description": "The filter expression. The filter should have one of the following formats: \"sn=123454\" or \"display_name=MyDevice\". sn corresponds to serial number of the device. The filter is case insensitive.", // "location": "query", // "type": "string" // }, // "pageSize": { // "description": "The maximum number of devices to return in the response. If empty or zero, all devices will be listed. Must be in the range [0, 1000].", // "format": "int32", // "location": "query", // "type": "integer" // }, // "pageToken": { // "description": "A pagination token returned from a previous call to ListDevices that indicates where this listing should continue from.", // "location": "query", // "type": "string" // }, // "parent": { // "description": "Required. The name of the parent resource.", // "location": "path", // "pattern": "^nodes/[^/]+/deployments/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+parent}/devices", // "response": { // "$ref": "SasPortalListDevicesResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // Pages invokes f for each page of results. // A non-nil error returned from f will halt the iteration. // The provided context supersedes any context provided to the Context method. func (c *NodesDeploymentsDevicesListCall) Pages(ctx context.Context, f func(*SasPortalListDevicesResponse) error) error { c.ctx_ = ctx defer c.PageToken(c.urlParams_.Get("pageToken")) // reset paging to original point for { x, err := c.Do() if err != nil { return err } if err := f(x); err != nil { return err } if x.NextPageToken == "" { return nil } c.PageToken(x.NextPageToken) } } // method id "prod_tt_sasportal.nodes.devices.create": type NodesDevicesCreateCall struct { s *Service parent string sasportaldevice *SasPortalDevice urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Create: Creates a device under a node or customer. // // - parent: The name of the parent resource. func (r *NodesDevicesService) Create(parent string, sasportaldevice *SasPortalDevice) *NodesDevicesCreateCall { c := &NodesDevicesCreateCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.parent = parent c.sasportaldevice = sasportaldevice 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 *NodesDevicesCreateCall) Fields(s ...googleapi.Field) *NodesDevicesCreateCall { 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 *NodesDevicesCreateCall) Context(ctx context.Context) *NodesDevicesCreateCall { 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 *NodesDevicesCreateCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *NodesDevicesCreateCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportaldevice) 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, "v1alpha1/{+parent}/devices") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "parent": c.parent, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.nodes.devices.create" call. // Exactly one of *SasPortalDevice or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalDevice.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 *NodesDevicesCreateCall) Do(opts ...googleapi.CallOption) (*SasPortalDevice, 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 := &SasPortalDevice{ 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": "Creates a device under a node or customer.", // "flatPath": "v1alpha1/nodes/{nodesId}/devices", // "httpMethod": "POST", // "id": "prod_tt_sasportal.nodes.devices.create", // "parameterOrder": [ // "parent" // ], // "parameters": { // "parent": { // "description": "Required. The name of the parent resource.", // "location": "path", // "pattern": "^nodes/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+parent}/devices", // "request": { // "$ref": "SasPortalDevice" // }, // "response": { // "$ref": "SasPortalDevice" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.nodes.devices.createSigned": type NodesDevicesCreateSignedCall struct { s *Service parent string sasportalcreatesigneddevicerequest *SasPortalCreateSignedDeviceRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // CreateSigned: Creates a signed device under a node or customer. // // - parent: The name of the parent resource. func (r *NodesDevicesService) CreateSigned(parent string, sasportalcreatesigneddevicerequest *SasPortalCreateSignedDeviceRequest) *NodesDevicesCreateSignedCall { c := &NodesDevicesCreateSignedCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.parent = parent c.sasportalcreatesigneddevicerequest = sasportalcreatesigneddevicerequest 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 *NodesDevicesCreateSignedCall) Fields(s ...googleapi.Field) *NodesDevicesCreateSignedCall { 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 *NodesDevicesCreateSignedCall) Context(ctx context.Context) *NodesDevicesCreateSignedCall { 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 *NodesDevicesCreateSignedCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *NodesDevicesCreateSignedCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportalcreatesigneddevicerequest) 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, "v1alpha1/{+parent}/devices:createSigned") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "parent": c.parent, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.nodes.devices.createSigned" call. // Exactly one of *SasPortalDevice or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalDevice.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 *NodesDevicesCreateSignedCall) Do(opts ...googleapi.CallOption) (*SasPortalDevice, 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 := &SasPortalDevice{ 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": "Creates a signed device under a node or customer.", // "flatPath": "v1alpha1/nodes/{nodesId}/devices:createSigned", // "httpMethod": "POST", // "id": "prod_tt_sasportal.nodes.devices.createSigned", // "parameterOrder": [ // "parent" // ], // "parameters": { // "parent": { // "description": "Required. The name of the parent resource.", // "location": "path", // "pattern": "^nodes/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+parent}/devices:createSigned", // "request": { // "$ref": "SasPortalCreateSignedDeviceRequest" // }, // "response": { // "$ref": "SasPortalDevice" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.nodes.devices.delete": type NodesDevicesDeleteCall struct { s *Service name string urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Delete: Deletes a device. // // - name: The name of the device. func (r *NodesDevicesService) Delete(name string) *NodesDevicesDeleteCall { c := &NodesDevicesDeleteCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name 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 *NodesDevicesDeleteCall) Fields(s ...googleapi.Field) *NodesDevicesDeleteCall { 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 *NodesDevicesDeleteCall) Context(ctx context.Context) *NodesDevicesDeleteCall { 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 *NodesDevicesDeleteCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *NodesDevicesDeleteCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "v1alpha1/{+name}") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("DELETE", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.nodes.devices.delete" call. // Exactly one of *SasPortalEmpty or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalEmpty.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 *NodesDevicesDeleteCall) Do(opts ...googleapi.CallOption) (*SasPortalEmpty, 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 := &SasPortalEmpty{ 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": "Deletes a device.", // "flatPath": "v1alpha1/nodes/{nodesId}/devices/{devicesId}", // "httpMethod": "DELETE", // "id": "prod_tt_sasportal.nodes.devices.delete", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Required. The name of the device.", // "location": "path", // "pattern": "^nodes/[^/]+/devices/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+name}", // "response": { // "$ref": "SasPortalEmpty" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.nodes.devices.get": type NodesDevicesGetCall struct { s *Service name string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // Get: Gets details about a device. // // - name: The name of the device. func (r *NodesDevicesService) Get(name string) *NodesDevicesGetCall { c := &NodesDevicesGetCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name 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 *NodesDevicesGetCall) Fields(s ...googleapi.Field) *NodesDevicesGetCall { 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 *NodesDevicesGetCall) IfNoneMatch(entityTag string) *NodesDevicesGetCall { 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 *NodesDevicesGetCall) Context(ctx context.Context) *NodesDevicesGetCall { 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 *NodesDevicesGetCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *NodesDevicesGetCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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, "v1alpha1/{+name}") 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{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.nodes.devices.get" call. // Exactly one of *SasPortalDevice or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalDevice.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 *NodesDevicesGetCall) Do(opts ...googleapi.CallOption) (*SasPortalDevice, 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 := &SasPortalDevice{ 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 details about a device.", // "flatPath": "v1alpha1/nodes/{nodesId}/devices/{devicesId}", // "httpMethod": "GET", // "id": "prod_tt_sasportal.nodes.devices.get", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Required. The name of the device.", // "location": "path", // "pattern": "^nodes/[^/]+/devices/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+name}", // "response": { // "$ref": "SasPortalDevice" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.nodes.devices.list": type NodesDevicesListCall struct { s *Service parent string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // List: Lists devices under a node or customer. // // - parent: The name of the parent resource. func (r *NodesDevicesService) List(parent string) *NodesDevicesListCall { c := &NodesDevicesListCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.parent = parent return c } // Filter sets the optional parameter "filter": The filter expression. // The filter should have one of the following formats: "sn=123454" or // "display_name=MyDevice". sn corresponds to serial number of the // device. The filter is case insensitive. func (c *NodesDevicesListCall) Filter(filter string) *NodesDevicesListCall { c.urlParams_.Set("filter", filter) return c } // PageSize sets the optional parameter "pageSize": The maximum number // of devices to return in the response. If empty or zero, all devices // will be listed. Must be in the range [0, 1000]. func (c *NodesDevicesListCall) PageSize(pageSize int64) *NodesDevicesListCall { c.urlParams_.Set("pageSize", fmt.Sprint(pageSize)) return c } // PageToken sets the optional parameter "pageToken": A pagination token // returned from a previous call to ListDevices that indicates where // this listing should continue from. func (c *NodesDevicesListCall) PageToken(pageToken string) *NodesDevicesListCall { c.urlParams_.Set("pageToken", pageToken) 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 *NodesDevicesListCall) Fields(s ...googleapi.Field) *NodesDevicesListCall { 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 *NodesDevicesListCall) IfNoneMatch(entityTag string) *NodesDevicesListCall { 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 *NodesDevicesListCall) Context(ctx context.Context) *NodesDevicesListCall { 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 *NodesDevicesListCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *NodesDevicesListCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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, "v1alpha1/{+parent}/devices") 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{ "parent": c.parent, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.nodes.devices.list" call. // Exactly one of *SasPortalListDevicesResponse or error will be // non-nil. Any non-2xx status code is an error. Response headers are in // either *SasPortalListDevicesResponse.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 *NodesDevicesListCall) Do(opts ...googleapi.CallOption) (*SasPortalListDevicesResponse, 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 := &SasPortalListDevicesResponse{ 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": "Lists devices under a node or customer.", // "flatPath": "v1alpha1/nodes/{nodesId}/devices", // "httpMethod": "GET", // "id": "prod_tt_sasportal.nodes.devices.list", // "parameterOrder": [ // "parent" // ], // "parameters": { // "filter": { // "description": "The filter expression. The filter should have one of the following formats: \"sn=123454\" or \"display_name=MyDevice\". sn corresponds to serial number of the device. The filter is case insensitive.", // "location": "query", // "type": "string" // }, // "pageSize": { // "description": "The maximum number of devices to return in the response. If empty or zero, all devices will be listed. Must be in the range [0, 1000].", // "format": "int32", // "location": "query", // "type": "integer" // }, // "pageToken": { // "description": "A pagination token returned from a previous call to ListDevices that indicates where this listing should continue from.", // "location": "query", // "type": "string" // }, // "parent": { // "description": "Required. The name of the parent resource.", // "location": "path", // "pattern": "^nodes/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+parent}/devices", // "response": { // "$ref": "SasPortalListDevicesResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // Pages invokes f for each page of results. // A non-nil error returned from f will halt the iteration. // The provided context supersedes any context provided to the Context method. func (c *NodesDevicesListCall) Pages(ctx context.Context, f func(*SasPortalListDevicesResponse) error) error { c.ctx_ = ctx defer c.PageToken(c.urlParams_.Get("pageToken")) // reset paging to original point for { x, err := c.Do() if err != nil { return err } if err := f(x); err != nil { return err } if x.NextPageToken == "" { return nil } c.PageToken(x.NextPageToken) } } // method id "prod_tt_sasportal.nodes.devices.move": type NodesDevicesMoveCall struct { s *Service name string sasportalmovedevicerequest *SasPortalMoveDeviceRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Move: Moves a device under another node or customer. // // - name: The name of the device to move. func (r *NodesDevicesService) Move(name string, sasportalmovedevicerequest *SasPortalMoveDeviceRequest) *NodesDevicesMoveCall { c := &NodesDevicesMoveCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name c.sasportalmovedevicerequest = sasportalmovedevicerequest 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 *NodesDevicesMoveCall) Fields(s ...googleapi.Field) *NodesDevicesMoveCall { 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 *NodesDevicesMoveCall) Context(ctx context.Context) *NodesDevicesMoveCall { 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 *NodesDevicesMoveCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *NodesDevicesMoveCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportalmovedevicerequest) 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, "v1alpha1/{+name}:move") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.nodes.devices.move" call. // Exactly one of *SasPortalOperation or error will be non-nil. Any // non-2xx status code is an error. Response headers are in either // *SasPortalOperation.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 *NodesDevicesMoveCall) Do(opts ...googleapi.CallOption) (*SasPortalOperation, 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 := &SasPortalOperation{ 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": "Moves a device under another node or customer.", // "flatPath": "v1alpha1/nodes/{nodesId}/devices/{devicesId}:move", // "httpMethod": "POST", // "id": "prod_tt_sasportal.nodes.devices.move", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Required. The name of the device to move.", // "location": "path", // "pattern": "^nodes/[^/]+/devices/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+name}:move", // "request": { // "$ref": "SasPortalMoveDeviceRequest" // }, // "response": { // "$ref": "SasPortalOperation" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.nodes.devices.patch": type NodesDevicesPatchCall struct { s *Service name string sasportaldevice *SasPortalDevice urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Patch: Updates a device. // // - name: Output only. The resource path name. func (r *NodesDevicesService) Patch(name string, sasportaldevice *SasPortalDevice) *NodesDevicesPatchCall { c := &NodesDevicesPatchCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name c.sasportaldevice = sasportaldevice return c } // UpdateMask sets the optional parameter "updateMask": Fields to be // updated. func (c *NodesDevicesPatchCall) UpdateMask(updateMask string) *NodesDevicesPatchCall { c.urlParams_.Set("updateMask", updateMask) 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 *NodesDevicesPatchCall) Fields(s ...googleapi.Field) *NodesDevicesPatchCall { 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 *NodesDevicesPatchCall) Context(ctx context.Context) *NodesDevicesPatchCall { 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 *NodesDevicesPatchCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *NodesDevicesPatchCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportaldevice) 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, "v1alpha1/{+name}") 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{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.nodes.devices.patch" call. // Exactly one of *SasPortalDevice or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalDevice.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 *NodesDevicesPatchCall) Do(opts ...googleapi.CallOption) (*SasPortalDevice, 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 := &SasPortalDevice{ 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 a device.", // "flatPath": "v1alpha1/nodes/{nodesId}/devices/{devicesId}", // "httpMethod": "PATCH", // "id": "prod_tt_sasportal.nodes.devices.patch", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Output only. The resource path name.", // "location": "path", // "pattern": "^nodes/[^/]+/devices/[^/]+$", // "required": true, // "type": "string" // }, // "updateMask": { // "description": "Fields to be updated.", // "format": "google-fieldmask", // "location": "query", // "type": "string" // } // }, // "path": "v1alpha1/{+name}", // "request": { // "$ref": "SasPortalDevice" // }, // "response": { // "$ref": "SasPortalDevice" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.nodes.devices.signDevice": type NodesDevicesSignDeviceCall struct { s *Service name string sasportalsigndevicerequest *SasPortalSignDeviceRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // SignDevice: Signs a device. // // - name: Output only. The resource path name. func (r *NodesDevicesService) SignDevice(name string, sasportalsigndevicerequest *SasPortalSignDeviceRequest) *NodesDevicesSignDeviceCall { c := &NodesDevicesSignDeviceCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name c.sasportalsigndevicerequest = sasportalsigndevicerequest 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 *NodesDevicesSignDeviceCall) Fields(s ...googleapi.Field) *NodesDevicesSignDeviceCall { 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 *NodesDevicesSignDeviceCall) Context(ctx context.Context) *NodesDevicesSignDeviceCall { 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 *NodesDevicesSignDeviceCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *NodesDevicesSignDeviceCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportalsigndevicerequest) 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, "v1alpha1/{+name}:signDevice") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.nodes.devices.signDevice" call. // Exactly one of *SasPortalEmpty or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalEmpty.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 *NodesDevicesSignDeviceCall) Do(opts ...googleapi.CallOption) (*SasPortalEmpty, 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 := &SasPortalEmpty{ 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": "Signs a device.", // "flatPath": "v1alpha1/nodes/{nodesId}/devices/{devicesId}:signDevice", // "httpMethod": "POST", // "id": "prod_tt_sasportal.nodes.devices.signDevice", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Output only. The resource path name.", // "location": "path", // "pattern": "^nodes/[^/]+/devices/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+name}:signDevice", // "request": { // "$ref": "SasPortalSignDeviceRequest" // }, // "response": { // "$ref": "SasPortalEmpty" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.nodes.devices.updateSigned": type NodesDevicesUpdateSignedCall struct { s *Service name string sasportalupdatesigneddevicerequest *SasPortalUpdateSignedDeviceRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // UpdateSigned: Updates a signed device. // // - name: The name of the device to update. func (r *NodesDevicesService) UpdateSigned(name string, sasportalupdatesigneddevicerequest *SasPortalUpdateSignedDeviceRequest) *NodesDevicesUpdateSignedCall { c := &NodesDevicesUpdateSignedCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name c.sasportalupdatesigneddevicerequest = sasportalupdatesigneddevicerequest 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 *NodesDevicesUpdateSignedCall) Fields(s ...googleapi.Field) *NodesDevicesUpdateSignedCall { 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 *NodesDevicesUpdateSignedCall) Context(ctx context.Context) *NodesDevicesUpdateSignedCall { 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 *NodesDevicesUpdateSignedCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *NodesDevicesUpdateSignedCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportalupdatesigneddevicerequest) 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, "v1alpha1/{+name}:updateSigned") 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{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.nodes.devices.updateSigned" call. // Exactly one of *SasPortalDevice or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalDevice.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 *NodesDevicesUpdateSignedCall) Do(opts ...googleapi.CallOption) (*SasPortalDevice, 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 := &SasPortalDevice{ 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 a signed device.", // "flatPath": "v1alpha1/nodes/{nodesId}/devices/{devicesId}:updateSigned", // "httpMethod": "PATCH", // "id": "prod_tt_sasportal.nodes.devices.updateSigned", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Required. The name of the device to update.", // "location": "path", // "pattern": "^nodes/[^/]+/devices/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+name}:updateSigned", // "request": { // "$ref": "SasPortalUpdateSignedDeviceRequest" // }, // "response": { // "$ref": "SasPortalDevice" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.nodes.nodes.create": type NodesNodesCreateCall struct { s *Service parent string sasportalnode *SasPortalNode urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Create: Creates a new node. // // - parent: The parent resource name where the node is to be created. func (r *NodesNodesService) Create(parent string, sasportalnode *SasPortalNode) *NodesNodesCreateCall { c := &NodesNodesCreateCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.parent = parent c.sasportalnode = sasportalnode 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 *NodesNodesCreateCall) Fields(s ...googleapi.Field) *NodesNodesCreateCall { 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 *NodesNodesCreateCall) Context(ctx context.Context) *NodesNodesCreateCall { 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 *NodesNodesCreateCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *NodesNodesCreateCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportalnode) 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, "v1alpha1/{+parent}/nodes") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "parent": c.parent, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.nodes.nodes.create" call. // Exactly one of *SasPortalNode or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalNode.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 *NodesNodesCreateCall) Do(opts ...googleapi.CallOption) (*SasPortalNode, 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 := &SasPortalNode{ 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": "Creates a new node.", // "flatPath": "v1alpha1/nodes/{nodesId}/nodes", // "httpMethod": "POST", // "id": "prod_tt_sasportal.nodes.nodes.create", // "parameterOrder": [ // "parent" // ], // "parameters": { // "parent": { // "description": "Required. The parent resource name where the node is to be created.", // "location": "path", // "pattern": "^nodes/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+parent}/nodes", // "request": { // "$ref": "SasPortalNode" // }, // "response": { // "$ref": "SasPortalNode" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.nodes.nodes.delete": type NodesNodesDeleteCall struct { s *Service name string urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Delete: Deletes a node. // // - name: The name of the node. func (r *NodesNodesService) Delete(name string) *NodesNodesDeleteCall { c := &NodesNodesDeleteCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name 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 *NodesNodesDeleteCall) Fields(s ...googleapi.Field) *NodesNodesDeleteCall { 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 *NodesNodesDeleteCall) Context(ctx context.Context) *NodesNodesDeleteCall { 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 *NodesNodesDeleteCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *NodesNodesDeleteCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) for k, v := range c.header_ { reqHeaders[k] = v } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "v1alpha1/{+name}") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("DELETE", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.nodes.nodes.delete" call. // Exactly one of *SasPortalEmpty or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalEmpty.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 *NodesNodesDeleteCall) Do(opts ...googleapi.CallOption) (*SasPortalEmpty, 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 := &SasPortalEmpty{ 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": "Deletes a node.", // "flatPath": "v1alpha1/nodes/{nodesId}/nodes/{nodesId1}", // "httpMethod": "DELETE", // "id": "prod_tt_sasportal.nodes.nodes.delete", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Required. The name of the node.", // "location": "path", // "pattern": "^nodes/[^/]+/nodes/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+name}", // "response": { // "$ref": "SasPortalEmpty" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.nodes.nodes.get": type NodesNodesGetCall struct { s *Service name string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // Get: Returns a requested node. // // - name: The name of the node. func (r *NodesNodesService) Get(name string) *NodesNodesGetCall { c := &NodesNodesGetCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name 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 *NodesNodesGetCall) Fields(s ...googleapi.Field) *NodesNodesGetCall { 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 *NodesNodesGetCall) IfNoneMatch(entityTag string) *NodesNodesGetCall { 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 *NodesNodesGetCall) Context(ctx context.Context) *NodesNodesGetCall { 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 *NodesNodesGetCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *NodesNodesGetCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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, "v1alpha1/{+name}") 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{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.nodes.nodes.get" call. // Exactly one of *SasPortalNode or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalNode.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 *NodesNodesGetCall) Do(opts ...googleapi.CallOption) (*SasPortalNode, 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 := &SasPortalNode{ 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": "Returns a requested node.", // "flatPath": "v1alpha1/nodes/{nodesId}/nodes/{nodesId1}", // "httpMethod": "GET", // "id": "prod_tt_sasportal.nodes.nodes.get", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Required. The name of the node.", // "location": "path", // "pattern": "^nodes/[^/]+/nodes/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+name}", // "response": { // "$ref": "SasPortalNode" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.nodes.nodes.list": type NodesNodesListCall struct { s *Service parent string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // List: Lists nodes. // // - parent: The parent resource name, for example, "nodes/1". func (r *NodesNodesService) List(parent string) *NodesNodesListCall { c := &NodesNodesListCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.parent = parent return c } // Filter sets the optional parameter "filter": The filter expression. // The filter should have the following format: "DIRECT_CHILDREN" or // format: "direct_children". The filter is case insensitive. If empty, // then no nodes are filtered. func (c *NodesNodesListCall) Filter(filter string) *NodesNodesListCall { c.urlParams_.Set("filter", filter) return c } // PageSize sets the optional parameter "pageSize": The maximum number // of nodes to return in the response. func (c *NodesNodesListCall) PageSize(pageSize int64) *NodesNodesListCall { c.urlParams_.Set("pageSize", fmt.Sprint(pageSize)) return c } // PageToken sets the optional parameter "pageToken": A pagination token // returned from a previous call to ListNodes that indicates where this // listing should continue from. func (c *NodesNodesListCall) PageToken(pageToken string) *NodesNodesListCall { c.urlParams_.Set("pageToken", pageToken) 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 *NodesNodesListCall) Fields(s ...googleapi.Field) *NodesNodesListCall { 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 *NodesNodesListCall) IfNoneMatch(entityTag string) *NodesNodesListCall { 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 *NodesNodesListCall) Context(ctx context.Context) *NodesNodesListCall { 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 *NodesNodesListCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *NodesNodesListCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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, "v1alpha1/{+parent}/nodes") 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{ "parent": c.parent, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.nodes.nodes.list" call. // Exactly one of *SasPortalListNodesResponse or error will be non-nil. // Any non-2xx status code is an error. Response headers are in either // *SasPortalListNodesResponse.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 *NodesNodesListCall) Do(opts ...googleapi.CallOption) (*SasPortalListNodesResponse, 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 := &SasPortalListNodesResponse{ 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": "Lists nodes.", // "flatPath": "v1alpha1/nodes/{nodesId}/nodes", // "httpMethod": "GET", // "id": "prod_tt_sasportal.nodes.nodes.list", // "parameterOrder": [ // "parent" // ], // "parameters": { // "filter": { // "description": "The filter expression. The filter should have the following format: \"DIRECT_CHILDREN\" or format: \"direct_children\". The filter is case insensitive. If empty, then no nodes are filtered.", // "location": "query", // "type": "string" // }, // "pageSize": { // "description": "The maximum number of nodes to return in the response.", // "format": "int32", // "location": "query", // "type": "integer" // }, // "pageToken": { // "description": "A pagination token returned from a previous call to ListNodes that indicates where this listing should continue from.", // "location": "query", // "type": "string" // }, // "parent": { // "description": "Required. The parent resource name, for example, \"nodes/1\".", // "location": "path", // "pattern": "^nodes/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+parent}/nodes", // "response": { // "$ref": "SasPortalListNodesResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // Pages invokes f for each page of results. // A non-nil error returned from f will halt the iteration. // The provided context supersedes any context provided to the Context method. func (c *NodesNodesListCall) Pages(ctx context.Context, f func(*SasPortalListNodesResponse) error) error { c.ctx_ = ctx defer c.PageToken(c.urlParams_.Get("pageToken")) // reset paging to original point for { x, err := c.Do() if err != nil { return err } if err := f(x); err != nil { return err } if x.NextPageToken == "" { return nil } c.PageToken(x.NextPageToken) } } // method id "prod_tt_sasportal.nodes.nodes.move": type NodesNodesMoveCall struct { s *Service name string sasportalmovenoderequest *SasPortalMoveNodeRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Move: Moves a node under another node or customer. // // - name: The name of the node to move. func (r *NodesNodesService) Move(name string, sasportalmovenoderequest *SasPortalMoveNodeRequest) *NodesNodesMoveCall { c := &NodesNodesMoveCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name c.sasportalmovenoderequest = sasportalmovenoderequest 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 *NodesNodesMoveCall) Fields(s ...googleapi.Field) *NodesNodesMoveCall { 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 *NodesNodesMoveCall) Context(ctx context.Context) *NodesNodesMoveCall { 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 *NodesNodesMoveCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *NodesNodesMoveCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportalmovenoderequest) 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, "v1alpha1/{+name}:move") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.nodes.nodes.move" call. // Exactly one of *SasPortalOperation or error will be non-nil. Any // non-2xx status code is an error. Response headers are in either // *SasPortalOperation.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 *NodesNodesMoveCall) Do(opts ...googleapi.CallOption) (*SasPortalOperation, 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 := &SasPortalOperation{ 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": "Moves a node under another node or customer.", // "flatPath": "v1alpha1/nodes/{nodesId}/nodes/{nodesId1}:move", // "httpMethod": "POST", // "id": "prod_tt_sasportal.nodes.nodes.move", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Required. The name of the node to move.", // "location": "path", // "pattern": "^nodes/[^/]+/nodes/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+name}:move", // "request": { // "$ref": "SasPortalMoveNodeRequest" // }, // "response": { // "$ref": "SasPortalOperation" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.nodes.nodes.patch": type NodesNodesPatchCall struct { s *Service name string sasportalnode *SasPortalNode urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Patch: Updates an existing node. // // - name: Output only. Resource name. func (r *NodesNodesService) Patch(name string, sasportalnode *SasPortalNode) *NodesNodesPatchCall { c := &NodesNodesPatchCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.name = name c.sasportalnode = sasportalnode return c } // UpdateMask sets the optional parameter "updateMask": Fields to be // updated. func (c *NodesNodesPatchCall) UpdateMask(updateMask string) *NodesNodesPatchCall { c.urlParams_.Set("updateMask", updateMask) 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 *NodesNodesPatchCall) Fields(s ...googleapi.Field) *NodesNodesPatchCall { 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 *NodesNodesPatchCall) Context(ctx context.Context) *NodesNodesPatchCall { 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 *NodesNodesPatchCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *NodesNodesPatchCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportalnode) 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, "v1alpha1/{+name}") 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{ "name": c.name, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.nodes.nodes.patch" call. // Exactly one of *SasPortalNode or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalNode.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 *NodesNodesPatchCall) Do(opts ...googleapi.CallOption) (*SasPortalNode, 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 := &SasPortalNode{ 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 node.", // "flatPath": "v1alpha1/nodes/{nodesId}/nodes/{nodesId1}", // "httpMethod": "PATCH", // "id": "prod_tt_sasportal.nodes.nodes.patch", // "parameterOrder": [ // "name" // ], // "parameters": { // "name": { // "description": "Output only. Resource name.", // "location": "path", // "pattern": "^nodes/[^/]+/nodes/[^/]+$", // "required": true, // "type": "string" // }, // "updateMask": { // "description": "Fields to be updated.", // "format": "google-fieldmask", // "location": "query", // "type": "string" // } // }, // "path": "v1alpha1/{+name}", // "request": { // "$ref": "SasPortalNode" // }, // "response": { // "$ref": "SasPortalNode" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.nodes.nodes.deployments.create": type NodesNodesDeploymentsCreateCall struct { s *Service parent string sasportaldeployment *SasPortalDeployment urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Create: Creates a new deployment. // // - parent: The parent resource name where the deployment is to be // created. func (r *NodesNodesDeploymentsService) Create(parent string, sasportaldeployment *SasPortalDeployment) *NodesNodesDeploymentsCreateCall { c := &NodesNodesDeploymentsCreateCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.parent = parent c.sasportaldeployment = sasportaldeployment 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 *NodesNodesDeploymentsCreateCall) Fields(s ...googleapi.Field) *NodesNodesDeploymentsCreateCall { 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 *NodesNodesDeploymentsCreateCall) Context(ctx context.Context) *NodesNodesDeploymentsCreateCall { 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 *NodesNodesDeploymentsCreateCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *NodesNodesDeploymentsCreateCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportaldeployment) 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, "v1alpha1/{+parent}/deployments") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "parent": c.parent, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.nodes.nodes.deployments.create" call. // Exactly one of *SasPortalDeployment or error will be non-nil. Any // non-2xx status code is an error. Response headers are in either // *SasPortalDeployment.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 *NodesNodesDeploymentsCreateCall) Do(opts ...googleapi.CallOption) (*SasPortalDeployment, 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 := &SasPortalDeployment{ 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": "Creates a new deployment.", // "flatPath": "v1alpha1/nodes/{nodesId}/nodes/{nodesId1}/deployments", // "httpMethod": "POST", // "id": "prod_tt_sasportal.nodes.nodes.deployments.create", // "parameterOrder": [ // "parent" // ], // "parameters": { // "parent": { // "description": "Required. The parent resource name where the deployment is to be created.", // "location": "path", // "pattern": "^nodes/[^/]+/nodes/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+parent}/deployments", // "request": { // "$ref": "SasPortalDeployment" // }, // "response": { // "$ref": "SasPortalDeployment" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.nodes.nodes.deployments.list": type NodesNodesDeploymentsListCall struct { s *Service parent string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // List: Lists deployments. // // - parent: The parent resource name, for example, "nodes/1", // customer/1/nodes/2. func (r *NodesNodesDeploymentsService) List(parent string) *NodesNodesDeploymentsListCall { c := &NodesNodesDeploymentsListCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.parent = parent return c } // Filter sets the optional parameter "filter": The filter expression. // The filter should have the following format: "DIRECT_CHILDREN" or // format: "direct_children". The filter is case insensitive. If empty, // then no deployments are filtered. func (c *NodesNodesDeploymentsListCall) Filter(filter string) *NodesNodesDeploymentsListCall { c.urlParams_.Set("filter", filter) return c } // PageSize sets the optional parameter "pageSize": The maximum number // of deployments to return in the response. func (c *NodesNodesDeploymentsListCall) PageSize(pageSize int64) *NodesNodesDeploymentsListCall { c.urlParams_.Set("pageSize", fmt.Sprint(pageSize)) return c } // PageToken sets the optional parameter "pageToken": A pagination token // returned from a previous call to ListDeployments that indicates where // this listing should continue from. func (c *NodesNodesDeploymentsListCall) PageToken(pageToken string) *NodesNodesDeploymentsListCall { c.urlParams_.Set("pageToken", pageToken) 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 *NodesNodesDeploymentsListCall) Fields(s ...googleapi.Field) *NodesNodesDeploymentsListCall { 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 *NodesNodesDeploymentsListCall) IfNoneMatch(entityTag string) *NodesNodesDeploymentsListCall { 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 *NodesNodesDeploymentsListCall) Context(ctx context.Context) *NodesNodesDeploymentsListCall { 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 *NodesNodesDeploymentsListCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *NodesNodesDeploymentsListCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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, "v1alpha1/{+parent}/deployments") 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{ "parent": c.parent, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.nodes.nodes.deployments.list" call. // Exactly one of *SasPortalListDeploymentsResponse or error will be // non-nil. Any non-2xx status code is an error. Response headers are in // either *SasPortalListDeploymentsResponse.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 *NodesNodesDeploymentsListCall) Do(opts ...googleapi.CallOption) (*SasPortalListDeploymentsResponse, 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 := &SasPortalListDeploymentsResponse{ 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": "Lists deployments.", // "flatPath": "v1alpha1/nodes/{nodesId}/nodes/{nodesId1}/deployments", // "httpMethod": "GET", // "id": "prod_tt_sasportal.nodes.nodes.deployments.list", // "parameterOrder": [ // "parent" // ], // "parameters": { // "filter": { // "description": "The filter expression. The filter should have the following format: \"DIRECT_CHILDREN\" or format: \"direct_children\". The filter is case insensitive. If empty, then no deployments are filtered.", // "location": "query", // "type": "string" // }, // "pageSize": { // "description": "The maximum number of deployments to return in the response.", // "format": "int32", // "location": "query", // "type": "integer" // }, // "pageToken": { // "description": "A pagination token returned from a previous call to ListDeployments that indicates where this listing should continue from.", // "location": "query", // "type": "string" // }, // "parent": { // "description": "Required. The parent resource name, for example, \"nodes/1\", customer/1/nodes/2.", // "location": "path", // "pattern": "^nodes/[^/]+/nodes/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+parent}/deployments", // "response": { // "$ref": "SasPortalListDeploymentsResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // Pages invokes f for each page of results. // A non-nil error returned from f will halt the iteration. // The provided context supersedes any context provided to the Context method. func (c *NodesNodesDeploymentsListCall) Pages(ctx context.Context, f func(*SasPortalListDeploymentsResponse) error) error { c.ctx_ = ctx defer c.PageToken(c.urlParams_.Get("pageToken")) // reset paging to original point for { x, err := c.Do() if err != nil { return err } if err := f(x); err != nil { return err } if x.NextPageToken == "" { return nil } c.PageToken(x.NextPageToken) } } // method id "prod_tt_sasportal.nodes.nodes.devices.create": type NodesNodesDevicesCreateCall struct { s *Service parent string sasportaldevice *SasPortalDevice urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Create: Creates a device under a node or customer. // // - parent: The name of the parent resource. func (r *NodesNodesDevicesService) Create(parent string, sasportaldevice *SasPortalDevice) *NodesNodesDevicesCreateCall { c := &NodesNodesDevicesCreateCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.parent = parent c.sasportaldevice = sasportaldevice 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 *NodesNodesDevicesCreateCall) Fields(s ...googleapi.Field) *NodesNodesDevicesCreateCall { 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 *NodesNodesDevicesCreateCall) Context(ctx context.Context) *NodesNodesDevicesCreateCall { 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 *NodesNodesDevicesCreateCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *NodesNodesDevicesCreateCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportaldevice) 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, "v1alpha1/{+parent}/devices") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "parent": c.parent, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.nodes.nodes.devices.create" call. // Exactly one of *SasPortalDevice or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalDevice.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 *NodesNodesDevicesCreateCall) Do(opts ...googleapi.CallOption) (*SasPortalDevice, 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 := &SasPortalDevice{ 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": "Creates a device under a node or customer.", // "flatPath": "v1alpha1/nodes/{nodesId}/nodes/{nodesId1}/devices", // "httpMethod": "POST", // "id": "prod_tt_sasportal.nodes.nodes.devices.create", // "parameterOrder": [ // "parent" // ], // "parameters": { // "parent": { // "description": "Required. The name of the parent resource.", // "location": "path", // "pattern": "^nodes/[^/]+/nodes/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+parent}/devices", // "request": { // "$ref": "SasPortalDevice" // }, // "response": { // "$ref": "SasPortalDevice" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.nodes.nodes.devices.createSigned": type NodesNodesDevicesCreateSignedCall struct { s *Service parent string sasportalcreatesigneddevicerequest *SasPortalCreateSignedDeviceRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // CreateSigned: Creates a signed device under a node or customer. // // - parent: The name of the parent resource. func (r *NodesNodesDevicesService) CreateSigned(parent string, sasportalcreatesigneddevicerequest *SasPortalCreateSignedDeviceRequest) *NodesNodesDevicesCreateSignedCall { c := &NodesNodesDevicesCreateSignedCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.parent = parent c.sasportalcreatesigneddevicerequest = sasportalcreatesigneddevicerequest 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 *NodesNodesDevicesCreateSignedCall) Fields(s ...googleapi.Field) *NodesNodesDevicesCreateSignedCall { 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 *NodesNodesDevicesCreateSignedCall) Context(ctx context.Context) *NodesNodesDevicesCreateSignedCall { 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 *NodesNodesDevicesCreateSignedCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *NodesNodesDevicesCreateSignedCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportalcreatesigneddevicerequest) 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, "v1alpha1/{+parent}/devices:createSigned") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "parent": c.parent, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.nodes.nodes.devices.createSigned" call. // Exactly one of *SasPortalDevice or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalDevice.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 *NodesNodesDevicesCreateSignedCall) Do(opts ...googleapi.CallOption) (*SasPortalDevice, 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 := &SasPortalDevice{ 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": "Creates a signed device under a node or customer.", // "flatPath": "v1alpha1/nodes/{nodesId}/nodes/{nodesId1}/devices:createSigned", // "httpMethod": "POST", // "id": "prod_tt_sasportal.nodes.nodes.devices.createSigned", // "parameterOrder": [ // "parent" // ], // "parameters": { // "parent": { // "description": "Required. The name of the parent resource.", // "location": "path", // "pattern": "^nodes/[^/]+/nodes/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+parent}/devices:createSigned", // "request": { // "$ref": "SasPortalCreateSignedDeviceRequest" // }, // "response": { // "$ref": "SasPortalDevice" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.nodes.nodes.devices.list": type NodesNodesDevicesListCall struct { s *Service parent string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // List: Lists devices under a node or customer. // // - parent: The name of the parent resource. func (r *NodesNodesDevicesService) List(parent string) *NodesNodesDevicesListCall { c := &NodesNodesDevicesListCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.parent = parent return c } // Filter sets the optional parameter "filter": The filter expression. // The filter should have one of the following formats: "sn=123454" or // "display_name=MyDevice". sn corresponds to serial number of the // device. The filter is case insensitive. func (c *NodesNodesDevicesListCall) Filter(filter string) *NodesNodesDevicesListCall { c.urlParams_.Set("filter", filter) return c } // PageSize sets the optional parameter "pageSize": The maximum number // of devices to return in the response. If empty or zero, all devices // will be listed. Must be in the range [0, 1000]. func (c *NodesNodesDevicesListCall) PageSize(pageSize int64) *NodesNodesDevicesListCall { c.urlParams_.Set("pageSize", fmt.Sprint(pageSize)) return c } // PageToken sets the optional parameter "pageToken": A pagination token // returned from a previous call to ListDevices that indicates where // this listing should continue from. func (c *NodesNodesDevicesListCall) PageToken(pageToken string) *NodesNodesDevicesListCall { c.urlParams_.Set("pageToken", pageToken) 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 *NodesNodesDevicesListCall) Fields(s ...googleapi.Field) *NodesNodesDevicesListCall { 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 *NodesNodesDevicesListCall) IfNoneMatch(entityTag string) *NodesNodesDevicesListCall { 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 *NodesNodesDevicesListCall) Context(ctx context.Context) *NodesNodesDevicesListCall { 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 *NodesNodesDevicesListCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *NodesNodesDevicesListCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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, "v1alpha1/{+parent}/devices") 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{ "parent": c.parent, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.nodes.nodes.devices.list" call. // Exactly one of *SasPortalListDevicesResponse or error will be // non-nil. Any non-2xx status code is an error. Response headers are in // either *SasPortalListDevicesResponse.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 *NodesNodesDevicesListCall) Do(opts ...googleapi.CallOption) (*SasPortalListDevicesResponse, 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 := &SasPortalListDevicesResponse{ 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": "Lists devices under a node or customer.", // "flatPath": "v1alpha1/nodes/{nodesId}/nodes/{nodesId1}/devices", // "httpMethod": "GET", // "id": "prod_tt_sasportal.nodes.nodes.devices.list", // "parameterOrder": [ // "parent" // ], // "parameters": { // "filter": { // "description": "The filter expression. The filter should have one of the following formats: \"sn=123454\" or \"display_name=MyDevice\". sn corresponds to serial number of the device. The filter is case insensitive.", // "location": "query", // "type": "string" // }, // "pageSize": { // "description": "The maximum number of devices to return in the response. If empty or zero, all devices will be listed. Must be in the range [0, 1000].", // "format": "int32", // "location": "query", // "type": "integer" // }, // "pageToken": { // "description": "A pagination token returned from a previous call to ListDevices that indicates where this listing should continue from.", // "location": "query", // "type": "string" // }, // "parent": { // "description": "Required. The name of the parent resource.", // "location": "path", // "pattern": "^nodes/[^/]+/nodes/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+parent}/devices", // "response": { // "$ref": "SasPortalListDevicesResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // Pages invokes f for each page of results. // A non-nil error returned from f will halt the iteration. // The provided context supersedes any context provided to the Context method. func (c *NodesNodesDevicesListCall) Pages(ctx context.Context, f func(*SasPortalListDevicesResponse) error) error { c.ctx_ = ctx defer c.PageToken(c.urlParams_.Get("pageToken")) // reset paging to original point for { x, err := c.Do() if err != nil { return err } if err := f(x); err != nil { return err } if x.NextPageToken == "" { return nil } c.PageToken(x.NextPageToken) } } // method id "prod_tt_sasportal.nodes.nodes.nodes.create": type NodesNodesNodesCreateCall struct { s *Service parent string sasportalnode *SasPortalNode urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Create: Creates a new node. // // - parent: The parent resource name where the node is to be created. func (r *NodesNodesNodesService) Create(parent string, sasportalnode *SasPortalNode) *NodesNodesNodesCreateCall { c := &NodesNodesNodesCreateCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.parent = parent c.sasportalnode = sasportalnode 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 *NodesNodesNodesCreateCall) Fields(s ...googleapi.Field) *NodesNodesNodesCreateCall { 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 *NodesNodesNodesCreateCall) Context(ctx context.Context) *NodesNodesNodesCreateCall { 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 *NodesNodesNodesCreateCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *NodesNodesNodesCreateCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportalnode) 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, "v1alpha1/{+parent}/nodes") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders googleapi.Expand(req.URL, map[string]string{ "parent": c.parent, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.nodes.nodes.nodes.create" call. // Exactly one of *SasPortalNode or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalNode.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 *NodesNodesNodesCreateCall) Do(opts ...googleapi.CallOption) (*SasPortalNode, 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 := &SasPortalNode{ 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": "Creates a new node.", // "flatPath": "v1alpha1/nodes/{nodesId}/nodes/{nodesId1}/nodes", // "httpMethod": "POST", // "id": "prod_tt_sasportal.nodes.nodes.nodes.create", // "parameterOrder": [ // "parent" // ], // "parameters": { // "parent": { // "description": "Required. The parent resource name where the node is to be created.", // "location": "path", // "pattern": "^nodes/[^/]+/nodes/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+parent}/nodes", // "request": { // "$ref": "SasPortalNode" // }, // "response": { // "$ref": "SasPortalNode" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.nodes.nodes.nodes.list": type NodesNodesNodesListCall struct { s *Service parent string urlParams_ gensupport.URLParams ifNoneMatch_ string ctx_ context.Context header_ http.Header } // List: Lists nodes. // // - parent: The parent resource name, for example, "nodes/1". func (r *NodesNodesNodesService) List(parent string) *NodesNodesNodesListCall { c := &NodesNodesNodesListCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.parent = parent return c } // Filter sets the optional parameter "filter": The filter expression. // The filter should have the following format: "DIRECT_CHILDREN" or // format: "direct_children". The filter is case insensitive. If empty, // then no nodes are filtered. func (c *NodesNodesNodesListCall) Filter(filter string) *NodesNodesNodesListCall { c.urlParams_.Set("filter", filter) return c } // PageSize sets the optional parameter "pageSize": The maximum number // of nodes to return in the response. func (c *NodesNodesNodesListCall) PageSize(pageSize int64) *NodesNodesNodesListCall { c.urlParams_.Set("pageSize", fmt.Sprint(pageSize)) return c } // PageToken sets the optional parameter "pageToken": A pagination token // returned from a previous call to ListNodes that indicates where this // listing should continue from. func (c *NodesNodesNodesListCall) PageToken(pageToken string) *NodesNodesNodesListCall { c.urlParams_.Set("pageToken", pageToken) 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 *NodesNodesNodesListCall) Fields(s ...googleapi.Field) *NodesNodesNodesListCall { 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 *NodesNodesNodesListCall) IfNoneMatch(entityTag string) *NodesNodesNodesListCall { 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 *NodesNodesNodesListCall) Context(ctx context.Context) *NodesNodesNodesListCall { 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 *NodesNodesNodesListCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *NodesNodesNodesListCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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, "v1alpha1/{+parent}/nodes") 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{ "parent": c.parent, }) return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.nodes.nodes.nodes.list" call. // Exactly one of *SasPortalListNodesResponse or error will be non-nil. // Any non-2xx status code is an error. Response headers are in either // *SasPortalListNodesResponse.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 *NodesNodesNodesListCall) Do(opts ...googleapi.CallOption) (*SasPortalListNodesResponse, 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 := &SasPortalListNodesResponse{ 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": "Lists nodes.", // "flatPath": "v1alpha1/nodes/{nodesId}/nodes/{nodesId1}/nodes", // "httpMethod": "GET", // "id": "prod_tt_sasportal.nodes.nodes.nodes.list", // "parameterOrder": [ // "parent" // ], // "parameters": { // "filter": { // "description": "The filter expression. The filter should have the following format: \"DIRECT_CHILDREN\" or format: \"direct_children\". The filter is case insensitive. If empty, then no nodes are filtered.", // "location": "query", // "type": "string" // }, // "pageSize": { // "description": "The maximum number of nodes to return in the response.", // "format": "int32", // "location": "query", // "type": "integer" // }, // "pageToken": { // "description": "A pagination token returned from a previous call to ListNodes that indicates where this listing should continue from.", // "location": "query", // "type": "string" // }, // "parent": { // "description": "Required. The parent resource name, for example, \"nodes/1\".", // "location": "path", // "pattern": "^nodes/[^/]+/nodes/[^/]+$", // "required": true, // "type": "string" // } // }, // "path": "v1alpha1/{+parent}/nodes", // "response": { // "$ref": "SasPortalListNodesResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // Pages invokes f for each page of results. // A non-nil error returned from f will halt the iteration. // The provided context supersedes any context provided to the Context method. func (c *NodesNodesNodesListCall) Pages(ctx context.Context, f func(*SasPortalListNodesResponse) error) error { c.ctx_ = ctx defer c.PageToken(c.urlParams_.Get("pageToken")) // reset paging to original point for { x, err := c.Do() if err != nil { return err } if err := f(x); err != nil { return err } if x.NextPageToken == "" { return nil } c.PageToken(x.NextPageToken) } } // method id "prod_tt_sasportal.policies.get": type PoliciesGetCall struct { s *Service sasportalgetpolicyrequest *SasPortalGetPolicyRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Get: Gets the access control policy for a resource. Returns an empty // policy if the resource exists and does not have a policy set. func (r *PoliciesService) Get(sasportalgetpolicyrequest *SasPortalGetPolicyRequest) *PoliciesGetCall { c := &PoliciesGetCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.sasportalgetpolicyrequest = sasportalgetpolicyrequest 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 *PoliciesGetCall) Fields(s ...googleapi.Field) *PoliciesGetCall { 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 *PoliciesGetCall) Context(ctx context.Context) *PoliciesGetCall { 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 *PoliciesGetCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *PoliciesGetCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportalgetpolicyrequest) 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, "v1alpha1/policies:get") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.policies.get" call. // Exactly one of *SasPortalPolicy or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalPolicy.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 *PoliciesGetCall) Do(opts ...googleapi.CallOption) (*SasPortalPolicy, 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 := &SasPortalPolicy{ 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 the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set.", // "flatPath": "v1alpha1/policies:get", // "httpMethod": "POST", // "id": "prod_tt_sasportal.policies.get", // "parameterOrder": [], // "parameters": {}, // "path": "v1alpha1/policies:get", // "request": { // "$ref": "SasPortalGetPolicyRequest" // }, // "response": { // "$ref": "SasPortalPolicy" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.policies.set": type PoliciesSetCall struct { s *Service sasportalsetpolicyrequest *SasPortalSetPolicyRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Set: Sets the access control policy on the specified resource. // Replaces any existing policy. func (r *PoliciesService) Set(sasportalsetpolicyrequest *SasPortalSetPolicyRequest) *PoliciesSetCall { c := &PoliciesSetCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.sasportalsetpolicyrequest = sasportalsetpolicyrequest 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 *PoliciesSetCall) Fields(s ...googleapi.Field) *PoliciesSetCall { 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 *PoliciesSetCall) Context(ctx context.Context) *PoliciesSetCall { 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 *PoliciesSetCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *PoliciesSetCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportalsetpolicyrequest) 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, "v1alpha1/policies:set") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.policies.set" call. // Exactly one of *SasPortalPolicy or error will be non-nil. Any non-2xx // status code is an error. Response headers are in either // *SasPortalPolicy.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 *PoliciesSetCall) Do(opts ...googleapi.CallOption) (*SasPortalPolicy, 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 := &SasPortalPolicy{ 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": "Sets the access control policy on the specified resource. Replaces any existing policy.", // "flatPath": "v1alpha1/policies:set", // "httpMethod": "POST", // "id": "prod_tt_sasportal.policies.set", // "parameterOrder": [], // "parameters": {}, // "path": "v1alpha1/policies:set", // "request": { // "$ref": "SasPortalSetPolicyRequest" // }, // "response": { // "$ref": "SasPortalPolicy" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } } // method id "prod_tt_sasportal.policies.test": type PoliciesTestCall struct { s *Service sasportaltestpermissionsrequest *SasPortalTestPermissionsRequest urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // Test: Returns permissions that a caller has on the specified // resource. func (r *PoliciesService) Test(sasportaltestpermissionsrequest *SasPortalTestPermissionsRequest) *PoliciesTestCall { c := &PoliciesTestCall{s: r.s, urlParams_: make(gensupport.URLParams)} c.sasportaltestpermissionsrequest = sasportaltestpermissionsrequest 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 *PoliciesTestCall) Fields(s ...googleapi.Field) *PoliciesTestCall { 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 *PoliciesTestCall) Context(ctx context.Context) *PoliciesTestCall { 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 *PoliciesTestCall) Header() http.Header { if c.header_ == nil { c.header_ = make(http.Header) } return c.header_ } func (c *PoliciesTestCall) doRequest(alt string) (*http.Response, error) { reqHeaders := make(http.Header) reqHeaders.Set("x-goog-api-client", "gl-go/"+gensupport.GoVersion()+" gdcl/"+internal.Version) 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.sasportaltestpermissionsrequest) 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, "v1alpha1/policies:test") urls += "?" + c.urlParams_.Encode() req, err := http.NewRequest("POST", urls, body) if err != nil { return nil, err } req.Header = reqHeaders return gensupport.SendRequest(c.ctx_, c.s.client, req) } // Do executes the "prod_tt_sasportal.policies.test" call. // Exactly one of *SasPortalTestPermissionsResponse or error will be // non-nil. Any non-2xx status code is an error. Response headers are in // either *SasPortalTestPermissionsResponse.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 *PoliciesTestCall) Do(opts ...googleapi.CallOption) (*SasPortalTestPermissionsResponse, 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 := &SasPortalTestPermissionsResponse{ 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": "Returns permissions that a caller has on the specified resource.", // "flatPath": "v1alpha1/policies:test", // "httpMethod": "POST", // "id": "prod_tt_sasportal.policies.test", // "parameterOrder": [], // "parameters": {}, // "path": "v1alpha1/policies:test", // "request": { // "$ref": "SasPortalTestPermissionsRequest" // }, // "response": { // "$ref": "SasPortalTestPermissionsResponse" // }, // "scopes": [ // "https://www.googleapis.com/auth/userinfo.email" // ] // } }