@pulumi/gcp 6.32.0-alpha.1658137832 → 6.32.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/artifactregistry/repository.d.ts +3 -36
- package/artifactregistry/repository.js +3 -36
- package/artifactregistry/repository.js.map +1 -1
- package/artifactregistry/repositoryIamBinding.d.ts +5 -11
- package/artifactregistry/repositoryIamBinding.js +5 -11
- package/artifactregistry/repositoryIamBinding.js.map +1 -1
- package/artifactregistry/repositoryIamMember.d.ts +5 -11
- package/artifactregistry/repositoryIamMember.js +5 -11
- package/artifactregistry/repositoryIamMember.js.map +1 -1
- package/artifactregistry/repositoryIamPolicy.d.ts +5 -11
- package/artifactregistry/repositoryIamPolicy.js +5 -11
- package/artifactregistry/repositoryIamPolicy.js.map +1 -1
- package/bigquery/dataTransferConfig.d.ts +15 -9
- package/bigquery/dataTransferConfig.js.map +1 -1
- package/clouddeploy/target.d.ts +1 -1
- package/cloudrun/service.d.ts +46 -13
- package/cloudrun/service.js +46 -13
- package/cloudrun/service.js.map +1 -1
- package/compute/disk.d.ts +1 -1
- package/compute/index.d.ts +3 -0
- package/compute/index.js +15 -0
- package/compute/index.js.map +1 -1
- package/compute/snapshotIamBinding.d.ts +175 -0
- package/compute/snapshotIamBinding.js +144 -0
- package/compute/snapshotIamBinding.js.map +1 -0
- package/compute/snapshotIamMember.d.ts +175 -0
- package/compute/snapshotIamMember.js +144 -0
- package/compute/snapshotIamMember.js.map +1 -0
- package/compute/snapshotIamPolicy.d.ts +165 -0
- package/compute/snapshotIamPolicy.js +137 -0
- package/compute/snapshotIamPolicy.js.map +1 -0
- package/container/cluster.d.ts +24 -0
- package/container/cluster.js +2 -0
- package/container/cluster.js.map +1 -1
- package/container/getCluster.d.ts +1 -0
- package/container/getCluster.js.map +1 -1
- package/dataproc/metastoreService.d.ts +58 -15
- package/dataproc/metastoreService.js +14 -12
- package/dataproc/metastoreService.js.map +1 -1
- package/dataproc/metastoreServiceIamBinding.d.ts +63 -3
- package/dataproc/metastoreServiceIamBinding.js +60 -0
- package/dataproc/metastoreServiceIamBinding.js.map +1 -1
- package/dataproc/metastoreServiceIamMember.d.ts +63 -3
- package/dataproc/metastoreServiceIamMember.js +60 -0
- package/dataproc/metastoreServiceIamMember.js.map +1 -1
- package/dataproc/metastoreServiceIamPolicy.d.ts +63 -3
- package/dataproc/metastoreServiceIamPolicy.js +60 -0
- package/dataproc/metastoreServiceIamPolicy.js.map +1 -1
- package/essentialcontacts/documentAiProcessor.d.ts +9 -1
- package/essentialcontacts/documentAiProcessor.js +9 -1
- package/essentialcontacts/documentAiProcessor.js.map +1 -1
- package/firebaserules/release.d.ts +8 -8
- package/firebaserules/release.js +2 -2
- package/firebaserules/ruleset.d.ts +2 -2
- package/firebaserules/ruleset.js +2 -2
- package/iam/workloadIdentityPool.d.ts +5 -7
- package/iam/workloadIdentityPool.js +5 -7
- package/iam/workloadIdentityPool.js.map +1 -1
- package/iam/workloadIdentityPoolProvider.d.ts +5 -21
- package/iam/workloadIdentityPoolProvider.js +5 -21
- package/iam/workloadIdentityPoolProvider.js.map +1 -1
- package/iot/index.d.ts +3 -0
- package/iot/index.js +15 -0
- package/iot/index.js.map +1 -1
- package/iot/registryIamBinding.d.ts +202 -0
- package/iot/registryIamBinding.js +149 -0
- package/iot/registryIamBinding.js.map +1 -0
- package/iot/registryIamMember.d.ts +202 -0
- package/iot/registryIamMember.js +149 -0
- package/iot/registryIamMember.js.map +1 -0
- package/iot/registryIamPolicy.d.ts +192 -0
- package/iot/registryIamPolicy.js +142 -0
- package/iot/registryIamPolicy.js.map +1 -0
- package/kms/cryptoKey.d.ts +3 -3
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/projects/apiKey.d.ts +3 -3
- package/types/input.d.ts +39 -1
- package/types/output.d.ts +45 -3
|
@@ -5,7 +5,7 @@ import { input as inputs, output as outputs } from "../types";
|
|
|
5
5
|
*
|
|
6
6
|
* To get more information about Repository, see:
|
|
7
7
|
*
|
|
8
|
-
* * [API documentation](https://cloud.google.com/artifact-registry/docs/reference/rest/
|
|
8
|
+
* * [API documentation](https://cloud.google.com/artifact-registry/docs/reference/rest/v1/projects.locations.repositories)
|
|
9
9
|
* * How-to Guides
|
|
10
10
|
* * [Official Documentation](https://cloud.google.com/artifact-registry/docs/overview)
|
|
11
11
|
*
|
|
@@ -17,12 +17,10 @@ import { input as inputs, output as outputs } from "../types";
|
|
|
17
17
|
* import * as gcp from "@pulumi/gcp";
|
|
18
18
|
*
|
|
19
19
|
* const my_repo = new gcp.artifactregistry.Repository("my-repo", {
|
|
20
|
-
* location: "us-central1",
|
|
21
|
-
* repositoryId: "my-repository",
|
|
22
20
|
* description: "example docker repository",
|
|
23
21
|
* format: "DOCKER",
|
|
24
|
-
*
|
|
25
|
-
*
|
|
22
|
+
* location: "us-central1",
|
|
23
|
+
* repositoryId: "my-repository",
|
|
26
24
|
* });
|
|
27
25
|
* ```
|
|
28
26
|
* ### Artifact Registry Repository Cmek
|
|
@@ -32,42 +30,11 @@ import { input as inputs, output as outputs } from "../types";
|
|
|
32
30
|
* import * as gcp from "@pulumi/gcp";
|
|
33
31
|
*
|
|
34
32
|
* const my_repo = new gcp.artifactregistry.Repository("my-repo", {
|
|
35
|
-
* location: "us-central1",
|
|
36
|
-
* repositoryId: "my-repository",
|
|
37
33
|
* description: "example docker repository with cmek",
|
|
38
34
|
* format: "DOCKER",
|
|
39
35
|
* kmsKeyName: "kms-key",
|
|
40
|
-
* }, {
|
|
41
|
-
* provider: google_beta,
|
|
42
|
-
* });
|
|
43
|
-
* ```
|
|
44
|
-
* ### Artifact Registry Repository Iam
|
|
45
|
-
*
|
|
46
|
-
* ```typescript
|
|
47
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
48
|
-
* import * as gcp from "@pulumi/gcp";
|
|
49
|
-
*
|
|
50
|
-
* const my_repo = new gcp.artifactregistry.Repository("my-repo", {
|
|
51
36
|
* location: "us-central1",
|
|
52
37
|
* repositoryId: "my-repository",
|
|
53
|
-
* description: "example docker repository with iam",
|
|
54
|
-
* format: "DOCKER",
|
|
55
|
-
* }, {
|
|
56
|
-
* provider: google_beta,
|
|
57
|
-
* });
|
|
58
|
-
* const test_account = new gcp.serviceaccount.Account("test-account", {
|
|
59
|
-
* accountId: "my-account",
|
|
60
|
-
* displayName: "Test Service Account",
|
|
61
|
-
* }, {
|
|
62
|
-
* provider: google_beta,
|
|
63
|
-
* });
|
|
64
|
-
* const test_iam = new gcp.artifactregistry.RepositoryIamMember("test-iam", {
|
|
65
|
-
* location: my_repo.location,
|
|
66
|
-
* repository: my_repo.name,
|
|
67
|
-
* role: "roles/artifactregistry.reader",
|
|
68
|
-
* member: pulumi.interpolate`serviceAccount:${test_account.email}`,
|
|
69
|
-
* }, {
|
|
70
|
-
* provider: google_beta,
|
|
71
38
|
* });
|
|
72
39
|
* ```
|
|
73
40
|
*
|
|
@@ -10,7 +10,7 @@ const utilities = require("../utilities");
|
|
|
10
10
|
*
|
|
11
11
|
* To get more information about Repository, see:
|
|
12
12
|
*
|
|
13
|
-
* * [API documentation](https://cloud.google.com/artifact-registry/docs/reference/rest/
|
|
13
|
+
* * [API documentation](https://cloud.google.com/artifact-registry/docs/reference/rest/v1/projects.locations.repositories)
|
|
14
14
|
* * How-to Guides
|
|
15
15
|
* * [Official Documentation](https://cloud.google.com/artifact-registry/docs/overview)
|
|
16
16
|
*
|
|
@@ -22,12 +22,10 @@ const utilities = require("../utilities");
|
|
|
22
22
|
* import * as gcp from "@pulumi/gcp";
|
|
23
23
|
*
|
|
24
24
|
* const my_repo = new gcp.artifactregistry.Repository("my-repo", {
|
|
25
|
-
* location: "us-central1",
|
|
26
|
-
* repositoryId: "my-repository",
|
|
27
25
|
* description: "example docker repository",
|
|
28
26
|
* format: "DOCKER",
|
|
29
|
-
*
|
|
30
|
-
*
|
|
27
|
+
* location: "us-central1",
|
|
28
|
+
* repositoryId: "my-repository",
|
|
31
29
|
* });
|
|
32
30
|
* ```
|
|
33
31
|
* ### Artifact Registry Repository Cmek
|
|
@@ -37,42 +35,11 @@ const utilities = require("../utilities");
|
|
|
37
35
|
* import * as gcp from "@pulumi/gcp";
|
|
38
36
|
*
|
|
39
37
|
* const my_repo = new gcp.artifactregistry.Repository("my-repo", {
|
|
40
|
-
* location: "us-central1",
|
|
41
|
-
* repositoryId: "my-repository",
|
|
42
38
|
* description: "example docker repository with cmek",
|
|
43
39
|
* format: "DOCKER",
|
|
44
40
|
* kmsKeyName: "kms-key",
|
|
45
|
-
* }, {
|
|
46
|
-
* provider: google_beta,
|
|
47
|
-
* });
|
|
48
|
-
* ```
|
|
49
|
-
* ### Artifact Registry Repository Iam
|
|
50
|
-
*
|
|
51
|
-
* ```typescript
|
|
52
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
53
|
-
* import * as gcp from "@pulumi/gcp";
|
|
54
|
-
*
|
|
55
|
-
* const my_repo = new gcp.artifactregistry.Repository("my-repo", {
|
|
56
41
|
* location: "us-central1",
|
|
57
42
|
* repositoryId: "my-repository",
|
|
58
|
-
* description: "example docker repository with iam",
|
|
59
|
-
* format: "DOCKER",
|
|
60
|
-
* }, {
|
|
61
|
-
* provider: google_beta,
|
|
62
|
-
* });
|
|
63
|
-
* const test_account = new gcp.serviceaccount.Account("test-account", {
|
|
64
|
-
* accountId: "my-account",
|
|
65
|
-
* displayName: "Test Service Account",
|
|
66
|
-
* }, {
|
|
67
|
-
* provider: google_beta,
|
|
68
|
-
* });
|
|
69
|
-
* const test_iam = new gcp.artifactregistry.RepositoryIamMember("test-iam", {
|
|
70
|
-
* location: my_repo.location,
|
|
71
|
-
* repository: my_repo.name,
|
|
72
|
-
* role: "roles/artifactregistry.reader",
|
|
73
|
-
* member: pulumi.interpolate`serviceAccount:${test_account.email}`,
|
|
74
|
-
* }, {
|
|
75
|
-
* provider: google_beta,
|
|
76
43
|
* });
|
|
77
44
|
* ```
|
|
78
45
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"repository.js","sourceRoot":"","sources":["../../artifactregistry/repository.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"repository.js","sourceRoot":"","sources":["../../artifactregistry/repository.ts"],"names":[],"mappings":"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"}
|
|
@@ -19,7 +19,7 @@ import { input as inputs, output as outputs } from "../types";
|
|
|
19
19
|
*
|
|
20
20
|
* const admin = gcp.organizations.getIAMPolicy({
|
|
21
21
|
* bindings: [{
|
|
22
|
-
* role: "roles/
|
|
22
|
+
* role: "roles/artifactregistry.reader",
|
|
23
23
|
* members: ["user:jane@example.com"],
|
|
24
24
|
* }],
|
|
25
25
|
* });
|
|
@@ -28,8 +28,6 @@ import { input as inputs, output as outputs } from "../types";
|
|
|
28
28
|
* location: google_artifact_registry_repository["my-repo"].location,
|
|
29
29
|
* repository: google_artifact_registry_repository["my-repo"].name,
|
|
30
30
|
* policyData: admin.then(admin => admin.policyData),
|
|
31
|
-
* }, {
|
|
32
|
-
* provider: google_beta,
|
|
33
31
|
* });
|
|
34
32
|
* ```
|
|
35
33
|
*
|
|
@@ -43,10 +41,8 @@ import { input as inputs, output as outputs } from "../types";
|
|
|
43
41
|
* project: google_artifact_registry_repository["my-repo"].project,
|
|
44
42
|
* location: google_artifact_registry_repository["my-repo"].location,
|
|
45
43
|
* repository: google_artifact_registry_repository["my-repo"].name,
|
|
46
|
-
* role: "roles/
|
|
44
|
+
* role: "roles/artifactregistry.reader",
|
|
47
45
|
* members: ["user:jane@example.com"],
|
|
48
|
-
* }, {
|
|
49
|
-
* provider: google_beta,
|
|
50
46
|
* });
|
|
51
47
|
* ```
|
|
52
48
|
*
|
|
@@ -60,10 +56,8 @@ import { input as inputs, output as outputs } from "../types";
|
|
|
60
56
|
* project: google_artifact_registry_repository["my-repo"].project,
|
|
61
57
|
* location: google_artifact_registry_repository["my-repo"].location,
|
|
62
58
|
* repository: google_artifact_registry_repository["my-repo"].name,
|
|
63
|
-
* role: "roles/
|
|
59
|
+
* role: "roles/artifactregistry.reader",
|
|
64
60
|
* member: "user:jane@example.com",
|
|
65
|
-
* }, {
|
|
66
|
-
* provider: google_beta,
|
|
67
61
|
* });
|
|
68
62
|
* ```
|
|
69
63
|
*
|
|
@@ -72,13 +66,13 @@ import { input as inputs, output as outputs } from "../types";
|
|
|
72
66
|
* For all import syntaxes, the "resource in question" can take any of the following forms* projects/{{project}}/locations/{{location}}/repositories/{{repository}} * {{project}}/{{location}}/{{repository}} * {{location}}/{{repository}} * {{repository}} Any variables not passed in the import command will be taken from the provider configuration. Artifact Registry repository IAM resources can be imported using the resource identifiers, role, and member. IAM member imports use space-delimited identifiersthe resource in question, the role, and the member identity, e.g.
|
|
73
67
|
*
|
|
74
68
|
* ```sh
|
|
75
|
-
* $ pulumi import gcp:artifactregistry/repositoryIamBinding:RepositoryIamBinding editor "projects/{{project}}/locations/{{location}}/repositories/{{repository}} roles/
|
|
69
|
+
* $ pulumi import gcp:artifactregistry/repositoryIamBinding:RepositoryIamBinding editor "projects/{{project}}/locations/{{location}}/repositories/{{repository}} roles/artifactregistry.reader user:jane@example.com"
|
|
76
70
|
* ```
|
|
77
71
|
*
|
|
78
72
|
* IAM binding imports use space-delimited identifiersthe resource in question and the role, e.g.
|
|
79
73
|
*
|
|
80
74
|
* ```sh
|
|
81
|
-
* $ pulumi import gcp:artifactregistry/repositoryIamBinding:RepositoryIamBinding editor "projects/{{project}}/locations/{{location}}/repositories/{{repository}} roles/
|
|
75
|
+
* $ pulumi import gcp:artifactregistry/repositoryIamBinding:RepositoryIamBinding editor "projects/{{project}}/locations/{{location}}/repositories/{{repository}} roles/artifactregistry.reader"
|
|
82
76
|
* ```
|
|
83
77
|
*
|
|
84
78
|
* IAM policy imports use the identifier of the resource in question, e.g.
|
|
@@ -24,7 +24,7 @@ const utilities = require("../utilities");
|
|
|
24
24
|
*
|
|
25
25
|
* const admin = gcp.organizations.getIAMPolicy({
|
|
26
26
|
* bindings: [{
|
|
27
|
-
* role: "roles/
|
|
27
|
+
* role: "roles/artifactregistry.reader",
|
|
28
28
|
* members: ["user:jane@example.com"],
|
|
29
29
|
* }],
|
|
30
30
|
* });
|
|
@@ -33,8 +33,6 @@ const utilities = require("../utilities");
|
|
|
33
33
|
* location: google_artifact_registry_repository["my-repo"].location,
|
|
34
34
|
* repository: google_artifact_registry_repository["my-repo"].name,
|
|
35
35
|
* policyData: admin.then(admin => admin.policyData),
|
|
36
|
-
* }, {
|
|
37
|
-
* provider: google_beta,
|
|
38
36
|
* });
|
|
39
37
|
* ```
|
|
40
38
|
*
|
|
@@ -48,10 +46,8 @@ const utilities = require("../utilities");
|
|
|
48
46
|
* project: google_artifact_registry_repository["my-repo"].project,
|
|
49
47
|
* location: google_artifact_registry_repository["my-repo"].location,
|
|
50
48
|
* repository: google_artifact_registry_repository["my-repo"].name,
|
|
51
|
-
* role: "roles/
|
|
49
|
+
* role: "roles/artifactregistry.reader",
|
|
52
50
|
* members: ["user:jane@example.com"],
|
|
53
|
-
* }, {
|
|
54
|
-
* provider: google_beta,
|
|
55
51
|
* });
|
|
56
52
|
* ```
|
|
57
53
|
*
|
|
@@ -65,10 +61,8 @@ const utilities = require("../utilities");
|
|
|
65
61
|
* project: google_artifact_registry_repository["my-repo"].project,
|
|
66
62
|
* location: google_artifact_registry_repository["my-repo"].location,
|
|
67
63
|
* repository: google_artifact_registry_repository["my-repo"].name,
|
|
68
|
-
* role: "roles/
|
|
64
|
+
* role: "roles/artifactregistry.reader",
|
|
69
65
|
* member: "user:jane@example.com",
|
|
70
|
-
* }, {
|
|
71
|
-
* provider: google_beta,
|
|
72
66
|
* });
|
|
73
67
|
* ```
|
|
74
68
|
*
|
|
@@ -77,13 +71,13 @@ const utilities = require("../utilities");
|
|
|
77
71
|
* For all import syntaxes, the "resource in question" can take any of the following forms* projects/{{project}}/locations/{{location}}/repositories/{{repository}} * {{project}}/{{location}}/{{repository}} * {{location}}/{{repository}} * {{repository}} Any variables not passed in the import command will be taken from the provider configuration. Artifact Registry repository IAM resources can be imported using the resource identifiers, role, and member. IAM member imports use space-delimited identifiersthe resource in question, the role, and the member identity, e.g.
|
|
78
72
|
*
|
|
79
73
|
* ```sh
|
|
80
|
-
* $ pulumi import gcp:artifactregistry/repositoryIamBinding:RepositoryIamBinding editor "projects/{{project}}/locations/{{location}}/repositories/{{repository}} roles/
|
|
74
|
+
* $ pulumi import gcp:artifactregistry/repositoryIamBinding:RepositoryIamBinding editor "projects/{{project}}/locations/{{location}}/repositories/{{repository}} roles/artifactregistry.reader user:jane@example.com"
|
|
81
75
|
* ```
|
|
82
76
|
*
|
|
83
77
|
* IAM binding imports use space-delimited identifiersthe resource in question and the role, e.g.
|
|
84
78
|
*
|
|
85
79
|
* ```sh
|
|
86
|
-
* $ pulumi import gcp:artifactregistry/repositoryIamBinding:RepositoryIamBinding editor "projects/{{project}}/locations/{{location}}/repositories/{{repository}} roles/
|
|
80
|
+
* $ pulumi import gcp:artifactregistry/repositoryIamBinding:RepositoryIamBinding editor "projects/{{project}}/locations/{{location}}/repositories/{{repository}} roles/artifactregistry.reader"
|
|
87
81
|
* ```
|
|
88
82
|
*
|
|
89
83
|
* IAM policy imports use the identifier of the resource in question, e.g.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"repositoryIamBinding.js","sourceRoot":"","sources":["../../artifactregistry/repositoryIamBinding.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"repositoryIamBinding.js","sourceRoot":"","sources":["../../artifactregistry/repositoryIamBinding.ts"],"names":[],"mappings":"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"}
|
|
@@ -19,7 +19,7 @@ import { input as inputs, output as outputs } from "../types";
|
|
|
19
19
|
*
|
|
20
20
|
* const admin = gcp.organizations.getIAMPolicy({
|
|
21
21
|
* bindings: [{
|
|
22
|
-
* role: "roles/
|
|
22
|
+
* role: "roles/artifactregistry.reader",
|
|
23
23
|
* members: ["user:jane@example.com"],
|
|
24
24
|
* }],
|
|
25
25
|
* });
|
|
@@ -28,8 +28,6 @@ import { input as inputs, output as outputs } from "../types";
|
|
|
28
28
|
* location: google_artifact_registry_repository["my-repo"].location,
|
|
29
29
|
* repository: google_artifact_registry_repository["my-repo"].name,
|
|
30
30
|
* policyData: admin.then(admin => admin.policyData),
|
|
31
|
-
* }, {
|
|
32
|
-
* provider: google_beta,
|
|
33
31
|
* });
|
|
34
32
|
* ```
|
|
35
33
|
*
|
|
@@ -43,10 +41,8 @@ import { input as inputs, output as outputs } from "../types";
|
|
|
43
41
|
* project: google_artifact_registry_repository["my-repo"].project,
|
|
44
42
|
* location: google_artifact_registry_repository["my-repo"].location,
|
|
45
43
|
* repository: google_artifact_registry_repository["my-repo"].name,
|
|
46
|
-
* role: "roles/
|
|
44
|
+
* role: "roles/artifactregistry.reader",
|
|
47
45
|
* members: ["user:jane@example.com"],
|
|
48
|
-
* }, {
|
|
49
|
-
* provider: google_beta,
|
|
50
46
|
* });
|
|
51
47
|
* ```
|
|
52
48
|
*
|
|
@@ -60,10 +56,8 @@ import { input as inputs, output as outputs } from "../types";
|
|
|
60
56
|
* project: google_artifact_registry_repository["my-repo"].project,
|
|
61
57
|
* location: google_artifact_registry_repository["my-repo"].location,
|
|
62
58
|
* repository: google_artifact_registry_repository["my-repo"].name,
|
|
63
|
-
* role: "roles/
|
|
59
|
+
* role: "roles/artifactregistry.reader",
|
|
64
60
|
* member: "user:jane@example.com",
|
|
65
|
-
* }, {
|
|
66
|
-
* provider: google_beta,
|
|
67
61
|
* });
|
|
68
62
|
* ```
|
|
69
63
|
*
|
|
@@ -72,13 +66,13 @@ import { input as inputs, output as outputs } from "../types";
|
|
|
72
66
|
* For all import syntaxes, the "resource in question" can take any of the following forms* projects/{{project}}/locations/{{location}}/repositories/{{repository}} * {{project}}/{{location}}/{{repository}} * {{location}}/{{repository}} * {{repository}} Any variables not passed in the import command will be taken from the provider configuration. Artifact Registry repository IAM resources can be imported using the resource identifiers, role, and member. IAM member imports use space-delimited identifiersthe resource in question, the role, and the member identity, e.g.
|
|
73
67
|
*
|
|
74
68
|
* ```sh
|
|
75
|
-
* $ pulumi import gcp:artifactregistry/repositoryIamMember:RepositoryIamMember editor "projects/{{project}}/locations/{{location}}/repositories/{{repository}} roles/
|
|
69
|
+
* $ pulumi import gcp:artifactregistry/repositoryIamMember:RepositoryIamMember editor "projects/{{project}}/locations/{{location}}/repositories/{{repository}} roles/artifactregistry.reader user:jane@example.com"
|
|
76
70
|
* ```
|
|
77
71
|
*
|
|
78
72
|
* IAM binding imports use space-delimited identifiersthe resource in question and the role, e.g.
|
|
79
73
|
*
|
|
80
74
|
* ```sh
|
|
81
|
-
* $ pulumi import gcp:artifactregistry/repositoryIamMember:RepositoryIamMember editor "projects/{{project}}/locations/{{location}}/repositories/{{repository}} roles/
|
|
75
|
+
* $ pulumi import gcp:artifactregistry/repositoryIamMember:RepositoryIamMember editor "projects/{{project}}/locations/{{location}}/repositories/{{repository}} roles/artifactregistry.reader"
|
|
82
76
|
* ```
|
|
83
77
|
*
|
|
84
78
|
* IAM policy imports use the identifier of the resource in question, e.g.
|
|
@@ -24,7 +24,7 @@ const utilities = require("../utilities");
|
|
|
24
24
|
*
|
|
25
25
|
* const admin = gcp.organizations.getIAMPolicy({
|
|
26
26
|
* bindings: [{
|
|
27
|
-
* role: "roles/
|
|
27
|
+
* role: "roles/artifactregistry.reader",
|
|
28
28
|
* members: ["user:jane@example.com"],
|
|
29
29
|
* }],
|
|
30
30
|
* });
|
|
@@ -33,8 +33,6 @@ const utilities = require("../utilities");
|
|
|
33
33
|
* location: google_artifact_registry_repository["my-repo"].location,
|
|
34
34
|
* repository: google_artifact_registry_repository["my-repo"].name,
|
|
35
35
|
* policyData: admin.then(admin => admin.policyData),
|
|
36
|
-
* }, {
|
|
37
|
-
* provider: google_beta,
|
|
38
36
|
* });
|
|
39
37
|
* ```
|
|
40
38
|
*
|
|
@@ -48,10 +46,8 @@ const utilities = require("../utilities");
|
|
|
48
46
|
* project: google_artifact_registry_repository["my-repo"].project,
|
|
49
47
|
* location: google_artifact_registry_repository["my-repo"].location,
|
|
50
48
|
* repository: google_artifact_registry_repository["my-repo"].name,
|
|
51
|
-
* role: "roles/
|
|
49
|
+
* role: "roles/artifactregistry.reader",
|
|
52
50
|
* members: ["user:jane@example.com"],
|
|
53
|
-
* }, {
|
|
54
|
-
* provider: google_beta,
|
|
55
51
|
* });
|
|
56
52
|
* ```
|
|
57
53
|
*
|
|
@@ -65,10 +61,8 @@ const utilities = require("../utilities");
|
|
|
65
61
|
* project: google_artifact_registry_repository["my-repo"].project,
|
|
66
62
|
* location: google_artifact_registry_repository["my-repo"].location,
|
|
67
63
|
* repository: google_artifact_registry_repository["my-repo"].name,
|
|
68
|
-
* role: "roles/
|
|
64
|
+
* role: "roles/artifactregistry.reader",
|
|
69
65
|
* member: "user:jane@example.com",
|
|
70
|
-
* }, {
|
|
71
|
-
* provider: google_beta,
|
|
72
66
|
* });
|
|
73
67
|
* ```
|
|
74
68
|
*
|
|
@@ -77,13 +71,13 @@ const utilities = require("../utilities");
|
|
|
77
71
|
* For all import syntaxes, the "resource in question" can take any of the following forms* projects/{{project}}/locations/{{location}}/repositories/{{repository}} * {{project}}/{{location}}/{{repository}} * {{location}}/{{repository}} * {{repository}} Any variables not passed in the import command will be taken from the provider configuration. Artifact Registry repository IAM resources can be imported using the resource identifiers, role, and member. IAM member imports use space-delimited identifiersthe resource in question, the role, and the member identity, e.g.
|
|
78
72
|
*
|
|
79
73
|
* ```sh
|
|
80
|
-
* $ pulumi import gcp:artifactregistry/repositoryIamMember:RepositoryIamMember editor "projects/{{project}}/locations/{{location}}/repositories/{{repository}} roles/
|
|
74
|
+
* $ pulumi import gcp:artifactregistry/repositoryIamMember:RepositoryIamMember editor "projects/{{project}}/locations/{{location}}/repositories/{{repository}} roles/artifactregistry.reader user:jane@example.com"
|
|
81
75
|
* ```
|
|
82
76
|
*
|
|
83
77
|
* IAM binding imports use space-delimited identifiersthe resource in question and the role, e.g.
|
|
84
78
|
*
|
|
85
79
|
* ```sh
|
|
86
|
-
* $ pulumi import gcp:artifactregistry/repositoryIamMember:RepositoryIamMember editor "projects/{{project}}/locations/{{location}}/repositories/{{repository}} roles/
|
|
80
|
+
* $ pulumi import gcp:artifactregistry/repositoryIamMember:RepositoryIamMember editor "projects/{{project}}/locations/{{location}}/repositories/{{repository}} roles/artifactregistry.reader"
|
|
87
81
|
* ```
|
|
88
82
|
*
|
|
89
83
|
* IAM policy imports use the identifier of the resource in question, e.g.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"repositoryIamMember.js","sourceRoot":"","sources":["../../artifactregistry/repositoryIamMember.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"repositoryIamMember.js","sourceRoot":"","sources":["../../artifactregistry/repositoryIamMember.ts"],"names":[],"mappings":"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"}
|
|
@@ -18,7 +18,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
18
18
|
*
|
|
19
19
|
* const admin = gcp.organizations.getIAMPolicy({
|
|
20
20
|
* bindings: [{
|
|
21
|
-
* role: "roles/
|
|
21
|
+
* role: "roles/artifactregistry.reader",
|
|
22
22
|
* members: ["user:jane@example.com"],
|
|
23
23
|
* }],
|
|
24
24
|
* });
|
|
@@ -27,8 +27,6 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
27
27
|
* location: google_artifact_registry_repository["my-repo"].location,
|
|
28
28
|
* repository: google_artifact_registry_repository["my-repo"].name,
|
|
29
29
|
* policyData: admin.then(admin => admin.policyData),
|
|
30
|
-
* }, {
|
|
31
|
-
* provider: google_beta,
|
|
32
30
|
* });
|
|
33
31
|
* ```
|
|
34
32
|
*
|
|
@@ -42,10 +40,8 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
42
40
|
* project: google_artifact_registry_repository["my-repo"].project,
|
|
43
41
|
* location: google_artifact_registry_repository["my-repo"].location,
|
|
44
42
|
* repository: google_artifact_registry_repository["my-repo"].name,
|
|
45
|
-
* role: "roles/
|
|
43
|
+
* role: "roles/artifactregistry.reader",
|
|
46
44
|
* members: ["user:jane@example.com"],
|
|
47
|
-
* }, {
|
|
48
|
-
* provider: google_beta,
|
|
49
45
|
* });
|
|
50
46
|
* ```
|
|
51
47
|
*
|
|
@@ -59,10 +55,8 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
59
55
|
* project: google_artifact_registry_repository["my-repo"].project,
|
|
60
56
|
* location: google_artifact_registry_repository["my-repo"].location,
|
|
61
57
|
* repository: google_artifact_registry_repository["my-repo"].name,
|
|
62
|
-
* role: "roles/
|
|
58
|
+
* role: "roles/artifactregistry.reader",
|
|
63
59
|
* member: "user:jane@example.com",
|
|
64
|
-
* }, {
|
|
65
|
-
* provider: google_beta,
|
|
66
60
|
* });
|
|
67
61
|
* ```
|
|
68
62
|
*
|
|
@@ -71,13 +65,13 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
71
65
|
* For all import syntaxes, the "resource in question" can take any of the following forms* projects/{{project}}/locations/{{location}}/repositories/{{repository}} * {{project}}/{{location}}/{{repository}} * {{location}}/{{repository}} * {{repository}} Any variables not passed in the import command will be taken from the provider configuration. Artifact Registry repository IAM resources can be imported using the resource identifiers, role, and member. IAM member imports use space-delimited identifiersthe resource in question, the role, and the member identity, e.g.
|
|
72
66
|
*
|
|
73
67
|
* ```sh
|
|
74
|
-
* $ pulumi import gcp:artifactregistry/repositoryIamPolicy:RepositoryIamPolicy editor "projects/{{project}}/locations/{{location}}/repositories/{{repository}} roles/
|
|
68
|
+
* $ pulumi import gcp:artifactregistry/repositoryIamPolicy:RepositoryIamPolicy editor "projects/{{project}}/locations/{{location}}/repositories/{{repository}} roles/artifactregistry.reader user:jane@example.com"
|
|
75
69
|
* ```
|
|
76
70
|
*
|
|
77
71
|
* IAM binding imports use space-delimited identifiersthe resource in question and the role, e.g.
|
|
78
72
|
*
|
|
79
73
|
* ```sh
|
|
80
|
-
* $ pulumi import gcp:artifactregistry/repositoryIamPolicy:RepositoryIamPolicy editor "projects/{{project}}/locations/{{location}}/repositories/{{repository}} roles/
|
|
74
|
+
* $ pulumi import gcp:artifactregistry/repositoryIamPolicy:RepositoryIamPolicy editor "projects/{{project}}/locations/{{location}}/repositories/{{repository}} roles/artifactregistry.reader"
|
|
81
75
|
* ```
|
|
82
76
|
*
|
|
83
77
|
* IAM policy imports use the identifier of the resource in question, e.g.
|
|
@@ -24,7 +24,7 @@ const utilities = require("../utilities");
|
|
|
24
24
|
*
|
|
25
25
|
* const admin = gcp.organizations.getIAMPolicy({
|
|
26
26
|
* bindings: [{
|
|
27
|
-
* role: "roles/
|
|
27
|
+
* role: "roles/artifactregistry.reader",
|
|
28
28
|
* members: ["user:jane@example.com"],
|
|
29
29
|
* }],
|
|
30
30
|
* });
|
|
@@ -33,8 +33,6 @@ const utilities = require("../utilities");
|
|
|
33
33
|
* location: google_artifact_registry_repository["my-repo"].location,
|
|
34
34
|
* repository: google_artifact_registry_repository["my-repo"].name,
|
|
35
35
|
* policyData: admin.then(admin => admin.policyData),
|
|
36
|
-
* }, {
|
|
37
|
-
* provider: google_beta,
|
|
38
36
|
* });
|
|
39
37
|
* ```
|
|
40
38
|
*
|
|
@@ -48,10 +46,8 @@ const utilities = require("../utilities");
|
|
|
48
46
|
* project: google_artifact_registry_repository["my-repo"].project,
|
|
49
47
|
* location: google_artifact_registry_repository["my-repo"].location,
|
|
50
48
|
* repository: google_artifact_registry_repository["my-repo"].name,
|
|
51
|
-
* role: "roles/
|
|
49
|
+
* role: "roles/artifactregistry.reader",
|
|
52
50
|
* members: ["user:jane@example.com"],
|
|
53
|
-
* }, {
|
|
54
|
-
* provider: google_beta,
|
|
55
51
|
* });
|
|
56
52
|
* ```
|
|
57
53
|
*
|
|
@@ -65,10 +61,8 @@ const utilities = require("../utilities");
|
|
|
65
61
|
* project: google_artifact_registry_repository["my-repo"].project,
|
|
66
62
|
* location: google_artifact_registry_repository["my-repo"].location,
|
|
67
63
|
* repository: google_artifact_registry_repository["my-repo"].name,
|
|
68
|
-
* role: "roles/
|
|
64
|
+
* role: "roles/artifactregistry.reader",
|
|
69
65
|
* member: "user:jane@example.com",
|
|
70
|
-
* }, {
|
|
71
|
-
* provider: google_beta,
|
|
72
66
|
* });
|
|
73
67
|
* ```
|
|
74
68
|
*
|
|
@@ -77,13 +71,13 @@ const utilities = require("../utilities");
|
|
|
77
71
|
* For all import syntaxes, the "resource in question" can take any of the following forms* projects/{{project}}/locations/{{location}}/repositories/{{repository}} * {{project}}/{{location}}/{{repository}} * {{location}}/{{repository}} * {{repository}} Any variables not passed in the import command will be taken from the provider configuration. Artifact Registry repository IAM resources can be imported using the resource identifiers, role, and member. IAM member imports use space-delimited identifiersthe resource in question, the role, and the member identity, e.g.
|
|
78
72
|
*
|
|
79
73
|
* ```sh
|
|
80
|
-
* $ pulumi import gcp:artifactregistry/repositoryIamPolicy:RepositoryIamPolicy editor "projects/{{project}}/locations/{{location}}/repositories/{{repository}} roles/
|
|
74
|
+
* $ pulumi import gcp:artifactregistry/repositoryIamPolicy:RepositoryIamPolicy editor "projects/{{project}}/locations/{{location}}/repositories/{{repository}} roles/artifactregistry.reader user:jane@example.com"
|
|
81
75
|
* ```
|
|
82
76
|
*
|
|
83
77
|
* IAM binding imports use space-delimited identifiersthe resource in question and the role, e.g.
|
|
84
78
|
*
|
|
85
79
|
* ```sh
|
|
86
|
-
* $ pulumi import gcp:artifactregistry/repositoryIamPolicy:RepositoryIamPolicy editor "projects/{{project}}/locations/{{location}}/repositories/{{repository}} roles/
|
|
80
|
+
* $ pulumi import gcp:artifactregistry/repositoryIamPolicy:RepositoryIamPolicy editor "projects/{{project}}/locations/{{location}}/repositories/{{repository}} roles/artifactregistry.reader"
|
|
87
81
|
* ```
|
|
88
82
|
*
|
|
89
83
|
* IAM policy imports use the identifier of the resource in question, e.g.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"repositoryIamPolicy.js","sourceRoot":"","sources":["../../artifactregistry/repositoryIamPolicy.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"repositoryIamPolicy.js","sourceRoot":"","sources":["../../artifactregistry/repositoryIamPolicy.ts"],"names":[],"mappings":"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"}
|
|
@@ -109,9 +109,11 @@ export declare class DataTransferConfig extends pulumi.CustomResource {
|
|
|
109
109
|
*/
|
|
110
110
|
readonly notificationPubsubTopic: pulumi.Output<string | undefined>;
|
|
111
111
|
/**
|
|
112
|
-
* Parameters specific to each data source. For more information see the bq tab in the 'Setting up a data transfer'
|
|
113
|
-
*
|
|
114
|
-
* https://cloud.google.com/bigquery-transfer/docs/cloud-storage-transfer#bq
|
|
112
|
+
* Parameters specific to each data source. For more information see the bq tab in the 'Setting up a data transfer' section
|
|
113
|
+
* for each data source. For example the parameters for Cloud Storage transfers are listed here:
|
|
114
|
+
* https://cloud.google.com/bigquery-transfer/docs/cloud-storage-transfer#bq **NOTE** : If you are attempting to update a
|
|
115
|
+
* parameter that cannot be updated (due to api limitations) [please force recreation of the
|
|
116
|
+
* resource](https://www.terraform.io/cli/state/taint#forcing-re-creation-of-resources).
|
|
115
117
|
*/
|
|
116
118
|
readonly params: pulumi.Output<{
|
|
117
119
|
[key: string]: string;
|
|
@@ -213,9 +215,11 @@ export interface DataTransferConfigState {
|
|
|
213
215
|
*/
|
|
214
216
|
notificationPubsubTopic?: pulumi.Input<string>;
|
|
215
217
|
/**
|
|
216
|
-
* Parameters specific to each data source. For more information see the bq tab in the 'Setting up a data transfer'
|
|
217
|
-
*
|
|
218
|
-
* https://cloud.google.com/bigquery-transfer/docs/cloud-storage-transfer#bq
|
|
218
|
+
* Parameters specific to each data source. For more information see the bq tab in the 'Setting up a data transfer' section
|
|
219
|
+
* for each data source. For example the parameters for Cloud Storage transfers are listed here:
|
|
220
|
+
* https://cloud.google.com/bigquery-transfer/docs/cloud-storage-transfer#bq **NOTE** : If you are attempting to update a
|
|
221
|
+
* parameter that cannot be updated (due to api limitations) [please force recreation of the
|
|
222
|
+
* resource](https://www.terraform.io/cli/state/taint#forcing-re-creation-of-resources).
|
|
219
223
|
*/
|
|
220
224
|
params?: pulumi.Input<{
|
|
221
225
|
[key: string]: pulumi.Input<string>;
|
|
@@ -303,9 +307,11 @@ export interface DataTransferConfigArgs {
|
|
|
303
307
|
*/
|
|
304
308
|
notificationPubsubTopic?: pulumi.Input<string>;
|
|
305
309
|
/**
|
|
306
|
-
* Parameters specific to each data source. For more information see the bq tab in the 'Setting up a data transfer'
|
|
307
|
-
*
|
|
308
|
-
* https://cloud.google.com/bigquery-transfer/docs/cloud-storage-transfer#bq
|
|
310
|
+
* Parameters specific to each data source. For more information see the bq tab in the 'Setting up a data transfer' section
|
|
311
|
+
* for each data source. For example the parameters for Cloud Storage transfers are listed here:
|
|
312
|
+
* https://cloud.google.com/bigquery-transfer/docs/cloud-storage-transfer#bq **NOTE** : If you are attempting to update a
|
|
313
|
+
* parameter that cannot be updated (due to api limitations) [please force recreation of the
|
|
314
|
+
* resource](https://www.terraform.io/cli/state/taint#forcing-re-creation-of-resources).
|
|
309
315
|
*/
|
|
310
316
|
params: pulumi.Input<{
|
|
311
317
|
[key: string]: pulumi.Input<string>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dataTransferConfig.js","sourceRoot":"","sources":["../../bigquery/dataTransferConfig.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6CG;AACH,MAAa,kBAAmB,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"dataTransferConfig.js","sourceRoot":"","sources":["../../bigquery/dataTransferConfig.ts"],"names":[],"mappings":"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"}
|
package/clouddeploy/target.d.ts
CHANGED
|
@@ -87,7 +87,7 @@ export declare class Target extends pulumi.CustomResource {
|
|
|
87
87
|
/**
|
|
88
88
|
* Configurations for all execution that relates to this `Target`. Each `ExecutionEnvironmentUsage` value may only be used in a single configuration; using the same value multiple times is an error. When one or more configurations are specified, they must include the `RENDER` and `DEPLOY` `ExecutionEnvironmentUsage` values. When no configurations are specified, execution will use the default specified in `DefaultPool`.
|
|
89
89
|
*/
|
|
90
|
-
readonly executionConfigs: pulumi.Output<outputs.clouddeploy.TargetExecutionConfig[]
|
|
90
|
+
readonly executionConfigs: pulumi.Output<outputs.clouddeploy.TargetExecutionConfig[]>;
|
|
91
91
|
/**
|
|
92
92
|
* Information specifying a GKE Cluster.
|
|
93
93
|
*/
|