UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

53 lines 2.3 kB
"use strict"; // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. Object.defineProperty(exports, "__esModule", { value: true }); exports.ResourceGroupListResponsesV4PagePaginationArray = exports.ResourceGroups = void 0; const resource_1 = require("../../resource.js"); const pagination_1 = require("../../pagination.js"); class ResourceGroups extends resource_1.APIResource { /** * Create a new Resource Group under the specified account. */ create(params, options) { const { account_id, ...body } = params; return this._client.post(`/accounts/${account_id}/iam/resource_groups`, { body, ...options }); } /** * Modify an existing resource group. */ update(resourceGroupId, params, options) { const { account_id, ...body } = params; return this._client.put(`/accounts/${account_id}/iam/resource_groups/${resourceGroupId}`, { body, ...options, }); } /** * List all the resource groups for an account. */ list(params, options) { const { account_id, ...query } = params; return this._client.getAPIList(`/accounts/${account_id}/iam/resource_groups`, ResourceGroupListResponsesV4PagePaginationArray, { query, ...options }); } /** * Remove a resource group from an account. */ delete(resourceGroupId, params, options) { const { account_id } = params; return this._client.delete(`/accounts/${account_id}/iam/resource_groups/${resourceGroupId}`, options)._thenUnwrap((obj) => obj.result); } /** * Get information about a specific resource group in an account. */ get(resourceGroupId, params, options) { const { account_id } = params; return this._client.get(`/accounts/${account_id}/iam/resource_groups/${resourceGroupId}`, options); } } exports.ResourceGroups = ResourceGroups; class ResourceGroupListResponsesV4PagePaginationArray extends pagination_1.V4PagePaginationArray { } exports.ResourceGroupListResponsesV4PagePaginationArray = ResourceGroupListResponsesV4PagePaginationArray; ResourceGroups.ResourceGroupListResponsesV4PagePaginationArray = ResourceGroupListResponsesV4PagePaginationArray; //# sourceMappingURL=resource-groups.js.map