@pulumi/cloud-sdk 2026.8.26 → 2026.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/Organizations.d.ts +8 -1
- package/dist/api/Organizations.js +27 -0
- package/dist/api/Organizations.js.map +1 -1
- package/dist/model/AuditLogEventTypeCatalogEntry.d.ts +14 -0
- package/dist/model/AuditLogEventTypeCatalogEntry.js +46 -0
- package/dist/model/AuditLogEventTypeCatalogEntry.js.map +1 -0
- package/dist/model/EnvironmentDiagnostic.d.ts +1 -1
- package/dist/model/EscRange.d.ts +1 -1
- package/dist/model/EscValue.d.ts +1 -1
- package/dist/model/ListAuditLogEventTypesResponse.d.ts +10 -0
- package/dist/model/ListAuditLogEventTypesResponse.js +43 -0
- package/dist/model/ListAuditLogEventTypesResponse.js.map +1 -0
- package/dist/model/OrganizationFeatures.d.ts +1 -0
- package/dist/model/OrganizationFeatures.js.map +1 -1
- package/dist/model/OrganizationMember.d.ts +1 -0
- package/dist/model/OrganizationMember.js.map +1 -1
- package/dist/model/OrganizationMemberKind.d.ts +4 -0
- package/dist/model/OrganizationMemberKind.js +22 -0
- package/dist/model/OrganizationMemberKind.js.map +1 -0
- package/dist/model/models.d.ts +3 -0
- package/dist/model/models.js +3 -0
- package/dist/model/models.js.map +1 -1
- package/package.json +1 -1
|
@@ -51,6 +51,7 @@ import { GetServiceResponse } from "../model/GetServiceResponse";
|
|
|
51
51
|
import { GetTemplateConfigurationResponse } from "../model/GetTemplateConfigurationResponse";
|
|
52
52
|
import { KeyEncryptionKeyMigration } from "../model/KeyEncryptionKeyMigration";
|
|
53
53
|
import { ListAccessTokensResponse } from "../model/ListAccessTokensResponse";
|
|
54
|
+
import { ListAuditLogEventTypesResponse } from "../model/ListAuditLogEventTypesResponse";
|
|
54
55
|
import { ListChangeGatesResponse } from "../model/ListChangeGatesResponse";
|
|
55
56
|
import { ListChangeRequestEventsResponse } from "../model/ListChangeRequestEventsResponse";
|
|
56
57
|
import { ListChangeRequestsResponse } from "../model/ListChangeRequestsResponse";
|
|
@@ -75,6 +76,7 @@ import { OidcIssuerUpdateRequest } from "../model/OidcIssuerUpdateRequest";
|
|
|
75
76
|
import { Organization } from "../model/Organization";
|
|
76
77
|
import { OrganizationAuditLogExportSettings } from "../model/OrganizationAuditLogExportSettings";
|
|
77
78
|
import { OrganizationMember } from "../model/OrganizationMember";
|
|
79
|
+
import { OrganizationMemberKind } from "../model/OrganizationMemberKind";
|
|
78
80
|
import { OrganizationMetadata } from "../model/OrganizationMetadata";
|
|
79
81
|
import { OrganizationSummaryWithRole } from "../model/OrganizationSummaryWithRole";
|
|
80
82
|
import { PackageUsageResponse } from "../model/PackageUsageResponse";
|
|
@@ -631,6 +633,10 @@ export declare class Organizations {
|
|
|
631
633
|
ownerName: string;
|
|
632
634
|
serviceName: string;
|
|
633
635
|
}): Promise<void>;
|
|
636
|
+
ListAuditLogEventTypes__generateUrl(orgName: string): string;
|
|
637
|
+
ListAuditLogEventTypes(params: {
|
|
638
|
+
orgName: string;
|
|
639
|
+
}): Promise<ListAuditLogEventTypesResponse>;
|
|
634
640
|
ListAuditLogEventsHandlerV1__generateUrl(orgName: string): string;
|
|
635
641
|
ListAuditLogEventsHandlerV1(params: {
|
|
636
642
|
orgName: string;
|
|
@@ -702,7 +708,8 @@ export declare class Organizations {
|
|
|
702
708
|
ListOrganizationMembers(params: {
|
|
703
709
|
orgName: string;
|
|
704
710
|
continuationToken?: string;
|
|
705
|
-
|
|
711
|
+
includeSuspended?: boolean;
|
|
712
|
+
type?: OrganizationMemberKind;
|
|
706
713
|
}): Promise<ListOrganizationMembersResponse>;
|
|
707
714
|
ListOrganizationWebhooks__generateUrl(orgName: string): string;
|
|
708
715
|
ListOrganizationWebhooks(params: {
|
|
@@ -46,6 +46,7 @@ const GetServiceResponse_1 = require("../model/GetServiceResponse");
|
|
|
46
46
|
const GetTemplateConfigurationResponse_1 = require("../model/GetTemplateConfigurationResponse");
|
|
47
47
|
const KeyEncryptionKeyMigration_1 = require("../model/KeyEncryptionKeyMigration");
|
|
48
48
|
const ListAccessTokensResponse_1 = require("../model/ListAccessTokensResponse");
|
|
49
|
+
const ListAuditLogEventTypesResponse_1 = require("../model/ListAuditLogEventTypesResponse");
|
|
49
50
|
const ListChangeGatesResponse_1 = require("../model/ListChangeGatesResponse");
|
|
50
51
|
const ListChangeRequestEventsResponse_1 = require("../model/ListChangeRequestEventsResponse");
|
|
51
52
|
const ListChangeRequestsResponse_1 = require("../model/ListChangeRequestsResponse");
|
|
@@ -2824,6 +2825,29 @@ class Organizations {
|
|
|
2824
2825
|
__requestOptions.method = "HEAD";
|
|
2825
2826
|
return this.client.callWithOptions(__path, __requestOptions);
|
|
2826
2827
|
}
|
|
2828
|
+
ListAuditLogEventTypes__generateUrl(orgName) {
|
|
2829
|
+
let url = this.basePath + "orgs/{orgName}/auditlogs/event-types";
|
|
2830
|
+
url = url.replace("{orgName}", encodeURIComponent(String(orgName)));
|
|
2831
|
+
return url;
|
|
2832
|
+
}
|
|
2833
|
+
ListAuditLogEventTypes(params) {
|
|
2834
|
+
if (params === undefined) {
|
|
2835
|
+
throw new Error("Required parameter params was null or undefined when calling ListAuditLogEventTypes.");
|
|
2836
|
+
}
|
|
2837
|
+
// verify required parameter 'orgName' is not null or undefined
|
|
2838
|
+
if (params.orgName === null || params.orgName === undefined) {
|
|
2839
|
+
throw new Error("Required parameter orgName was null or undefined when calling ListAuditLogEventTypes.");
|
|
2840
|
+
}
|
|
2841
|
+
const __path = this.ListAuditLogEventTypes__generateUrl(params.orgName);
|
|
2842
|
+
let __requestOptions = new api_client_1.ApiRequest();
|
|
2843
|
+
__requestOptions.setProduce("application/json");
|
|
2844
|
+
__requestOptions.method = "GET";
|
|
2845
|
+
return this.client.callWithOptions(__path, __requestOptions, (__res0) => {
|
|
2846
|
+
if (__res0) {
|
|
2847
|
+
ListAuditLogEventTypesResponse_1.ListAuditLogEventTypesResponse.fixupPrototype(__res0);
|
|
2848
|
+
}
|
|
2849
|
+
});
|
|
2850
|
+
}
|
|
2827
2851
|
ListAuditLogEventsHandlerV1__generateUrl(orgName) {
|
|
2828
2852
|
let url = this.basePath + "orgs/{orgName}/auditlogs";
|
|
2829
2853
|
url = url.replace("{orgName}", encodeURIComponent(String(orgName)));
|
|
@@ -3179,6 +3203,9 @@ class Organizations {
|
|
|
3179
3203
|
if (params.continuationToken !== undefined) {
|
|
3180
3204
|
__requestOptions.setQueryParam("continuationToken", params.continuationToken);
|
|
3181
3205
|
}
|
|
3206
|
+
if (params.includeSuspended !== undefined) {
|
|
3207
|
+
__requestOptions.setQueryParam("includeSuspended", params.includeSuspended);
|
|
3208
|
+
}
|
|
3182
3209
|
if (params.type !== undefined) {
|
|
3183
3210
|
__requestOptions.setQueryParam("type", params.type);
|
|
3184
3211
|
}
|