@pulumi/gcp 7.22.0-alpha.1715345822 → 7.22.0
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/alloydb/cluster.d.ts +15 -0
- package/alloydb/cluster.js +2 -0
- package/alloydb/cluster.js.map +1 -1
- package/applicationintegration/authConfig.d.ts +1 -4
- package/applicationintegration/authConfig.js +1 -4
- package/applicationintegration/authConfig.js.map +1 -1
- package/applicationintegration/client.d.ts +45 -6
- package/applicationintegration/client.js +5 -6
- package/applicationintegration/client.js.map +1 -1
- package/bigquery/dataset.d.ts +1 -1
- package/bigquery/dataset.js +1 -1
- package/bigquery/job.d.ts +10 -11
- package/bigquery/job.js +10 -11
- package/bigquery/job.js.map +1 -1
- package/cloudrunv2/job.d.ts +1 -2
- package/cloudrunv2/job.js +1 -2
- package/cloudrunv2/job.js.map +1 -1
- package/cloudrunv2/service.d.ts +1 -2
- package/cloudrunv2/service.js +1 -2
- package/cloudrunv2/service.js.map +1 -1
- package/compute/routerPeer.d.ts +27 -6
- package/compute/routerPeer.js +21 -0
- package/compute/routerPeer.js.map +1 -1
- package/config/vars.d.ts +1 -0
- package/config/vars.js +6 -0
- package/config/vars.js.map +1 -1
- package/dataflow/flexTemplateJob.d.ts +9 -9
- package/dataflow/job.d.ts +9 -3
- package/dataflow/job.js.map +1 -1
- package/essentialcontacts/documentAiWarehouseDocumentSchema.d.ts +0 -272
- package/essentialcontacts/documentAiWarehouseDocumentSchema.js +0 -272
- package/essentialcontacts/documentAiWarehouseDocumentSchema.js.map +1 -1
- package/firebaserules/release.d.ts +1 -1
- package/firebaserules/release.js +1 -1
- package/index.d.ts +2 -1
- package/index.js +4 -2
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/privilegedaccessmanager/entitlement.d.ts +277 -0
- package/privilegedaccessmanager/entitlement.js +157 -0
- package/privilegedaccessmanager/entitlement.js.map +1 -0
- package/privilegedaccessmanager/index.d.ts +3 -0
- package/privilegedaccessmanager/index.js +22 -0
- package/privilegedaccessmanager/index.js.map +1 -0
- package/provider.d.ts +2 -0
- package/provider.js +1 -0
- package/provider.js.map +1 -1
- package/redis/cluster.d.ts +27 -0
- package/redis/cluster.js +5 -0
- package/redis/cluster.js.map +1 -1
- package/storage/getBuckets.d.ts +81 -0
- package/storage/getBuckets.js +57 -0
- package/storage/getBuckets.js.map +1 -0
- package/storage/index.d.ts +3 -0
- package/storage/index.js +4 -1
- package/storage/index.js.map +1 -1
- package/types/input.d.ts +198 -0
- package/types/output.d.ts +250 -0
|
@@ -45,278 +45,6 @@ const utilities = require("../utilities");
|
|
|
45
45
|
* }],
|
|
46
46
|
* });
|
|
47
47
|
* ```
|
|
48
|
-
* ### Document Ai Warehouse Document Schema Integer
|
|
49
|
-
*
|
|
50
|
-
* ```typescript
|
|
51
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
52
|
-
* import * as gcp from "@pulumi/gcp";
|
|
53
|
-
*
|
|
54
|
-
* const project = gcp.organizations.getProject({});
|
|
55
|
-
* const exampleInteger = new gcp.essentialcontacts.DocumentAiWarehouseDocumentSchema("example_integer", {
|
|
56
|
-
* projectNumber: project.then(project => project.number),
|
|
57
|
-
* displayName: "test-property-integer",
|
|
58
|
-
* location: "us",
|
|
59
|
-
* propertyDefinitions: [{
|
|
60
|
-
* name: "prop1",
|
|
61
|
-
* displayName: "propdisp1",
|
|
62
|
-
* isRepeatable: false,
|
|
63
|
-
* isFilterable: true,
|
|
64
|
-
* isSearchable: true,
|
|
65
|
-
* isMetadata: false,
|
|
66
|
-
* isRequired: false,
|
|
67
|
-
* retrievalImportance: "HIGHEST",
|
|
68
|
-
* schemaSources: [{
|
|
69
|
-
* name: "dummy_source",
|
|
70
|
-
* processorType: "dummy_processor",
|
|
71
|
-
* }],
|
|
72
|
-
* integerTypeOptions: {},
|
|
73
|
-
* }],
|
|
74
|
-
* });
|
|
75
|
-
* ```
|
|
76
|
-
* ### Document Ai Warehouse Document Schema Float
|
|
77
|
-
*
|
|
78
|
-
* ```typescript
|
|
79
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
80
|
-
* import * as gcp from "@pulumi/gcp";
|
|
81
|
-
*
|
|
82
|
-
* const project = gcp.organizations.getProject({});
|
|
83
|
-
* const exampleFloat = new gcp.essentialcontacts.DocumentAiWarehouseDocumentSchema("example_float", {
|
|
84
|
-
* projectNumber: project.then(project => project.number),
|
|
85
|
-
* displayName: "test-property-float",
|
|
86
|
-
* location: "us",
|
|
87
|
-
* propertyDefinitions: [{
|
|
88
|
-
* name: "prop2",
|
|
89
|
-
* displayName: "propdisp2",
|
|
90
|
-
* isRepeatable: false,
|
|
91
|
-
* isFilterable: true,
|
|
92
|
-
* isSearchable: true,
|
|
93
|
-
* isMetadata: false,
|
|
94
|
-
* isRequired: false,
|
|
95
|
-
* retrievalImportance: "HIGHEST",
|
|
96
|
-
* schemaSources: [{
|
|
97
|
-
* name: "dummy_source",
|
|
98
|
-
* processorType: "dummy_processor",
|
|
99
|
-
* }],
|
|
100
|
-
* floatTypeOptions: {},
|
|
101
|
-
* }],
|
|
102
|
-
* });
|
|
103
|
-
* ```
|
|
104
|
-
* ### Document Ai Warehouse Document Schema Property
|
|
105
|
-
*
|
|
106
|
-
* ```typescript
|
|
107
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
108
|
-
* import * as gcp from "@pulumi/gcp";
|
|
109
|
-
*
|
|
110
|
-
* const project = gcp.organizations.getProject({});
|
|
111
|
-
* const exampleProperty = new gcp.essentialcontacts.DocumentAiWarehouseDocumentSchema("example_property", {
|
|
112
|
-
* projectNumber: project.then(project => project.number),
|
|
113
|
-
* displayName: "test-property-property",
|
|
114
|
-
* location: "us",
|
|
115
|
-
* documentIsFolder: false,
|
|
116
|
-
* propertyDefinitions: [{
|
|
117
|
-
* name: "prop8",
|
|
118
|
-
* displayName: "propdisp8",
|
|
119
|
-
* isRepeatable: false,
|
|
120
|
-
* isFilterable: true,
|
|
121
|
-
* isSearchable: true,
|
|
122
|
-
* isMetadata: false,
|
|
123
|
-
* isRequired: false,
|
|
124
|
-
* retrievalImportance: "HIGHEST",
|
|
125
|
-
* schemaSources: [{
|
|
126
|
-
* name: "dummy_source",
|
|
127
|
-
* processorType: "dummy_processor",
|
|
128
|
-
* }],
|
|
129
|
-
* propertyTypeOptions: {
|
|
130
|
-
* propertyDefinitions: [{
|
|
131
|
-
* name: "prop8_nested",
|
|
132
|
-
* displayName: "propdisp8_nested",
|
|
133
|
-
* isRepeatable: false,
|
|
134
|
-
* isFilterable: true,
|
|
135
|
-
* isSearchable: true,
|
|
136
|
-
* isMetadata: false,
|
|
137
|
-
* isRequired: false,
|
|
138
|
-
* retrievalImportance: "HIGHEST",
|
|
139
|
-
* schemaSources: [{
|
|
140
|
-
* name: "dummy_source_nested",
|
|
141
|
-
* processorType: "dummy_processor_nested",
|
|
142
|
-
* }],
|
|
143
|
-
* textTypeOptions: {},
|
|
144
|
-
* }],
|
|
145
|
-
* },
|
|
146
|
-
* }],
|
|
147
|
-
* });
|
|
148
|
-
* ```
|
|
149
|
-
* ### Document Ai Warehouse Document Schema Property Enum
|
|
150
|
-
*
|
|
151
|
-
* ```typescript
|
|
152
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
153
|
-
* import * as gcp from "@pulumi/gcp";
|
|
154
|
-
*
|
|
155
|
-
* const project = gcp.organizations.getProject({});
|
|
156
|
-
* const examplePropertyEnum = new gcp.essentialcontacts.DocumentAiWarehouseDocumentSchema("example_property_enum", {
|
|
157
|
-
* projectNumber: project.then(project => project.number),
|
|
158
|
-
* displayName: "test-property-property",
|
|
159
|
-
* location: "us",
|
|
160
|
-
* documentIsFolder: false,
|
|
161
|
-
* propertyDefinitions: [{
|
|
162
|
-
* name: "prop8",
|
|
163
|
-
* displayName: "propdisp8",
|
|
164
|
-
* isRepeatable: false,
|
|
165
|
-
* isFilterable: true,
|
|
166
|
-
* isSearchable: true,
|
|
167
|
-
* isMetadata: false,
|
|
168
|
-
* isRequired: false,
|
|
169
|
-
* retrievalImportance: "HIGHEST",
|
|
170
|
-
* schemaSources: [{
|
|
171
|
-
* name: "dummy_source",
|
|
172
|
-
* processorType: "dummy_processor",
|
|
173
|
-
* }],
|
|
174
|
-
* propertyTypeOptions: {
|
|
175
|
-
* propertyDefinitions: [{
|
|
176
|
-
* name: "prop8_nested",
|
|
177
|
-
* displayName: "propdisp8_nested",
|
|
178
|
-
* isRepeatable: false,
|
|
179
|
-
* isFilterable: true,
|
|
180
|
-
* isSearchable: true,
|
|
181
|
-
* isMetadata: false,
|
|
182
|
-
* isRequired: false,
|
|
183
|
-
* retrievalImportance: "HIGHEST",
|
|
184
|
-
* schemaSources: [{
|
|
185
|
-
* name: "dummy_source_nested",
|
|
186
|
-
* processorType: "dummy_processor_nested",
|
|
187
|
-
* }],
|
|
188
|
-
* enumTypeOptions: {
|
|
189
|
-
* possibleValues: [
|
|
190
|
-
* "M",
|
|
191
|
-
* "F",
|
|
192
|
-
* "X",
|
|
193
|
-
* ],
|
|
194
|
-
* validationCheckDisabled: false,
|
|
195
|
-
* },
|
|
196
|
-
* }],
|
|
197
|
-
* },
|
|
198
|
-
* }],
|
|
199
|
-
* });
|
|
200
|
-
* ```
|
|
201
|
-
* ### Document Ai Warehouse Document Schema Enum
|
|
202
|
-
*
|
|
203
|
-
* ```typescript
|
|
204
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
205
|
-
* import * as gcp from "@pulumi/gcp";
|
|
206
|
-
*
|
|
207
|
-
* const project = gcp.organizations.getProject({});
|
|
208
|
-
* const exampleEnum = new gcp.essentialcontacts.DocumentAiWarehouseDocumentSchema("example_enum", {
|
|
209
|
-
* projectNumber: project.then(project => project.number),
|
|
210
|
-
* displayName: "test-property-enum",
|
|
211
|
-
* location: "us",
|
|
212
|
-
* propertyDefinitions: [{
|
|
213
|
-
* name: "prop6",
|
|
214
|
-
* displayName: "propdisp6",
|
|
215
|
-
* isRepeatable: false,
|
|
216
|
-
* isFilterable: true,
|
|
217
|
-
* isSearchable: true,
|
|
218
|
-
* isMetadata: false,
|
|
219
|
-
* isRequired: false,
|
|
220
|
-
* retrievalImportance: "HIGHEST",
|
|
221
|
-
* schemaSources: [{
|
|
222
|
-
* name: "dummy_source",
|
|
223
|
-
* processorType: "dummy_processor",
|
|
224
|
-
* }],
|
|
225
|
-
* enumTypeOptions: {
|
|
226
|
-
* possibleValues: [
|
|
227
|
-
* "M",
|
|
228
|
-
* "F",
|
|
229
|
-
* "X",
|
|
230
|
-
* ],
|
|
231
|
-
* validationCheckDisabled: false,
|
|
232
|
-
* },
|
|
233
|
-
* }],
|
|
234
|
-
* });
|
|
235
|
-
* ```
|
|
236
|
-
* ### Document Ai Warehouse Document Schema Map
|
|
237
|
-
*
|
|
238
|
-
* ```typescript
|
|
239
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
240
|
-
* import * as gcp from "@pulumi/gcp";
|
|
241
|
-
*
|
|
242
|
-
* const project = gcp.organizations.getProject({});
|
|
243
|
-
* const exampleMap = new gcp.essentialcontacts.DocumentAiWarehouseDocumentSchema("example_map", {
|
|
244
|
-
* projectNumber: project.then(project => project.number),
|
|
245
|
-
* displayName: "test-property-map",
|
|
246
|
-
* location: "us",
|
|
247
|
-
* propertyDefinitions: [{
|
|
248
|
-
* name: "prop4",
|
|
249
|
-
* displayName: "propdisp4",
|
|
250
|
-
* isRepeatable: false,
|
|
251
|
-
* isFilterable: true,
|
|
252
|
-
* isSearchable: true,
|
|
253
|
-
* isMetadata: false,
|
|
254
|
-
* isRequired: false,
|
|
255
|
-
* retrievalImportance: "HIGHEST",
|
|
256
|
-
* schemaSources: [{
|
|
257
|
-
* name: "dummy_source",
|
|
258
|
-
* processorType: "dummy_processor",
|
|
259
|
-
* }],
|
|
260
|
-
* mapTypeOptions: {},
|
|
261
|
-
* }],
|
|
262
|
-
* });
|
|
263
|
-
* ```
|
|
264
|
-
* ### Document Ai Warehouse Document Schema Datetime
|
|
265
|
-
*
|
|
266
|
-
* ```typescript
|
|
267
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
268
|
-
* import * as gcp from "@pulumi/gcp";
|
|
269
|
-
*
|
|
270
|
-
* const project = gcp.organizations.getProject({});
|
|
271
|
-
* const exampleDatetime = new gcp.essentialcontacts.DocumentAiWarehouseDocumentSchema("example_datetime", {
|
|
272
|
-
* projectNumber: project.then(project => project.number),
|
|
273
|
-
* displayName: "test-property-date_time",
|
|
274
|
-
* location: "us",
|
|
275
|
-
* propertyDefinitions: [{
|
|
276
|
-
* name: "prop7",
|
|
277
|
-
* displayName: "propdisp7",
|
|
278
|
-
* isRepeatable: false,
|
|
279
|
-
* isFilterable: true,
|
|
280
|
-
* isSearchable: true,
|
|
281
|
-
* isMetadata: false,
|
|
282
|
-
* isRequired: false,
|
|
283
|
-
* retrievalImportance: "HIGHEST",
|
|
284
|
-
* schemaSources: [{
|
|
285
|
-
* name: "dummy_source",
|
|
286
|
-
* processorType: "dummy_processor",
|
|
287
|
-
* }],
|
|
288
|
-
* dateTimeTypeOptions: {},
|
|
289
|
-
* }],
|
|
290
|
-
* });
|
|
291
|
-
* ```
|
|
292
|
-
* ### Document Ai Warehouse Document Schema Timestamp
|
|
293
|
-
*
|
|
294
|
-
* ```typescript
|
|
295
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
296
|
-
* import * as gcp from "@pulumi/gcp";
|
|
297
|
-
*
|
|
298
|
-
* const project = gcp.organizations.getProject({});
|
|
299
|
-
* const exampleTimestamp = new gcp.essentialcontacts.DocumentAiWarehouseDocumentSchema("example_timestamp", {
|
|
300
|
-
* projectNumber: project.then(project => project.number),
|
|
301
|
-
* displayName: "test-property-timestamp",
|
|
302
|
-
* location: "us",
|
|
303
|
-
* propertyDefinitions: [{
|
|
304
|
-
* name: "prop5",
|
|
305
|
-
* displayName: "propdisp5",
|
|
306
|
-
* isRepeatable: false,
|
|
307
|
-
* isFilterable: true,
|
|
308
|
-
* isSearchable: true,
|
|
309
|
-
* isMetadata: false,
|
|
310
|
-
* isRequired: false,
|
|
311
|
-
* retrievalImportance: "HIGHEST",
|
|
312
|
-
* schemaSources: [{
|
|
313
|
-
* name: "dummy_source",
|
|
314
|
-
* processorType: "dummy_processor",
|
|
315
|
-
* }],
|
|
316
|
-
* timestampTypeOptions: {},
|
|
317
|
-
* }],
|
|
318
|
-
* });
|
|
319
|
-
* ```
|
|
320
48
|
*
|
|
321
49
|
* ## Import
|
|
322
50
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"documentAiWarehouseDocumentSchema.js","sourceRoot":"","sources":["../../essentialcontacts/documentAiWarehouseDocumentSchema.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"documentAiWarehouseDocumentSchema.js","sourceRoot":"","sources":["../../essentialcontacts/documentAiWarehouseDocumentSchema.ts"],"names":[],"mappings":"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"}
|
|
@@ -20,7 +20,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
20
20
|
* project: "my-project-name",
|
|
21
21
|
* });
|
|
22
22
|
* const primary = new gcp.firebaserules.Release("primary", {
|
|
23
|
-
* name: "cloud.firestore",
|
|
23
|
+
* name: "cloud.firestore/database",
|
|
24
24
|
* rulesetName: pulumi.interpolate`projects/my-project-name/rulesets/${firestore.name}`,
|
|
25
25
|
* project: "my-project-name",
|
|
26
26
|
* });
|
package/firebaserules/release.js
CHANGED
|
@@ -26,7 +26,7 @@ const utilities = require("../utilities");
|
|
|
26
26
|
* project: "my-project-name",
|
|
27
27
|
* });
|
|
28
28
|
* const primary = new gcp.firebaserules.Release("primary", {
|
|
29
|
-
* name: "cloud.firestore",
|
|
29
|
+
* name: "cloud.firestore/database",
|
|
30
30
|
* rulesetName: pulumi.interpolate`projects/my-project-name/rulesets/${firestore.name}`,
|
|
31
31
|
* project: "my-project-name",
|
|
32
32
|
* });
|
package/index.d.ts
CHANGED
|
@@ -94,6 +94,7 @@ import * as orgpolicy from "./orgpolicy";
|
|
|
94
94
|
import * as osconfig from "./osconfig";
|
|
95
95
|
import * as oslogin from "./oslogin";
|
|
96
96
|
import * as parallelstore from "./parallelstore";
|
|
97
|
+
import * as privilegedaccessmanager from "./privilegedaccessmanager";
|
|
97
98
|
import * as projects from "./projects";
|
|
98
99
|
import * as pubsub from "./pubsub";
|
|
99
100
|
import * as recaptcha from "./recaptcha";
|
|
@@ -121,4 +122,4 @@ import * as vpcaccess from "./vpcaccess";
|
|
|
121
122
|
import * as workbench from "./workbench";
|
|
122
123
|
import * as workflows from "./workflows";
|
|
123
124
|
import * as workstations from "./workstations";
|
|
124
|
-
export { accessapproval, accesscontextmanager, activedirectory, alloydb, apigateway, apigee, appengine, apphub, applicationintegration, artifactregistry, assuredworkloads, backupdisasterrecovery, beyondcorp, biglake, bigquery, bigqueryanalyticshub, bigquerydatapolicy, bigtable, billing, binaryauthorization, blockchainnodeengine, certificateauthority, certificatemanager, cloudasset, cloudbuild, cloudbuildv2, clouddeploy, clouddomains, cloudfunctions, cloudfunctionsv2, cloudidentity, cloudids, cloudquota, cloudrun, cloudrunv2, cloudscheduler, cloudtasks, composer, compute, config, container, containeranalysis, databasemigrationservice, datacatalog, dataflow, dataform, datafusion, dataloss, dataplex, dataproc, datastore, datastream, deploymentmanager, diagflow, discoveryengine, dns, edgecontainer, edgenetwork, endpoints, essentialcontacts, eventarc, filestore, firebase, firebaserules, firestore, folder, gkebackup, gkehub, gkeonprem, healthcare, iam, iap, identityplatform, integrationconnectors, kms, logging, looker, memcache, migrationcenter, ml, monitoring, netapp, networkconnectivity, networkmanagement, networksecurity, networkservices, notebooks, organizations, orgpolicy, osconfig, oslogin, parallelstore, projects, pubsub, recaptcha, redis, resourcemanager, runtimeconfig, secretmanager, securesourcemanager, securitycenter, securityposture, serviceaccount, servicedirectory, servicenetworking, serviceusage, sourcerepo, spanner, sql, storage, tags, tpu, types, vertex, vmwareengine, vpcaccess, workbench, workflows, workstations, };
|
|
125
|
+
export { accessapproval, accesscontextmanager, activedirectory, alloydb, apigateway, apigee, appengine, apphub, applicationintegration, artifactregistry, assuredworkloads, backupdisasterrecovery, beyondcorp, biglake, bigquery, bigqueryanalyticshub, bigquerydatapolicy, bigtable, billing, binaryauthorization, blockchainnodeengine, certificateauthority, certificatemanager, cloudasset, cloudbuild, cloudbuildv2, clouddeploy, clouddomains, cloudfunctions, cloudfunctionsv2, cloudidentity, cloudids, cloudquota, cloudrun, cloudrunv2, cloudscheduler, cloudtasks, composer, compute, config, container, containeranalysis, databasemigrationservice, datacatalog, dataflow, dataform, datafusion, dataloss, dataplex, dataproc, datastore, datastream, deploymentmanager, diagflow, discoveryengine, dns, edgecontainer, edgenetwork, endpoints, essentialcontacts, eventarc, filestore, firebase, firebaserules, firestore, folder, gkebackup, gkehub, gkeonprem, healthcare, iam, iap, identityplatform, integrationconnectors, kms, logging, looker, memcache, migrationcenter, ml, monitoring, netapp, networkconnectivity, networkmanagement, networksecurity, networkservices, notebooks, organizations, orgpolicy, osconfig, oslogin, parallelstore, privilegedaccessmanager, projects, pubsub, recaptcha, redis, resourcemanager, runtimeconfig, secretmanager, securesourcemanager, securitycenter, securityposture, serviceaccount, servicedirectory, servicenetworking, serviceusage, sourcerepo, spanner, sql, storage, tags, tpu, types, vertex, vmwareengine, vpcaccess, workbench, workflows, workstations, };
|
package/index.js
CHANGED
|
@@ -17,8 +17,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
17
17
|
};
|
|
18
18
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
19
|
exports.dataplex = exports.dataloss = exports.datafusion = exports.dataform = exports.dataflow = exports.datacatalog = exports.databasemigrationservice = exports.containeranalysis = exports.container = exports.config = exports.compute = exports.composer = exports.cloudtasks = exports.cloudscheduler = exports.cloudrunv2 = exports.cloudrun = exports.cloudquota = exports.cloudids = exports.cloudidentity = exports.cloudfunctionsv2 = exports.cloudfunctions = exports.clouddomains = exports.clouddeploy = exports.cloudbuildv2 = exports.cloudbuild = exports.cloudasset = exports.certificatemanager = exports.certificateauthority = exports.blockchainnodeengine = exports.binaryauthorization = exports.billing = exports.bigtable = exports.bigquerydatapolicy = exports.bigqueryanalyticshub = exports.bigquery = exports.biglake = exports.beyondcorp = exports.backupdisasterrecovery = exports.assuredworkloads = exports.artifactregistry = exports.applicationintegration = exports.apphub = exports.appengine = exports.apigee = exports.apigateway = exports.alloydb = exports.activedirectory = exports.accesscontextmanager = exports.accessapproval = exports.Provider = void 0;
|
|
20
|
-
exports.
|
|
21
|
-
exports.workstations = exports.workflows = exports.workbench = exports.vpcaccess = exports.vmwareengine = exports.vertex = exports.types = exports.tpu = exports.tags = exports.storage = exports.sql = exports.spanner = exports.sourcerepo = exports.serviceusage = exports.servicenetworking = exports.servicedirectory = exports.serviceaccount = exports.securityposture = exports.securitycenter = exports.securesourcemanager = void 0;
|
|
20
|
+
exports.runtimeconfig = exports.resourcemanager = exports.redis = exports.recaptcha = exports.pubsub = exports.projects = exports.privilegedaccessmanager = exports.parallelstore = exports.oslogin = exports.osconfig = exports.orgpolicy = exports.organizations = exports.notebooks = exports.networkservices = exports.networksecurity = exports.networkmanagement = exports.networkconnectivity = exports.netapp = exports.monitoring = exports.ml = exports.migrationcenter = exports.memcache = exports.looker = exports.logging = exports.kms = exports.integrationconnectors = exports.identityplatform = exports.iap = exports.iam = exports.healthcare = exports.gkeonprem = exports.gkehub = exports.gkebackup = exports.folder = exports.firestore = exports.firebaserules = exports.firebase = exports.filestore = exports.eventarc = exports.essentialcontacts = exports.endpoints = exports.edgenetwork = exports.edgecontainer = exports.dns = exports.discoveryengine = exports.diagflow = exports.deploymentmanager = exports.datastream = exports.datastore = exports.dataproc = void 0;
|
|
21
|
+
exports.workstations = exports.workflows = exports.workbench = exports.vpcaccess = exports.vmwareengine = exports.vertex = exports.types = exports.tpu = exports.tags = exports.storage = exports.sql = exports.spanner = exports.sourcerepo = exports.serviceusage = exports.servicenetworking = exports.servicedirectory = exports.serviceaccount = exports.securityposture = exports.securitycenter = exports.securesourcemanager = exports.secretmanager = void 0;
|
|
22
22
|
const pulumi = require("@pulumi/pulumi");
|
|
23
23
|
const utilities = require("./utilities");
|
|
24
24
|
exports.Provider = null;
|
|
@@ -209,6 +209,8 @@ const oslogin = require("./oslogin");
|
|
|
209
209
|
exports.oslogin = oslogin;
|
|
210
210
|
const parallelstore = require("./parallelstore");
|
|
211
211
|
exports.parallelstore = parallelstore;
|
|
212
|
+
const privilegedaccessmanager = require("./privilegedaccessmanager");
|
|
213
|
+
exports.privilegedaccessmanager = privilegedaccessmanager;
|
|
212
214
|
const projects = require("./projects");
|
|
213
215
|
exports.projects = projects;
|
|
214
216
|
const pubsub = require("./pubsub");
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;;;;;;;;;;;;;;;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAK5B,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC1E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAEvE,0CAAwB;AAExB,sBAAsB;AACtB,mDAAmD;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
|