1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757
|
// This file was automatically generated. DO NOT EDIT.
// If you have any remark or suggestion do not hesitate to open an issue.
// Package account provides methods and message types of the account v3 API.
package account
import (
"bytes"
"encoding/json"
"fmt"
"net"
"net/http"
"net/url"
"strings"
"time"
std "github.com/scaleway/scaleway-sdk-go/api/std"
"github.com/scaleway/scaleway-sdk-go/errors"
"github.com/scaleway/scaleway-sdk-go/marshaler"
"github.com/scaleway/scaleway-sdk-go/namegenerator"
"github.com/scaleway/scaleway-sdk-go/parameter"
"github.com/scaleway/scaleway-sdk-go/scw"
)
// always import dependencies
var (
_ fmt.Stringer
_ json.Unmarshaler
_ url.URL
_ net.IP
_ http.Header
_ bytes.Reader
_ time.Time
_ = strings.Join
_ scw.ScalewayRequest
_ marshaler.Duration
_ scw.File
_ = parameter.AddToQuery
_ = namegenerator.GetRandomName
)
type ContractType string
const (
// Unknown type.
ContractTypeUnknownType = ContractType("unknown_type")
// A global contract.
ContractTypeGlobal = ContractType("global")
// Deprecated. A contract specific to the Kubernetes product.
ContractTypeK8s = ContractType("k8s")
// A contract specific to the Instance product.
ContractTypeInstance = ContractType("instance")
// A contract specific to Container products.
ContractTypeContainer = ContractType("container")
// A contract specific to Baremetal products.
ContractTypeBaremetal = ContractType("baremetal")
)
func (enum ContractType) String() string {
if enum == "" {
// return default value if empty
return "unknown_type"
}
return string(enum)
}
func (enum ContractType) Values() []ContractType {
return []ContractType{
"unknown_type",
"global",
"k8s",
"instance",
"container",
"baremetal",
}
}
func (enum ContractType) MarshalJSON() ([]byte, error) {
return []byte(fmt.Sprintf(`"%s"`, enum)), nil
}
func (enum *ContractType) UnmarshalJSON(data []byte) error {
tmp := ""
if err := json.Unmarshal(data, &tmp); err != nil {
return err
}
*enum = ContractType(ContractType(tmp).String())
return nil
}
type ListContractSignaturesRequestOrderBy string
const (
// Signing date ascending.
ListContractSignaturesRequestOrderBySignedAtAsc = ListContractSignaturesRequestOrderBy("signed_at_asc")
// Signing date descending.
ListContractSignaturesRequestOrderBySignedAtDesc = ListContractSignaturesRequestOrderBy("signed_at_desc")
// Expiration date ascending.
ListContractSignaturesRequestOrderByExpiresAtAsc = ListContractSignaturesRequestOrderBy("expires_at_asc")
// Expiration date descending.
ListContractSignaturesRequestOrderByExpiresAtDesc = ListContractSignaturesRequestOrderBy("expires_at_desc")
// Name ascending.
ListContractSignaturesRequestOrderByNameAsc = ListContractSignaturesRequestOrderBy("name_asc")
// Name descending.
ListContractSignaturesRequestOrderByNameDesc = ListContractSignaturesRequestOrderBy("name_desc")
)
func (enum ListContractSignaturesRequestOrderBy) String() string {
if enum == "" {
// return default value if empty
return "signed_at_asc"
}
return string(enum)
}
func (enum ListContractSignaturesRequestOrderBy) Values() []ListContractSignaturesRequestOrderBy {
return []ListContractSignaturesRequestOrderBy{
"signed_at_asc",
"signed_at_desc",
"expires_at_asc",
"expires_at_desc",
"name_asc",
"name_desc",
}
}
func (enum ListContractSignaturesRequestOrderBy) MarshalJSON() ([]byte, error) {
return []byte(fmt.Sprintf(`"%s"`, enum)), nil
}
func (enum *ListContractSignaturesRequestOrderBy) UnmarshalJSON(data []byte) error {
tmp := ""
if err := json.Unmarshal(data, &tmp); err != nil {
return err
}
*enum = ListContractSignaturesRequestOrderBy(ListContractSignaturesRequestOrderBy(tmp).String())
return nil
}
type ListProjectsRequestOrderBy string
const (
// Creation date ascending.
ListProjectsRequestOrderByCreatedAtAsc = ListProjectsRequestOrderBy("created_at_asc")
// Creation date descending.
ListProjectsRequestOrderByCreatedAtDesc = ListProjectsRequestOrderBy("created_at_desc")
// Name ascending.
ListProjectsRequestOrderByNameAsc = ListProjectsRequestOrderBy("name_asc")
// Name descending.
ListProjectsRequestOrderByNameDesc = ListProjectsRequestOrderBy("name_desc")
)
func (enum ListProjectsRequestOrderBy) String() string {
if enum == "" {
// return default value if empty
return "created_at_asc"
}
return string(enum)
}
func (enum ListProjectsRequestOrderBy) Values() []ListProjectsRequestOrderBy {
return []ListProjectsRequestOrderBy{
"created_at_asc",
"created_at_desc",
"name_asc",
"name_desc",
}
}
func (enum ListProjectsRequestOrderBy) MarshalJSON() ([]byte, error) {
return []byte(fmt.Sprintf(`"%s"`, enum)), nil
}
func (enum *ListProjectsRequestOrderBy) UnmarshalJSON(data []byte) error {
tmp := ""
if err := json.Unmarshal(data, &tmp); err != nil {
return err
}
*enum = ListProjectsRequestOrderBy(ListProjectsRequestOrderBy(tmp).String())
return nil
}
// Contract: contract.
type Contract struct {
// ID: ID of the contract.
ID string `json:"id"`
// Type: the type of the contract.
// Default value: unknown_type
Type ContractType `json:"type"`
// Name: the name of the contract.
Name string `json:"name"`
// Version: the version of the contract.
Version uint32 `json:"version"`
// CreatedAt: the creation date of the contract.
CreatedAt *time.Time `json:"created_at"`
// UpdatedAt: the last modification date of the contract.
UpdatedAt *time.Time `json:"updated_at"`
}
// ContractSignature: contract signature.
type ContractSignature struct {
// ID: ID of the contract signature.
ID string `json:"id"`
// OrganizationID: the Organization ID which signed the contract.
OrganizationID string `json:"organization_id"`
// CreatedAt: the creation date of the contract signature.
CreatedAt *time.Time `json:"created_at"`
// SignedAt: the signing date of the contract signature.
SignedAt *time.Time `json:"signed_at"`
// ExpiresAt: the expiration date of the contract signature.
ExpiresAt *time.Time `json:"expires_at"`
// Contract: the contract signed.
Contract *Contract `json:"contract"`
}
// Project: project.
type Project struct {
// ID: ID of the Project.
ID string `json:"id"`
// Name: name of the Project.
Name string `json:"name"`
// OrganizationID: organization ID of the Project.
OrganizationID string `json:"organization_id"`
// CreatedAt: creation date of the Project.
CreatedAt *time.Time `json:"created_at"`
// UpdatedAt: update date of the Project.
UpdatedAt *time.Time `json:"updated_at"`
// Description: description of the Project.
Description string `json:"description"`
}
// CheckContractSignatureResponse: check contract signature response.
type CheckContractSignatureResponse struct {
// Created: whether a signature has been requested for this contract.
Created bool `json:"created"`
// Validated: whether the signature for this contract has been validated.
Validated bool `json:"validated"`
}
// ContractAPICheckContractSignatureRequest: contract api check contract signature request.
type ContractAPICheckContractSignatureRequest struct {
// OrganizationID: ID of the Organization to check the contract signature for.
OrganizationID string `json:"organization_id"`
// ContractType: filter on contract type.
// Default value: unknown_type
ContractType ContractType `json:"contract_type"`
// ContractName: filter on contract name.
ContractName string `json:"contract_name"`
}
// ContractAPICreateContractSignatureRequest: contract api create contract signature request.
type ContractAPICreateContractSignatureRequest struct {
// ContractType: the type of the contract.
// Default value: unknown_type
ContractType ContractType `json:"contract_type"`
// ContractName: the name of the contract.
ContractName string `json:"contract_name"`
// Validated: whether the contract is validated at creation.
Validated bool `json:"validated"`
// OrganizationID: ID of the Organization.
OrganizationID string `json:"organization_id"`
}
// ContractAPIDownloadContractSignatureRequest: contract api download contract signature request.
type ContractAPIDownloadContractSignatureRequest struct {
// ContractSignatureID: the contract signature ID.
ContractSignatureID string `json:"-"`
// Locale: the locale requested for the content of the contract.
// Default value: unknown_language_code
Locale std.LanguageCode `json:"-"`
}
// ContractAPIListContractSignaturesRequest: contract api list contract signatures request.
type ContractAPIListContractSignaturesRequest struct {
// Page: the page number for the returned contracts.
Page *int32 `json:"-"`
// PageSize: the maximum number of contracts per page.
PageSize *uint32 `json:"-"`
// OrderBy: how the contracts are ordered in the response.
// Default value: signed_at_asc
OrderBy ListContractSignaturesRequestOrderBy `json:"-"`
// OrganizationID: filter on Organization ID.
OrganizationID string `json:"-"`
}
// ContractAPIValidateContractSignatureRequest: contract api validate contract signature request.
type ContractAPIValidateContractSignatureRequest struct {
// ContractSignatureID: the contract linked to your Organization you want to sign.
ContractSignatureID string `json:"-"`
}
// ListContractSignaturesResponse: list contract signatures response.
type ListContractSignaturesResponse struct {
// TotalCount: the total number of contract signatures.
TotalCount uint64 `json:"total_count"`
// ContractSignatures: the paginated returned contract signatures.
ContractSignatures []*ContractSignature `json:"contract_signatures"`
}
// UnsafeGetTotalCount should not be used
// Internal usage only
func (r *ListContractSignaturesResponse) UnsafeGetTotalCount() uint64 {
return r.TotalCount
}
// UnsafeAppend should not be used
// Internal usage only
func (r *ListContractSignaturesResponse) UnsafeAppend(res interface{}) (uint64, error) {
results, ok := res.(*ListContractSignaturesResponse)
if !ok {
return 0, errors.New("%T type cannot be appended to type %T", res, r)
}
r.ContractSignatures = append(r.ContractSignatures, results.ContractSignatures...)
r.TotalCount += uint64(len(results.ContractSignatures))
return uint64(len(results.ContractSignatures)), nil
}
// ListProjectsResponse: list projects response.
type ListProjectsResponse struct {
// TotalCount: total number of Projects.
TotalCount uint64 `json:"total_count"`
// Projects: paginated returned Projects.
Projects []*Project `json:"projects"`
}
// UnsafeGetTotalCount should not be used
// Internal usage only
func (r *ListProjectsResponse) UnsafeGetTotalCount() uint64 {
return r.TotalCount
}
// UnsafeAppend should not be used
// Internal usage only
func (r *ListProjectsResponse) UnsafeAppend(res interface{}) (uint64, error) {
results, ok := res.(*ListProjectsResponse)
if !ok {
return 0, errors.New("%T type cannot be appended to type %T", res, r)
}
r.Projects = append(r.Projects, results.Projects...)
r.TotalCount += uint64(len(results.Projects))
return uint64(len(results.Projects)), nil
}
// ProjectAPICreateProjectRequest: project api create project request.
type ProjectAPICreateProjectRequest struct {
// Name: name of the Project.
Name string `json:"name"`
// OrganizationID: organization ID of the Project.
OrganizationID string `json:"organization_id"`
// Description: description of the Project.
Description string `json:"description"`
}
// ProjectAPIDeleteProjectRequest: project api delete project request.
type ProjectAPIDeleteProjectRequest struct {
// ProjectID: project ID of the Project.
ProjectID string `json:"-"`
}
// ProjectAPIGetProjectRequest: project api get project request.
type ProjectAPIGetProjectRequest struct {
// ProjectID: project ID of the Project.
ProjectID string `json:"-"`
}
// ProjectAPIListProjectsRequest: project api list projects request.
type ProjectAPIListProjectsRequest struct {
// OrganizationID: organization ID of the Project.
OrganizationID string `json:"-"`
// Name: name of the Project.
Name *string `json:"-"`
// Page: page number for the returned Projects.
Page *int32 `json:"-"`
// PageSize: maximum number of Project per page.
PageSize *uint32 `json:"-"`
// OrderBy: sort order of the returned Projects.
// Default value: created_at_asc
OrderBy ListProjectsRequestOrderBy `json:"-"`
// ProjectIDs: project IDs to filter for. The results will be limited to any Projects with an ID in this array.
ProjectIDs []string `json:"-"`
}
// ProjectAPIUpdateProjectRequest: project api update project request.
type ProjectAPIUpdateProjectRequest struct {
// ProjectID: project ID of the Project.
ProjectID string `json:"-"`
// Name: name of the Project.
Name *string `json:"name,omitempty"`
// Description: description of the Project.
Description *string `json:"description,omitempty"`
}
// The Contract API allows you to manage contracts.
type ContractAPI struct {
client *scw.Client
}
// NewContractAPI returns a ContractAPI object from a Scaleway client.
func NewContractAPI(client *scw.Client) *ContractAPI {
return &ContractAPI{
client: client,
}
}
// DownloadContractSignature: Download a contract content.
func (s *ContractAPI) DownloadContractSignature(req *ContractAPIDownloadContractSignatureRequest, opts ...scw.RequestOption) (*scw.File, error) {
var err error
query := url.Values{}
parameter.AddToQuery(query, "locale", req.Locale)
if fmt.Sprint(req.ContractSignatureID) == "" {
return nil, errors.New("field ContractSignatureID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "GET",
Path: "/account/v3/contract-signatures/" + fmt.Sprint(req.ContractSignatureID) + "/download",
Query: query,
}
var resp scw.File
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// CreateContractSignature: Create a signature for your Organization for the latest version of the requested contract.
func (s *ContractAPI) CreateContractSignature(req *ContractAPICreateContractSignatureRequest, opts ...scw.RequestOption) (*ContractSignature, error) {
var err error
if req.OrganizationID == "" {
defaultOrganizationID, _ := s.client.GetDefaultOrganizationID()
req.OrganizationID = defaultOrganizationID
}
scwReq := &scw.ScalewayRequest{
Method: "POST",
Path: "/account/v3/contract-signatures",
}
err = scwReq.SetBody(req)
if err != nil {
return nil, err
}
var resp ContractSignature
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// ValidateContractSignature: Sign a contract for your Organization.
func (s *ContractAPI) ValidateContractSignature(req *ContractAPIValidateContractSignatureRequest, opts ...scw.RequestOption) (*ContractSignature, error) {
var err error
if fmt.Sprint(req.ContractSignatureID) == "" {
return nil, errors.New("field ContractSignatureID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "POST",
Path: "/account/v3/contract-signatures/" + fmt.Sprint(req.ContractSignatureID) + "/validate",
}
err = scwReq.SetBody(req)
if err != nil {
return nil, err
}
var resp ContractSignature
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// CheckContractSignature: Check if a contract is signed for your Organization.
func (s *ContractAPI) CheckContractSignature(req *ContractAPICheckContractSignatureRequest, opts ...scw.RequestOption) (*CheckContractSignatureResponse, error) {
var err error
if req.OrganizationID == "" {
defaultOrganizationID, _ := s.client.GetDefaultOrganizationID()
req.OrganizationID = defaultOrganizationID
}
scwReq := &scw.ScalewayRequest{
Method: "POST",
Path: "/account/v3/contract-signatures/check",
}
err = scwReq.SetBody(req)
if err != nil {
return nil, err
}
var resp CheckContractSignatureResponse
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// ListContractSignatures: List contract signatures for an Organization.
func (s *ContractAPI) ListContractSignatures(req *ContractAPIListContractSignaturesRequest, opts ...scw.RequestOption) (*ListContractSignaturesResponse, error) {
var err error
defaultPageSize, exist := s.client.GetDefaultPageSize()
if (req.PageSize == nil || *req.PageSize == 0) && exist {
req.PageSize = &defaultPageSize
}
if req.OrganizationID == "" {
defaultOrganizationID, _ := s.client.GetDefaultOrganizationID()
req.OrganizationID = defaultOrganizationID
}
query := url.Values{}
parameter.AddToQuery(query, "page", req.Page)
parameter.AddToQuery(query, "page_size", req.PageSize)
parameter.AddToQuery(query, "order_by", req.OrderBy)
parameter.AddToQuery(query, "organization_id", req.OrganizationID)
scwReq := &scw.ScalewayRequest{
Method: "GET",
Path: "/account/v3/contract-signatures",
Query: query,
}
var resp ListContractSignaturesResponse
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// This API allows you to manage your Scaleway Projects.
type ProjectAPI struct {
client *scw.Client
}
// NewProjectAPI returns a ProjectAPI object from a Scaleway client.
func NewProjectAPI(client *scw.Client) *ProjectAPI {
return &ProjectAPI{
client: client,
}
}
// CreateProject: Generate a new Project for an Organization, specifying its configuration including name and description.
func (s *ProjectAPI) CreateProject(req *ProjectAPICreateProjectRequest, opts ...scw.RequestOption) (*Project, error) {
var err error
if req.OrganizationID == "" {
defaultOrganizationID, _ := s.client.GetDefaultOrganizationID()
req.OrganizationID = defaultOrganizationID
}
if req.Name == "" {
req.Name = namegenerator.GetRandomName("proj")
}
scwReq := &scw.ScalewayRequest{
Method: "POST",
Path: "/account/v3/projects",
}
err = scwReq.SetBody(req)
if err != nil {
return nil, err
}
var resp Project
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// ListProjects: List all Projects of an Organization. The response will include the total number of Projects as well as their associated Organizations, names, and IDs. Other information includes the creation and update date of the Project.
func (s *ProjectAPI) ListProjects(req *ProjectAPIListProjectsRequest, opts ...scw.RequestOption) (*ListProjectsResponse, error) {
var err error
if req.OrganizationID == "" {
defaultOrganizationID, _ := s.client.GetDefaultOrganizationID()
req.OrganizationID = defaultOrganizationID
}
defaultPageSize, exist := s.client.GetDefaultPageSize()
if (req.PageSize == nil || *req.PageSize == 0) && exist {
req.PageSize = &defaultPageSize
}
query := url.Values{}
parameter.AddToQuery(query, "organization_id", req.OrganizationID)
parameter.AddToQuery(query, "name", req.Name)
parameter.AddToQuery(query, "page", req.Page)
parameter.AddToQuery(query, "page_size", req.PageSize)
parameter.AddToQuery(query, "order_by", req.OrderBy)
parameter.AddToQuery(query, "project_ids", req.ProjectIDs)
scwReq := &scw.ScalewayRequest{
Method: "GET",
Path: "/account/v3/projects",
Query: query,
}
var resp ListProjectsResponse
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// GetProject: Retrieve information about an existing Project, specified by its Project ID. Its full details, including ID, name and description, are returned in the response object.
func (s *ProjectAPI) GetProject(req *ProjectAPIGetProjectRequest, opts ...scw.RequestOption) (*Project, error) {
var err error
if req.ProjectID == "" {
defaultProjectID, _ := s.client.GetDefaultProjectID()
req.ProjectID = defaultProjectID
}
if fmt.Sprint(req.ProjectID) == "" {
return nil, errors.New("field ProjectID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "GET",
Path: "/account/v3/projects/" + fmt.Sprint(req.ProjectID) + "",
}
var resp Project
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// DeleteProject: Delete an existing Project, specified by its Project ID. The Project needs to be empty (meaning there are no resources left in it) to be deleted effectively. Note that deleting a Project is permanent, and cannot be undone.
func (s *ProjectAPI) DeleteProject(req *ProjectAPIDeleteProjectRequest, opts ...scw.RequestOption) error {
var err error
if req.ProjectID == "" {
defaultProjectID, _ := s.client.GetDefaultProjectID()
req.ProjectID = defaultProjectID
}
if fmt.Sprint(req.ProjectID) == "" {
return errors.New("field ProjectID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "DELETE",
Path: "/account/v3/projects/" + fmt.Sprint(req.ProjectID) + "",
}
err = s.client.Do(scwReq, nil, opts...)
if err != nil {
return err
}
return nil
}
// UpdateProject: Update the parameters of an existing Project, specified by its Project ID. These parameters include the name and description.
func (s *ProjectAPI) UpdateProject(req *ProjectAPIUpdateProjectRequest, opts ...scw.RequestOption) (*Project, error) {
var err error
if req.ProjectID == "" {
defaultProjectID, _ := s.client.GetDefaultProjectID()
req.ProjectID = defaultProjectID
}
if fmt.Sprint(req.ProjectID) == "" {
return nil, errors.New("field ProjectID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "PATCH",
Path: "/account/v3/projects/" + fmt.Sprint(req.ProjectID) + "",
}
err = scwReq.SetBody(req)
if err != nil {
return nil, err
}
var resp Project
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
|