@pulumi/gcp 7.9.0-alpha.1707891532 → 7.9.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.
Files changed (41) hide show
  1. package/clouddeploy/deliveryPipelineIamBinding.d.ts +58 -0
  2. package/clouddeploy/deliveryPipelineIamBinding.js +67 -0
  3. package/clouddeploy/deliveryPipelineIamBinding.js.map +1 -0
  4. package/clouddeploy/deliveryPipelineIamMember.d.ts +58 -0
  5. package/clouddeploy/deliveryPipelineIamMember.js +67 -0
  6. package/clouddeploy/deliveryPipelineIamMember.js.map +1 -0
  7. package/clouddeploy/deliveryPipelineIamPolicy.d.ts +50 -0
  8. package/clouddeploy/deliveryPipelineIamPolicy.js +60 -0
  9. package/clouddeploy/deliveryPipelineIamPolicy.js.map +1 -0
  10. package/clouddeploy/getDeliveryPipelineIamPolicy.d.ts +86 -0
  11. package/clouddeploy/getDeliveryPipelineIamPolicy.js +53 -0
  12. package/clouddeploy/getDeliveryPipelineIamPolicy.js.map +1 -0
  13. package/clouddeploy/index.d.ts +12 -0
  14. package/clouddeploy/index.js +19 -1
  15. package/clouddeploy/index.js.map +1 -1
  16. package/compute/index.d.ts +3 -0
  17. package/compute/index.js +8 -3
  18. package/compute/index.js.map +1 -1
  19. package/compute/instanceGroupMembership.d.ts +172 -0
  20. package/compute/instanceGroupMembership.js +137 -0
  21. package/compute/instanceGroupMembership.js.map +1 -0
  22. package/config/vars.d.ts +3 -0
  23. package/config/vars.js +18 -0
  24. package/config/vars.js.map +1 -1
  25. package/firebase/appCheckServiceConfig.d.ts +243 -0
  26. package/firebase/appCheckServiceConfig.js +149 -0
  27. package/firebase/appCheckServiceConfig.js.map +1 -0
  28. package/firebase/index.d.ts +3 -0
  29. package/firebase/index.js +6 -1
  30. package/firebase/index.js.map +1 -1
  31. package/package.json +1 -1
  32. package/provider.d.ts +5 -0
  33. package/provider.js +3 -0
  34. package/provider.js.map +1 -1
  35. package/securityposture/postureDeployment.d.ts +20 -18
  36. package/securityposture/postureDeployment.js.map +1 -1
  37. package/types/input.d.ts +45 -13
  38. package/types/output.d.ts +62 -12
  39. package/workbench/instance.d.ts +2 -4
  40. package/workbench/instance.js +2 -4
  41. package/workbench/instance.js.map +1 -1
