Class: Infrawrench::ManagedAccountsNamespace
- Inherits:
-
Object
- Object
- Infrawrench::ManagedAccountsNamespace
- Defined in:
- lib/infrawrench/client.rb,
sig/infrawrench/sdk.rbs
Overview
client.managed_accounts
Instance Method Summary collapse
-
#create(body:, org_id: nil, request_options: nil) ⇒ Hash
Create a managed account.
-
#delete(id:, org_id: nil, request_options: nil) ⇒ Hash
Retire a managed account.
-
#get(id:, org_id: nil, request_options: nil) ⇒ Hash
Get a managed account.
-
#initialize(transport) ⇒ ManagedAccountsNamespace
constructor
private
A new instance of ManagedAccountsNamespace.
-
#list(org_id: nil, request_options: nil) ⇒ Array<Hash>
List managed accounts.
-
#update(id:, body:, org_id: nil, request_options: nil) ⇒ Hash
Update a managed account.
Constructor Details
#initialize(transport) ⇒ ManagedAccountsNamespace
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of ManagedAccountsNamespace.
9753 9754 9755 |
# File 'lib/infrawrench/client.rb', line 9753 def initialize(transport) @transport = transport end |
Instance Method Details
#create(body:, org_id: nil, request_options: nil) ⇒ Hash
Create a managed account
Refused with 409 when a cost centre or account named here is already billed to another customer. The error names the other customer, because “it conflicts” without saying with whom sends the caller hunting.
Requires permission: invoices:write.
POST /api/org/orgId/managed-accounts
Raises on 400: Bad request
Raises on 409: Conflict
9777 9778 9779 9780 9781 9782 9783 9784 9785 |
# File 'lib/infrawrench/client.rb', line 9777 def create(body:, org_id: nil, request_options: nil) @transport.request( http_method: "POST", path: "/api/org/{orgId}/managed-accounts", path_params: { "orgId" => org_id }, body: body, request_options: ) end |
#delete(id:, org_id: nil, request_options: nil) ⇒ Hash
Retire a managed account
A soft delete: an issued invoice names its customer, and an invoice whose customer stopped resolving is exactly the unreconcilable document this feature exists to prevent. Draft invoices are removed with it — a draft was never issued.
Requires permission: invoices:write.
DELETE /api/org/orgId/managed-accounts/id
Raises on 404: Not found
9806 9807 9808 9809 9810 9811 9812 9813 |
# File 'lib/infrawrench/client.rb', line 9806 def delete(id:, org_id: nil, request_options: nil) @transport.request( http_method: "DELETE", path: "/api/org/{orgId}/managed-accounts/{id}", path_params: { "orgId" => org_id, "id" => id }, request_options: ) end |
#get(id:, org_id: nil, request_options: nil) ⇒ Hash
Get a managed account
Requires permission: invoices:read.
GET /api/org/orgId/managed-accounts/id
Raises on 404: Not found
9829 9830 9831 9832 9833 9834 9835 9836 |
# File 'lib/infrawrench/client.rb', line 9829 def get(id:, org_id: nil, request_options: nil) @transport.request( http_method: "GET", path: "/api/org/{orgId}/managed-accounts/{id}", path_params: { "orgId" => org_id, "id" => id }, request_options: ) end |
#list(org_id: nil, request_options: nil) ⇒ Array<Hash>
List managed accounts
The customers a managed service provider bills. A managed account references existing cost centres rather than defining its own matching rules, so the spend on an invoice is the same spend the showback report attributes to those centres.
Requires permission: invoices:read.
GET /api/org/orgId/managed-accounts
9855 9856 9857 9858 9859 9860 9861 9862 |
# File 'lib/infrawrench/client.rb', line 9855 def list(org_id: nil, request_options: nil) @transport.request( http_method: "GET", path: "/api/org/{orgId}/managed-accounts", path_params: { "orgId" => org_id }, request_options: ) end |
#update(id:, body:, org_id: nil, request_options: nil) ⇒ Hash
Update a managed account
A full replace. Editing the scope changes what future drafts are drawn over and nothing else: every approved invoice holds its own copy of the scope, so moving a cost centre between customers cannot re-bill a period that has already been invoiced.
Requires permission: invoices:write.
PUT /api/org/orgId/managed-accounts/id
Raises on 400: Bad request
Raises on 404: Not found
Raises on 409: Conflict
9888 9889 9890 9891 9892 9893 9894 9895 9896 |
# File 'lib/infrawrench/client.rb', line 9888 def update(id:, body:, org_id: nil, request_options: nil) @transport.request( http_method: "PUT", path: "/api/org/{orgId}/managed-accounts/{id}", path_params: { "orgId" => org_id, "id" => id }, body: body, request_options: ) end |