@@ -0,0 +1,58 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "../types/input";
3
+ import * as outputs from "../types/output";
4
+ export declare class DeliveryPipelineIamBinding extends pulumi.CustomResource {
5
+ /**
6
+ * Get an existing DeliveryPipelineIamBinding resource's state with the given name, ID, and optional extra
7
+ * properties used to qualify the lookup.
8
+ *
9
+ * @param name The _unique_ name of the resulting resource.
10
+ * @param id The _unique_ provider ID of the resource to lookup.
11
+ * @param state Any extra arguments used during the lookup.
12
+ * @param opts Optional settings to control the behavior of the CustomResource.
13
+ */
14
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: DeliveryPipelineIamBindingState, opts?: pulumi.CustomResourceOptions): DeliveryPipelineIamBinding;
15
+ /**
16
+ * Returns true if the given object is an instance of DeliveryPipelineIamBinding. This is designed to work even
17
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
18
+ */
19
+ static isInstance(obj: any): obj is DeliveryPipelineIamBinding;
20
+ readonly condition: pulumi.Output<outputs.clouddeploy.DeliveryPipelineIamBindingCondition | undefined>;
21
+ readonly etag: pulumi.Output<string>;
22
+ readonly location: pulumi.Output<string>;
23
+ readonly members: pulumi.Output<string[]>;
24
+ readonly name: pulumi.Output<string>;
25
+ readonly project: pulumi.Output<string>;
26
+ readonly role: pulumi.Output<string>;
27
+ /**
28
+ * Create a DeliveryPipelineIamBinding resource with the given unique name, arguments, and options.
29
+ *
30
+ * @param name The _unique_ name of the resource.
31
+ * @param args The arguments to use to populate this resource's properties.
32
+ * @param opts A bag of options that control this resource's behavior.
33
+ */
34
+ constructor(name: string, args: DeliveryPipelineIamBindingArgs, opts?: pulumi.CustomResourceOptions);
35
+ }
36
+ /**
37
+ * Input properties used for looking up and filtering DeliveryPipelineIamBinding resources.
38
+ */
39
+ export interface DeliveryPipelineIamBindingState {
40
+ condition?: pulumi.Input<inputs.clouddeploy.DeliveryPipelineIamBindingCondition>;
41
+ etag?: pulumi.Input<string>;
42
+ location?: pulumi.Input<string>;
43
+ members?: pulumi.Input<pulumi.Input<string>[]>;
44
+ name?: pulumi.Input<string>;
45
+ project?: pulumi.Input<string>;
46
+ role?: pulumi.Input<string>;
47
+ }
48
+ /**
49
+ * The set of arguments for constructing a DeliveryPipelineIamBinding resource.
50
+ */
51
+ export interface DeliveryPipelineIamBindingArgs {
52
+ condition?: pulumi.Input<inputs.clouddeploy.DeliveryPipelineIamBindingCondition>;
53
+ location?: pulumi.Input<string>;
54
+ members: pulumi.Input<pulumi.Input<string>[]>;
55
+ name?: pulumi.Input<string>;
56
+ project?: pulumi.Input<string>;
57
+ role: pulumi.Input<string>;
58
+ }
@@ -0,0 +1,67 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.DeliveryPipelineIamBinding = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ class DeliveryPipelineIamBinding extends pulumi.CustomResource {
9
+ /**
10
+ * Get an existing DeliveryPipelineIamBinding resource's state with the given name, ID, and optional extra
11
+ * properties used to qualify the lookup.
12
+ *
13
+ * @param name The _unique_ name of the resulting resource.
14
+ * @param id The _unique_ provider ID of the resource to lookup.
15
+ * @param state Any extra arguments used during the lookup.
16
+ * @param opts Optional settings to control the behavior of the CustomResource.
17
+ */
18
+ static get(name, id, state, opts) {
19
+ return new DeliveryPipelineIamBinding(name, state, Object.assign(Object.assign({}, opts), { id: id }));
20
+ }
21
+ /**
22
+ * Returns true if the given object is an instance of DeliveryPipelineIamBinding. This is designed to work even
23
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
24
+ */
25
+ static isInstance(obj) {
26
+ if (obj === undefined || obj === null) {
27
+ return false;
28
+ }
29
+ return obj['__pulumiType'] === DeliveryPipelineIamBinding.__pulumiType;
30
+ }
31
+ constructor(name, argsOrState, opts) {
32
+ let resourceInputs = {};
33
+ opts = opts || {};
34
+ if (opts.id) {
35
+ const state = argsOrState;
36
+ resourceInputs["condition"] = state ? state.condition : undefined;
37
+ resourceInputs["etag"] = state ? state.etag : undefined;
38
+ resourceInputs["location"] = state ? state.location : undefined;
39
+ resourceInputs["members"] = state ? state.members : undefined;
40
+ resourceInputs["name"] = state ? state.name : undefined;
41
+ resourceInputs["project"] = state ? state.project : undefined;
42
+ resourceInputs["role"] = state ? state.role : undefined;
43
+ }
44
+ else {
45
+ const args = argsOrState;
46
+ if ((!args || args.members === undefined) && !opts.urn) {
47
+ throw new Error("Missing required property 'members'");
48
+ }
49
+ if ((!args || args.role === undefined) && !opts.urn) {
50
+ throw new Error("Missing required property 'role'");
51
+ }
52
+ resourceInputs["condition"] = args ? args.condition : undefined;
53
+ resourceInputs["location"] = args ? args.location : undefined;
54
+ resourceInputs["members"] = args ? args.members : undefined;
55
+ resourceInputs["name"] = args ? args.name : undefined;
56
+ resourceInputs["project"] = args ? args.project : undefined;
57
+ resourceInputs["role"] = args ? args.role : undefined;
58
+ resourceInputs["etag"] = undefined /*out*/;
59
+ }
60
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
61
+ super(DeliveryPipelineIamBinding.__pulumiType, name, resourceInputs, opts);
62
+ }
63
+ }
64
+ exports.DeliveryPipelineIamBinding = DeliveryPipelineIamBinding;
65
+ /** @internal */
66
+ DeliveryPipelineIamBinding.__pulumiType = 'gcp:clouddeploy/deliveryPipelineIamBinding:DeliveryPipelineIamBinding';
67
+ //# sourceMappingURL=deliveryPipelineIamBinding.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"deliveryPipelineIamBinding.js","sourceRoot":"","sources":["../../clouddeploy/deliveryPipelineIamBinding.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,58 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "../types/input";
3
+ import * as outputs from "../types/output";
4
+ export declare class DeliveryPipelineIamMember extends pulumi.CustomResource {
5
+ /**
6
+ * Get an existing DeliveryPipelineIamMember resource's state with the given name, ID, and optional extra
7
+ * properties used to qualify the lookup.
8
+ *
9
+ * @param name The _unique_ name of the resulting resource.
10
+ * @param id The _unique_ provider ID of the resource to lookup.
11
+ * @param state Any extra arguments used during the lookup.
12
+ * @param opts Optional settings to control the behavior of the CustomResource.
13
+ */
14
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: DeliveryPipelineIamMemberState, opts?: pulumi.CustomResourceOptions): DeliveryPipelineIamMember;
15
+ /**
16
+ * Returns true if the given object is an instance of DeliveryPipelineIamMember. This is designed to work even
17
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
18
+ */
19
+ static isInstance(obj: any): obj is DeliveryPipelineIamMember;
20
+ readonly condition: pulumi.Output<outputs.clouddeploy.DeliveryPipelineIamMemberCondition | undefined>;
21
+ readonly etag: pulumi.Output<string>;
22
+ readonly location: pulumi.Output<string>;
23
+ readonly member: pulumi.Output<string>;
24
+ readonly name: pulumi.Output<string>;
25
+ readonly project: pulumi.Output<string>;
26
+ readonly role: pulumi.Output<string>;
27
+ /**
28
+ * Create a DeliveryPipelineIamMember resource with the given unique name, arguments, and options.
29
+ *
30
+ * @param name The _unique_ name of the resource.
31
+ * @param args The arguments to use to populate this resource's properties.
32
+ * @param opts A bag of options that control this resource's behavior.
33
+ */
34
+ constructor(name: string, args: DeliveryPipelineIamMemberArgs, opts?: pulumi.CustomResourceOptions);
35
+ }
36
+ /**
37
+ * Input properties used for looking up and filtering DeliveryPipelineIamMember resources.
38
+ */
39
+ export interface DeliveryPipelineIamMemberState {
40
+ condition?: pulumi.Input<inputs.clouddeploy.DeliveryPipelineIamMemberCondition>;
41
+ etag?: pulumi.Input<string>;
42
+ location?: pulumi.Input<string>;
43
+ member?: pulumi.Input<string>;
44
+ name?: pulumi.Input<string>;
45
+ project?: pulumi.Input<string>;
46
+ role?: pulumi.Input<string>;
47
+ }
48
+ /**
49
+ * The set of arguments for constructing a DeliveryPipelineIamMember resource.
50
+ */
51
+ export interface DeliveryPipelineIamMemberArgs {
52
+ condition?: pulumi.Input<inputs.clouddeploy.DeliveryPipelineIamMemberCondition>;
53
+ location?: pulumi.Input<string>;
54
+ member: pulumi.Input<string>;
55
+ name?: pulumi.Input<string>;
56
+ project?: pulumi.Input<string>;
57
+ role: pulumi.Input<string>;
58
+ }
@@ -0,0 +1,67 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.DeliveryPipelineIamMember = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ class DeliveryPipelineIamMember extends pulumi.CustomResource {
9
+ /**
10
+ * Get an existing DeliveryPipelineIamMember resource's state with the given name, ID, and optional extra
11
+ * properties used to qualify the lookup.
12
+ *
13
+ * @param name The _unique_ name of the resulting resource.
14
+ * @param id The _unique_ provider ID of the resource to lookup.
15
+ * @param state Any extra arguments used during the lookup.
16
+ * @param opts Optional settings to control the behavior of the CustomResource.
17
+ */
18
+ static get(name, id, state, opts) {
19
+ return new DeliveryPipelineIamMember(name, state, Object.assign(Object.assign({}, opts), { id: id }));
20
+ }
21
+ /**
22
+ * Returns true if the given object is an instance of DeliveryPipelineIamMember. This is designed to work even
23
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
24
+ */
25
+ static isInstance(obj) {
26
+ if (obj === undefined || obj === null) {
27
+ return false;
28
+ }
29
+ return obj['__pulumiType'] === DeliveryPipelineIamMember.__pulumiType;
30
+ }
31
+ constructor(name, argsOrState, opts) {
32
+ let resourceInputs = {};
33
+ opts = opts || {};
34
+ if (opts.id) {
35
+ const state = argsOrState;
36
+ resourceInputs["condition"] = state ? state.condition : undefined;
37
+ resourceInputs["etag"] = state ? state.etag : undefined;
38
+ resourceInputs["location"] = state ? state.location : undefined;
39
+ resourceInputs["member"] = state ? state.member : undefined;
40
+ resourceInputs["name"] = state ? state.name : undefined;
41
+ resourceInputs["project"] = state ? state.project : undefined;
42
+ resourceInputs["role"] = state ? state.role : undefined;
43
+ }
44
+ else {
45
+ const args = argsOrState;
46
+ if ((!args || args.member === undefined) && !opts.urn) {
47
+ throw new Error("Missing required property 'member'");
48
+ }
49
+ if ((!args || args.role === undefined) && !opts.urn) {
50
+ throw new Error("Missing required property 'role'");
51
+ }
52
+ resourceInputs["condition"] = args ? args.condition : undefined;
53
+ resourceInputs["location"] = args ? args.location : undefined;
54
+ resourceInputs["member"] = args ? args.member : undefined;
55
+ resourceInputs["name"] = args ? args.name : undefined;
56
+ resourceInputs["project"] = args ? args.project : undefined;
57
+ resourceInputs["role"] = args ? args.role : undefined;
58
+ resourceInputs["etag"] = undefined /*out*/;
59
+ }
60
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
61
+ super(DeliveryPipelineIamMember.__pulumiType, name, resourceInputs, opts);
62
+ }
63
+ }
64
+ exports.DeliveryPipelineIamMember = DeliveryPipelineIamMember;
65
+ /** @internal */
66
+ DeliveryPipelineIamMember.__pulumiType = 'gcp:clouddeploy/deliveryPipelineIamMember:DeliveryPipelineIamMember';
67
+ //# sourceMappingURL=deliveryPipelineIamMember.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"deliveryPipelineIamMember.js","sourceRoot":"","sources":["../../clouddeploy/deliveryPipelineIamMember.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,50 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ export declare class DeliveryPipelineIamPolicy extends pulumi.CustomResource {
3
+ /**
4
+ * Get an existing DeliveryPipelineIamPolicy resource's state with the given name, ID, and optional extra
5
+ * properties used to qualify the lookup.
6
+ *
7
+ * @param name The _unique_ name of the resulting resource.
8
+ * @param id The _unique_ provider ID of the resource to lookup.
9
+ * @param state Any extra arguments used during the lookup.
10
+ * @param opts Optional settings to control the behavior of the CustomResource.
11
+ */
12
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: DeliveryPipelineIamPolicyState, opts?: pulumi.CustomResourceOptions): DeliveryPipelineIamPolicy;
13
+ /**
14
+ * Returns true if the given object is an instance of DeliveryPipelineIamPolicy. This is designed to work even
15
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
16
+ */
17
+ static isInstance(obj: any): obj is DeliveryPipelineIamPolicy;
18
+ readonly etag: pulumi.Output<string>;
19
+ readonly location: pulumi.Output<string>;
20
+ readonly name: pulumi.Output<string>;
21
+ readonly policyData: pulumi.Output<string>;
22
+ readonly project: pulumi.Output<string>;
23
+ /**
24
+ * Create a DeliveryPipelineIamPolicy resource with the given unique name, arguments, and options.
25
+ *
26
+ * @param name The _unique_ name of the resource.
27
+ * @param args The arguments to use to populate this resource's properties.
28
+ * @param opts A bag of options that control this resource's behavior.
29
+ */
30
+ constructor(name: string, args: DeliveryPipelineIamPolicyArgs, opts?: pulumi.CustomResourceOptions);
31
+ }
32
+ /**
33
+ * Input properties used for looking up and filtering DeliveryPipelineIamPolicy resources.
34
+ */
35
+ export interface DeliveryPipelineIamPolicyState {
36
+ etag?: pulumi.Input<string>;
37
+ location?: pulumi.Input<string>;
38
+ name?: pulumi.Input<string>;
39
+ policyData?: pulumi.Input<string>;
40
+ project?: pulumi.Input<string>;
41
+ }
42
+ /**
43
+ * The set of arguments for constructing a DeliveryPipelineIamPolicy resource.
44
+ */
45
+ export interface DeliveryPipelineIamPolicyArgs {
46
+ location?: pulumi.Input<string>;
47
+ name?: pulumi.Input<string>;
48
+ policyData: pulumi.Input<string>;
49
+ project?: pulumi.Input<string>;
50
+ }
@@ -0,0 +1,60 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.DeliveryPipelineIamPolicy = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ class DeliveryPipelineIamPolicy extends pulumi.CustomResource {
9
+ /**
10
+ * Get an existing DeliveryPipelineIamPolicy resource's state with the given name, ID, and optional extra
11
+ * properties used to qualify the lookup.
12
+ *
13
+ * @param name The _unique_ name of the resulting resource.
14
+ * @param id The _unique_ provider ID of the resource to lookup.
15
+ * @param state Any extra arguments used during the lookup.
16
+ * @param opts Optional settings to control the behavior of the CustomResource.
17
+ */
18
+ static get(name, id, state, opts) {
19
+ return new DeliveryPipelineIamPolicy(name, state, Object.assign(Object.assign({}, opts), { id: id }));
20
+ }
21
+ /**
22
+ * Returns true if the given object is an instance of DeliveryPipelineIamPolicy. This is designed to work even
23
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
24
+ */
25
+ static isInstance(obj) {
26
+ if (obj === undefined || obj === null) {
27
+ return false;
28
+ }
29
+ return obj['__pulumiType'] === DeliveryPipelineIamPolicy.__pulumiType;
30
+ }
31
+ constructor(name, argsOrState, opts) {
32
+ let resourceInputs = {};
33
+ opts = opts || {};
34
+ if (opts.id) {
35
+ const state = argsOrState;
36
+ resourceInputs["etag"] = state ? state.etag : undefined;
37
+ resourceInputs["location"] = state ? state.location : undefined;
38
+ resourceInputs["name"] = state ? state.name : undefined;
39
+ resourceInputs["policyData"] = state ? state.policyData : undefined;
40
+ resourceInputs["project"] = state ? state.project : undefined;
41
+ }
42
+ else {
43
+ const args = argsOrState;
44
+ if ((!args || args.policyData === undefined) && !opts.urn) {
45
+ throw new Error("Missing required property 'policyData'");
46
+ }
47
+ resourceInputs["location"] = args ? args.location : undefined;
48
+ resourceInputs["name"] = args ? args.name : undefined;
49
+ resourceInputs["policyData"] = args ? args.policyData : undefined;
50
+ resourceInputs["project"] = args ? args.project : undefined;
51
+ resourceInputs["etag"] = undefined /*out*/;
52
+ }
53
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
54
+ super(DeliveryPipelineIamPolicy.__pulumiType, name, resourceInputs, opts);
55
+ }
56
+ }
57
+ exports.DeliveryPipelineIamPolicy = DeliveryPipelineIamPolicy;
58
+ /** @internal */
59
+ DeliveryPipelineIamPolicy.__pulumiType = 'gcp:clouddeploy/deliveryPipelineIamPolicy:DeliveryPipelineIamPolicy';
60
+ //# sourceMappingURL=deliveryPipelineIamPolicy.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"deliveryPipelineIamPolicy.js","sourceRoot":"","sources":["../../clouddeploy/deliveryPipelineIamPolicy.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C,MAAa,yBAA0B,SAAQ,MAAM,CAAC,cAAc;IAChE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAsC,EAAE,IAAmC;QACpI,OAAO,IAAI,yBAAyB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAChF,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,yBAAyB,CAAC,YAAY,CAAC;IAC1E,CAAC;IAgBD,YAAY,IAAY,EAAE,WAA4E,EAAE,IAAmC;QACvI,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAyD,CAAC;YACxE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;SACjE;aAAM;YACH,MAAM,IAAI,GAAG,WAAwD,CAAC;YACtE,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,UAAU,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvD,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;YACD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC9C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,yBAAyB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC9E,CAAC;;AAjEL,8DAkEC;AApDG,gBAAgB;AACO,sCAAY,GAAG,qEAAqE,CAAC"}
@@ -0,0 +1,86 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * Retrieves the current IAM policy data for deliverypipeline
4
+ *
5
+ * ## example
6
+ *
7
+ * ```typescript
8
+ * import * as pulumi from "@pulumi/pulumi";
9
+ * import * as gcp from "@pulumi/gcp";
10
+ *
11
+ * const policy = gcp.clouddeploy.getDeliveryPipelineIamPolicy({
12
+ * project: google_clouddeploy_delivery_pipeline["default"].project,
13
+ * location: google_clouddeploy_delivery_pipeline["default"].location,
14
+ * name: google_clouddeploy_delivery_pipeline["default"].name,
15
+ * });
16
+ * ```
17
+ */
18
+ export declare function getDeliveryPipelineIamPolicy(args: GetDeliveryPipelineIamPolicyArgs, opts?: pulumi.InvokeOptions): Promise<GetDeliveryPipelineIamPolicyResult>;
19
+ /**
20
+ * A collection of arguments for invoking getDeliveryPipelineIamPolicy.
21
+ */
22
+ export interface GetDeliveryPipelineIamPolicyArgs {
23
+ location?: string;
24
+ /**
25
+ * Used to find the parent resource to bind the IAM policy to
26
+ */
27
+ name: string;
28
+ /**
29
+ * The ID of the project in which the resource belongs.
30
+ * If it is not provided, the project will be parsed from the identifier of the parent resource. If no project is provided in the parent identifier and no project is specified, the provider project is used.
31
+ */
32
+ project?: string;
33
+ }
34
+ /**
35
+ * A collection of values returned by getDeliveryPipelineIamPolicy.
36
+ */
37
+ export interface GetDeliveryPipelineIamPolicyResult {
38
+ /**
39
+ * (Computed) The etag of the IAM policy.
40
+ */
41
+ readonly etag: string;
42
+ /**
43
+ * The provider-assigned unique ID for this managed resource.
44
+ */
45
+ readonly id: string;
46
+ readonly location: string;
47
+ readonly name: string;
48
+ /**
49
+ * (Required only by `gcp.clouddeploy.DeliveryPipelineIamPolicy`) The policy data generated by
50
+ * a `gcp.organizations.getIAMPolicy` data source.
51
+ */
52
+ readonly policyData: string;
53
+ readonly project: string;
54
+ }
55
+ /**
56
+ * Retrieves the current IAM policy data for deliverypipeline
57
+ *
58
+ * ## example
59
+ *
60
+ * ```typescript
61
+ * import * as pulumi from "@pulumi/pulumi";
62
+ * import * as gcp from "@pulumi/gcp";
63
+ *
64
+ * const policy = gcp.clouddeploy.getDeliveryPipelineIamPolicy({
65
+ * project: google_clouddeploy_delivery_pipeline["default"].project,
66
+ * location: google_clouddeploy_delivery_pipeline["default"].location,
67
+ * name: google_clouddeploy_delivery_pipeline["default"].name,
68
+ * });
69
+ * ```
70
+ */
71
+ export declare function getDeliveryPipelineIamPolicyOutput(args: GetDeliveryPipelineIamPolicyOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetDeliveryPipelineIamPolicyResult>;
72
+ /**
73
+ * A collection of arguments for invoking getDeliveryPipelineIamPolicy.
74
+ */
75
+ export interface GetDeliveryPipelineIamPolicyOutputArgs {
76
+ location?: pulumi.Input<string>;
77
+ /**
78
+ * Used to find the parent resource to bind the IAM policy to
79
+ */
80
+ name: pulumi.Input<string>;
81
+ /**
82
+ * The ID of the project in which the resource belongs.
83
+ * If it is not provided, the project will be parsed from the identifier of the parent resource. If no project is provided in the parent identifier and no project is specified, the provider project is used.
84
+ */
85
+ project?: pulumi.Input<string>;
86
+ }
@@ -0,0 +1,53 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.getDeliveryPipelineIamPolicyOutput = exports.getDeliveryPipelineIamPolicy = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * Retrieves the current IAM policy data for deliverypipeline
10
+ *
11
+ * ## example
12
+ *
13
+ * ```typescript
14
+ * import * as pulumi from "@pulumi/pulumi";
15
+ * import * as gcp from "@pulumi/gcp";
16
+ *
17
+ * const policy = gcp.clouddeploy.getDeliveryPipelineIamPolicy({
18
+ * project: google_clouddeploy_delivery_pipeline["default"].project,
19
+ * location: google_clouddeploy_delivery_pipeline["default"].location,
20
+ * name: google_clouddeploy_delivery_pipeline["default"].name,
21
+ * });
22
+ * ```
23
+ */
24
+ function getDeliveryPipelineIamPolicy(args, opts) {
25
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
26
+ return pulumi.runtime.invoke("gcp:clouddeploy/getDeliveryPipelineIamPolicy:getDeliveryPipelineIamPolicy", {
27
+ "location": args.location,
28
+ "name": args.name,
29
+ "project": args.project,
30
+ }, opts);
31
+ }
32
+ exports.getDeliveryPipelineIamPolicy = getDeliveryPipelineIamPolicy;
33
+ /**
34
+ * Retrieves the current IAM policy data for deliverypipeline
35
+ *
36
+ * ## example
37
+ *
38
+ * ```typescript
39
+ * import * as pulumi from "@pulumi/pulumi";
40
+ * import * as gcp from "@pulumi/gcp";
41
+ *
42
+ * const policy = gcp.clouddeploy.getDeliveryPipelineIamPolicy({
43
+ * project: google_clouddeploy_delivery_pipeline["default"].project,
44
+ * location: google_clouddeploy_delivery_pipeline["default"].location,
45
+ * name: google_clouddeploy_delivery_pipeline["default"].name,
46
+ * });
47
+ * ```
48
+ */
49
+ function getDeliveryPipelineIamPolicyOutput(args, opts) {
50
+ return pulumi.output(args).apply((a) => getDeliveryPipelineIamPolicy(a, opts));
51
+ }
52
+ exports.getDeliveryPipelineIamPolicyOutput = getDeliveryPipelineIamPolicyOutput;
53
+ //# sourceMappingURL=getDeliveryPipelineIamPolicy.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getDeliveryPipelineIamPolicy.js","sourceRoot":"","sources":["../../clouddeploy/getDeliveryPipelineIamPolicy.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,4BAA4B,CAAC,IAAsC,EAAE,IAA2B;IAE5G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2EAA2E,EAAE;QACtG,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,oEAQC;AAuCD;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,kCAAkC,CAAC,IAA4C,EAAE,IAA2B;IACxH,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,4BAA4B,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACvF,CAAC;AAFD,gFAEC"}
@@ -4,6 +4,18 @@ export declare const Automation: typeof import("./automation").Automation;
4
4
  export { DeliveryPipelineArgs, DeliveryPipelineState } from "./deliveryPipeline";
5
5
  export type DeliveryPipeline = import("./deliveryPipeline").DeliveryPipeline;
6
6
  export declare const DeliveryPipeline: typeof import("./deliveryPipeline").DeliveryPipeline;
7
+ export { DeliveryPipelineIamBindingArgs, DeliveryPipelineIamBindingState } from "./deliveryPipelineIamBinding";
8
+ export type DeliveryPipelineIamBinding = import("./deliveryPipelineIamBinding").DeliveryPipelineIamBinding;
9
+ export declare const DeliveryPipelineIamBinding: typeof import("./deliveryPipelineIamBinding").DeliveryPipelineIamBinding;
10
+ export { DeliveryPipelineIamMemberArgs, DeliveryPipelineIamMemberState } from "./deliveryPipelineIamMember";
11
+ export type DeliveryPipelineIamMember = import("./deliveryPipelineIamMember").DeliveryPipelineIamMember;
12
+ export declare const DeliveryPipelineIamMember: typeof import("./deliveryPipelineIamMember").DeliveryPipelineIamMember;
13
+ export { DeliveryPipelineIamPolicyArgs, DeliveryPipelineIamPolicyState } from "./deliveryPipelineIamPolicy";
14
+ export type DeliveryPipelineIamPolicy = import("./deliveryPipelineIamPolicy").DeliveryPipelineIamPolicy;
15
+ export declare const DeliveryPipelineIamPolicy: typeof import("./deliveryPipelineIamPolicy").DeliveryPipelineIamPolicy;
16
+ export { GetDeliveryPipelineIamPolicyArgs, GetDeliveryPipelineIamPolicyResult, GetDeliveryPipelineIamPolicyOutputArgs } from "./getDeliveryPipelineIamPolicy";
17
+ export declare const getDeliveryPipelineIamPolicy: typeof import("./getDeliveryPipelineIamPolicy").getDeliveryPipelineIamPolicy;
18
+ export declare const getDeliveryPipelineIamPolicyOutput: typeof import("./getDeliveryPipelineIamPolicy").getDeliveryPipelineIamPolicyOutput;
7
19
  export { TargetArgs, TargetState } from "./target";
8
20
  export type Target = import("./target").Target;
9
21
  export declare const Target: typeof import("./target").Target;
@@ -2,13 +2,22 @@
2
2
  // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
  Object.defineProperty(exports, "__esModule", { value: true });
5
- exports.Target = exports.DeliveryPipeline = exports.Automation = void 0;
5
+ exports.Target = exports.getDeliveryPipelineIamPolicyOutput = exports.getDeliveryPipelineIamPolicy = exports.DeliveryPipelineIamPolicy = exports.DeliveryPipelineIamMember = exports.DeliveryPipelineIamBinding = exports.DeliveryPipeline = exports.Automation = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("../utilities");
8
8
  exports.Automation = null;
9
9
  utilities.lazyLoad(exports, ["Automation"], () => require("./automation"));
10
10
  exports.DeliveryPipeline = null;
11
11
  utilities.lazyLoad(exports, ["DeliveryPipeline"], () => require("./deliveryPipeline"));
12
+ exports.DeliveryPipelineIamBinding = null;
13
+ utilities.lazyLoad(exports, ["DeliveryPipelineIamBinding"], () => require("./deliveryPipelineIamBinding"));
14
+ exports.DeliveryPipelineIamMember = null;
15
+ utilities.lazyLoad(exports, ["DeliveryPipelineIamMember"], () => require("./deliveryPipelineIamMember"));
16
+ exports.DeliveryPipelineIamPolicy = null;
17
+ utilities.lazyLoad(exports, ["DeliveryPipelineIamPolicy"], () => require("./deliveryPipelineIamPolicy"));
18
+ exports.getDeliveryPipelineIamPolicy = null;
19
+ exports.getDeliveryPipelineIamPolicyOutput = null;
20
+ utilities.lazyLoad(exports, ["getDeliveryPipelineIamPolicy", "getDeliveryPipelineIamPolicyOutput"], () => require("./getDeliveryPipelineIamPolicy"));
12
21
  exports.Target = null;
13
22
  utilities.lazyLoad(exports, ["Target"], () => require("./target"));
14
23
  const _module = {
@@ -19,6 +28,12 @@ const _module = {
19
28
  return new exports.Automation(name, undefined, { urn });
20
29
  case "gcp:clouddeploy/deliveryPipeline:DeliveryPipeline":
21
30
  return new exports.DeliveryPipeline(name, undefined, { urn });
31
+ case "gcp:clouddeploy/deliveryPipelineIamBinding:DeliveryPipelineIamBinding":
32
+ return new exports.DeliveryPipelineIamBinding(name, undefined, { urn });
33
+ case "gcp:clouddeploy/deliveryPipelineIamMember:DeliveryPipelineIamMember":
34
+ return new exports.DeliveryPipelineIamMember(name, undefined, { urn });
35
+ case "gcp:clouddeploy/deliveryPipelineIamPolicy:DeliveryPipelineIamPolicy":
36
+ return new exports.DeliveryPipelineIamPolicy(name, undefined, { urn });
22
37
  case "gcp:clouddeploy/target:Target":
23
38
  return new exports.Target(name, undefined, { urn });
24
39
  default:
@@ -28,5 +43,8 @@ const _module = {
28
43
  };
29
44
  pulumi.runtime.registerResourceModule("gcp", "clouddeploy/automation", _module);
30
45
  pulumi.runtime.registerResourceModule("gcp", "clouddeploy/deliveryPipeline", _module);
46
+ pulumi.runtime.registerResourceModule("gcp", "clouddeploy/deliveryPipelineIamBinding", _module);
47
+ pulumi.runtime.registerResourceModule("gcp", "clouddeploy/deliveryPipelineIamMember", _module);
48
+ pulumi.runtime.registerResourceModule("gcp", "clouddeploy/deliveryPipelineIamPolicy", _module);
31
49
  pulumi.runtime.registerResourceModule("gcp", "clouddeploy/target", _module);
32
50
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../clouddeploy/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAK7B,QAAA,UAAU,GAA6C,IAAW,CAAC;AAChF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,YAAY,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC;AAI9D,QAAA,gBAAgB,GAAyD,IAAW,CAAC;AAClG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,kBAAkB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,oBAAoB,CAAC,CAAC,CAAC;AAI1E,QAAA,MAAM,GAAqC,IAAW,CAAC;AACpE,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,CAAC;AAGnE,MAAM,OAAO,GAAG;IACZ,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE;IAC/B,SAAS,EAAE,CAAC,IAAY,EAAE,IAAY,EAAE,GAAW,EAAmB,EAAE;QACpE,QAAQ,IAAI,EAAE;YACV,KAAK,uCAAuC;gBACxC,OAAO,IAAI,kBAAU,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACxD,KAAK,mDAAmD;gBACpD,OAAO,IAAI,wBAAgB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC9D,KAAK,+BAA+B;gBAChC,OAAO,IAAI,cAAM,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACpD;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,wBAAwB,EAAE,OAAO,CAAC,CAAA;AAC/E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,8BAA8B,EAAE,OAAO,CAAC,CAAA;AACrF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,oBAAoB,EAAE,OAAO,CAAC,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../clouddeploy/index.ts"],"names":[],"mappings":"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"}
@@ -283,6 +283,9 @@ export declare const InstanceGroup: typeof import("./instanceGroup").InstanceGro
283
283
  export { InstanceGroupManagerArgs, InstanceGroupManagerState } from "./instanceGroupManager";
284
284
  export type InstanceGroupManager = import("./instanceGroupManager").InstanceGroupManager;
285
285
  export declare const InstanceGroupManager: typeof import("./instanceGroupManager").InstanceGroupManager;
286
+ export { InstanceGroupMembershipArgs, InstanceGroupMembershipState } from "./instanceGroupMembership";
287
+ export type InstanceGroupMembership = import("./instanceGroupMembership").InstanceGroupMembership;
288
+ export declare const InstanceGroupMembership: typeof import("./instanceGroupMembership").InstanceGroupMembership;
286
289
  export { InstanceGroupNamedPortArgs, InstanceGroupNamedPortState } from "./instanceGroupNamedPort";
287
290
  export type InstanceGroupNamedPort = import("./instanceGroupNamedPort").InstanceGroupNamedPort;
288
291
  export declare const InstanceGroupNamedPort: typeof import("./instanceGroupNamedPort").InstanceGroupNamedPort;