@pulumi/gcp 7.12.0 → 7.13.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 (52) hide show
  1. package/appengine/applicationUrlDispatchRules.d.ts +1 -1
  2. package/appengine/applicationUrlDispatchRules.js +1 -1
  3. package/appengine/engineSplitTraffic.d.ts +2 -2
  4. package/appengine/engineSplitTraffic.js +2 -2
  5. package/appengine/serviceNetworkSettings.d.ts +1 -1
  6. package/appengine/serviceNetworkSettings.js +1 -1
  7. package/appengine/standardAppVersion.d.ts +2 -2
  8. package/appengine/standardAppVersion.js +2 -2
  9. package/bigquery/routine.d.ts +49 -6
  10. package/bigquery/routine.js +36 -6
  11. package/bigquery/routine.js.map +1 -1
  12. package/certificatemanager/dnsAuthorization.d.ts +20 -7
  13. package/certificatemanager/dnsAuthorization.js +10 -7
  14. package/certificatemanager/dnsAuthorization.js.map +1 -1
  15. package/clouddeploy/automation.d.ts +8 -0
  16. package/clouddeploy/automation.js +8 -0
  17. package/clouddeploy/automation.js.map +1 -1
  18. package/clouddeploy/getTargetIamPolicy.d.ts +86 -0
  19. package/clouddeploy/getTargetIamPolicy.js +53 -0
  20. package/clouddeploy/getTargetIamPolicy.js.map +1 -0
  21. package/clouddeploy/index.d.ts +12 -0
  22. package/clouddeploy/index.js +19 -1
  23. package/clouddeploy/index.js.map +1 -1
  24. package/clouddeploy/targetIamBinding.d.ts +58 -0
  25. package/clouddeploy/targetIamBinding.js +67 -0
  26. package/clouddeploy/targetIamBinding.js.map +1 -0
  27. package/clouddeploy/targetIamMember.d.ts +58 -0
  28. package/clouddeploy/targetIamMember.js +67 -0
  29. package/clouddeploy/targetIamMember.js.map +1 -0
  30. package/clouddeploy/targetIamPolicy.d.ts +50 -0
  31. package/clouddeploy/targetIamPolicy.js +60 -0
  32. package/clouddeploy/targetIamPolicy.js.map +1 -0
  33. package/compute/regionTargetHttpsProxy.d.ts +69 -11
  34. package/compute/regionTargetHttpsProxy.js +39 -3
  35. package/compute/regionTargetHttpsProxy.js.map +1 -1
  36. package/gkehub/scope.d.ts +35 -0
  37. package/gkehub/scope.js +7 -0
  38. package/gkehub/scope.js.map +1 -1
  39. package/monitoring/getAppEngineService.d.ts +2 -2
  40. package/monitoring/getAppEngineService.js +2 -2
  41. package/package.json +1 -1
  42. package/spanner/databaseIAMBinding.d.ts +74 -0
  43. package/spanner/databaseIAMBinding.js +62 -0
  44. package/spanner/databaseIAMBinding.js.map +1 -1
  45. package/spanner/databaseIAMMember.d.ts +74 -0
  46. package/spanner/databaseIAMMember.js +62 -0
  47. package/spanner/databaseIAMMember.js.map +1 -1
  48. package/spanner/databaseIAMPolicy.d.ts +62 -0
  49. package/spanner/databaseIAMPolicy.js +62 -0
  50. package/spanner/databaseIAMPolicy.js.map +1 -1
  51. package/types/input.d.ts +57 -2
  52. package/types/output.d.ts +65 -5
@@ -34,6 +34,30 @@ import * as outputs from "../types/output";
34
34
  * });
35
35
  * ```
36
36
  *
37
+ * With IAM Conditions:
38
+ *
39
+ * ```typescript
40
+ * import * as pulumi from "@pulumi/pulumi";
41
+ * import * as gcp from "@pulumi/gcp";
42
+ *
43
+ * const admin = gcp.organizations.getIAMPolicy({
44
+ * bindings: [{
45
+ * role: "roles/editor",
46
+ * members: ["user:jane@example.com"],
47
+ * condition: {
48
+ * title: "My Role",
49
+ * description: "Grant permissions on my_role",
50
+ * expression: "(resource.type == \"spanner.googleapis.com/DatabaseRole\" && (resource.name.endsWith(\"/myrole\")))",
51
+ * },
52
+ * }],
53
+ * });
54
+ * const database = new gcp.spanner.DatabaseIAMPolicy("database", {
55
+ * instance: "your-instance-name",
56
+ * database: "your-database-name",
57
+ * policyData: admin.then(admin => admin.policyData),
58
+ * });
59
+ * ```
60
+ *
37
61
  * ## google\_spanner\_database\_iam\_binding
38
62
  *
39
63
  * ```typescript
@@ -48,6 +72,25 @@ import * as outputs from "../types/output";
48
72
  * });
49
73
  * ```
50
74
  *
75
+ * With IAM Conditions:
76
+ *
77
+ * ```typescript
78
+ * import * as pulumi from "@pulumi/pulumi";
79
+ * import * as gcp from "@pulumi/gcp";
80
+ *
81
+ * const database = new gcp.spanner.DatabaseIAMBinding("database", {
82
+ * instance: "your-instance-name",
83
+ * database: "your-database-name",
84
+ * role: "roles/compute.networkUser",
85
+ * members: ["user:jane@example.com"],
86
+ * condition: {
87
+ * title: "My Role",
88
+ * description: "Grant permissions on my_role",
89
+ * expression: "(resource.type == \"spanner.googleapis.com/DatabaseRole\" && (resource.name.endsWith(\"/myrole\")))",
90
+ * },
91
+ * });
92
+ * ```
93
+ *
51
94
  * ## google\_spanner\_database\_iam\_member
52
95
  *
53
96
  * ```typescript
@@ -62,6 +105,25 @@ import * as outputs from "../types/output";
62
105
  * });
63
106
  * ```
64
107
  *
108
+ * With IAM Conditions:
109
+ *
110
+ * ```typescript
111
+ * import * as pulumi from "@pulumi/pulumi";
112
+ * import * as gcp from "@pulumi/gcp";
113
+ *
114
+ * const database = new gcp.spanner.DatabaseIAMMember("database", {
115
+ * instance: "your-instance-name",
116
+ * database: "your-database-name",
117
+ * role: "roles/compute.networkUser",
118
+ * member: "user:jane@example.com",
119
+ * condition: {
120
+ * title: "My Role",
121
+ * description: "Grant permissions on my_role",
122
+ * expression: "(resource.type == \"spanner.googleapis.com/DatabaseRole\" && (resource.name.endsWith(\"/myrole\")))",
123
+ * },
124
+ * });
125
+ * ```
126
+ *
65
127
  * ## Import
66
128
  *
67
129
  * ### Importing IAM policies
@@ -104,6 +166,10 @@ export declare class DatabaseIAMMember extends pulumi.CustomResource {
104
166
  * when multiple copies of the Pulumi SDK have been loaded into the same process.
105
167
  */
106
168
  static isInstance(obj: any): obj is DatabaseIAMMember;
169
+ /**
170
+ * An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding.
171
+ * Structure is documented below.
172
+ */
107
173
  readonly condition: pulumi.Output<outputs.spanner.DatabaseIAMMemberCondition | undefined>;
108
174
  /**
109
175
  * The name of the Spanner database.
@@ -151,6 +217,10 @@ export declare class DatabaseIAMMember extends pulumi.CustomResource {
151
217
  * Input properties used for looking up and filtering DatabaseIAMMember resources.
152
218
  */
153
219
  export interface DatabaseIAMMemberState {
220
+ /**
221
+ * An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding.
222
+ * Structure is documented below.
223
+ */
154
224
  condition?: pulumi.Input<inputs.spanner.DatabaseIAMMemberCondition>;
155
225
  /**
156
226
  * The name of the Spanner database.
@@ -190,6 +260,10 @@ export interface DatabaseIAMMemberState {
190
260
  * The set of arguments for constructing a DatabaseIAMMember resource.
191
261
  */
192
262
  export interface DatabaseIAMMemberArgs {
263
+ /**
264
+ * An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding.
265
+ * Structure is documented below.
266
+ */
193
267
  condition?: pulumi.Input<inputs.spanner.DatabaseIAMMemberCondition>;
194
268
  /**
195
269
  * The name of the Spanner database.
@@ -38,6 +38,30 @@ const utilities = require("../utilities");
38
38
  * });
39
39
  * ```
40
40
  *
41
+ * With IAM Conditions:
42
+ *
43
+ * ```typescript
44
+ * import * as pulumi from "@pulumi/pulumi";
45
+ * import * as gcp from "@pulumi/gcp";
46
+ *
47
+ * const admin = gcp.organizations.getIAMPolicy({
48
+ * bindings: [{
49
+ * role: "roles/editor",
50
+ * members: ["user:jane@example.com"],
51
+ * condition: {
52
+ * title: "My Role",
53
+ * description: "Grant permissions on my_role",
54
+ * expression: "(resource.type == \"spanner.googleapis.com/DatabaseRole\" && (resource.name.endsWith(\"/myrole\")))",
55
+ * },
56
+ * }],
57
+ * });
58
+ * const database = new gcp.spanner.DatabaseIAMPolicy("database", {
59
+ * instance: "your-instance-name",
60
+ * database: "your-database-name",
61
+ * policyData: admin.then(admin => admin.policyData),
62
+ * });
63
+ * ```
64
+ *
41
65
  * ## google\_spanner\_database\_iam\_binding
42
66
  *
43
67
  * ```typescript
@@ -52,6 +76,25 @@ const utilities = require("../utilities");
52
76
  * });
53
77
  * ```
54
78
  *
79
+ * With IAM Conditions:
80
+ *
81
+ * ```typescript
82
+ * import * as pulumi from "@pulumi/pulumi";
83
+ * import * as gcp from "@pulumi/gcp";
84
+ *
85
+ * const database = new gcp.spanner.DatabaseIAMBinding("database", {
86
+ * instance: "your-instance-name",
87
+ * database: "your-database-name",
88
+ * role: "roles/compute.networkUser",
89
+ * members: ["user:jane@example.com"],
90
+ * condition: {
91
+ * title: "My Role",
92
+ * description: "Grant permissions on my_role",
93
+ * expression: "(resource.type == \"spanner.googleapis.com/DatabaseRole\" && (resource.name.endsWith(\"/myrole\")))",
94
+ * },
95
+ * });
96
+ * ```
97
+ *
55
98
  * ## google\_spanner\_database\_iam\_member
56
99
  *
57
100
  * ```typescript
@@ -66,6 +109,25 @@ const utilities = require("../utilities");
66
109
  * });
67
110
  * ```
68
111
  *
112
+ * With IAM Conditions:
113
+ *
114
+ * ```typescript
115
+ * import * as pulumi from "@pulumi/pulumi";
116
+ * import * as gcp from "@pulumi/gcp";
117
+ *
118
+ * const database = new gcp.spanner.DatabaseIAMMember("database", {
119
+ * instance: "your-instance-name",
120
+ * database: "your-database-name",
121
+ * role: "roles/compute.networkUser",
122
+ * member: "user:jane@example.com",
123
+ * condition: {
124
+ * title: "My Role",
125
+ * description: "Grant permissions on my_role",
126
+ * expression: "(resource.type == \"spanner.googleapis.com/DatabaseRole\" && (resource.name.endsWith(\"/myrole\")))",
127
+ * },
128
+ * });
129
+ * ```
130
+ *
69
131
  * ## Import
70
132
  *
71
133
  * ### Importing IAM policies
@@ -1 +1 @@
1
- {"version":3,"file":"databaseIAMMember.js","sourceRoot":"","sources":["../../spanner/databaseIAMMember.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"databaseIAMMember.js","sourceRoot":"","sources":["../../spanner/databaseIAMMember.ts"],"names":[],"mappings":"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"}
@@ -32,6 +32,30 @@ import * as pulumi from "@pulumi/pulumi";
32
32
  * });
33
33
  * ```
34
34
  *
35
+ * With IAM Conditions:
36
+ *
37
+ * ```typescript
38
+ * import * as pulumi from "@pulumi/pulumi";
39
+ * import * as gcp from "@pulumi/gcp";
40
+ *
41
+ * const admin = gcp.organizations.getIAMPolicy({
42
+ * bindings: [{
43
+ * role: "roles/editor",
44
+ * members: ["user:jane@example.com"],
45
+ * condition: {
46
+ * title: "My Role",
47
+ * description: "Grant permissions on my_role",
48
+ * expression: "(resource.type == \"spanner.googleapis.com/DatabaseRole\" && (resource.name.endsWith(\"/myrole\")))",
49
+ * },
50
+ * }],
51
+ * });
52
+ * const database = new gcp.spanner.DatabaseIAMPolicy("database", {
53
+ * instance: "your-instance-name",
54
+ * database: "your-database-name",
55
+ * policyData: admin.then(admin => admin.policyData),
56
+ * });
57
+ * ```
58
+ *
35
59
  * ## google\_spanner\_database\_iam\_binding
36
60
  *
37
61
  * ```typescript
@@ -46,6 +70,25 @@ import * as pulumi from "@pulumi/pulumi";
46
70
  * });
47
71
  * ```
48
72
  *
73
+ * With IAM Conditions:
74
+ *
75
+ * ```typescript
76
+ * import * as pulumi from "@pulumi/pulumi";
77
+ * import * as gcp from "@pulumi/gcp";
78
+ *
79
+ * const database = new gcp.spanner.DatabaseIAMBinding("database", {
80
+ * instance: "your-instance-name",
81
+ * database: "your-database-name",
82
+ * role: "roles/compute.networkUser",
83
+ * members: ["user:jane@example.com"],
84
+ * condition: {
85
+ * title: "My Role",
86
+ * description: "Grant permissions on my_role",
87
+ * expression: "(resource.type == \"spanner.googleapis.com/DatabaseRole\" && (resource.name.endsWith(\"/myrole\")))",
88
+ * },
89
+ * });
90
+ * ```
91
+ *
49
92
  * ## google\_spanner\_database\_iam\_member
50
93
  *
51
94
  * ```typescript
@@ -60,6 +103,25 @@ import * as pulumi from "@pulumi/pulumi";
60
103
  * });
61
104
  * ```
62
105
  *
106
+ * With IAM Conditions:
107
+ *
108
+ * ```typescript
109
+ * import * as pulumi from "@pulumi/pulumi";
110
+ * import * as gcp from "@pulumi/gcp";
111
+ *
112
+ * const database = new gcp.spanner.DatabaseIAMMember("database", {
113
+ * instance: "your-instance-name",
114
+ * database: "your-database-name",
115
+ * role: "roles/compute.networkUser",
116
+ * member: "user:jane@example.com",
117
+ * condition: {
118
+ * title: "My Role",
119
+ * description: "Grant permissions on my_role",
120
+ * expression: "(resource.type == \"spanner.googleapis.com/DatabaseRole\" && (resource.name.endsWith(\"/myrole\")))",
121
+ * },
122
+ * });
123
+ * ```
124
+ *
63
125
  * ## Import
64
126
  *
65
127
  * ### Importing IAM policies
@@ -38,6 +38,30 @@ const utilities = require("../utilities");
38
38
  * });
39
39
  * ```
40
40
  *
41
+ * With IAM Conditions:
42
+ *
43
+ * ```typescript
44
+ * import * as pulumi from "@pulumi/pulumi";
45
+ * import * as gcp from "@pulumi/gcp";
46
+ *
47
+ * const admin = gcp.organizations.getIAMPolicy({
48
+ * bindings: [{
49
+ * role: "roles/editor",
50
+ * members: ["user:jane@example.com"],
51
+ * condition: {
52
+ * title: "My Role",
53
+ * description: "Grant permissions on my_role",
54
+ * expression: "(resource.type == \"spanner.googleapis.com/DatabaseRole\" && (resource.name.endsWith(\"/myrole\")))",
55
+ * },
56
+ * }],
57
+ * });
58
+ * const database = new gcp.spanner.DatabaseIAMPolicy("database", {
59
+ * instance: "your-instance-name",
60
+ * database: "your-database-name",
61
+ * policyData: admin.then(admin => admin.policyData),
62
+ * });
63
+ * ```
64
+ *
41
65
  * ## google\_spanner\_database\_iam\_binding
42
66
  *
43
67
  * ```typescript
@@ -52,6 +76,25 @@ const utilities = require("../utilities");
52
76
  * });
53
77
  * ```
54
78
  *
79
+ * With IAM Conditions:
80
+ *
81
+ * ```typescript
82
+ * import * as pulumi from "@pulumi/pulumi";
83
+ * import * as gcp from "@pulumi/gcp";
84
+ *
85
+ * const database = new gcp.spanner.DatabaseIAMBinding("database", {
86
+ * instance: "your-instance-name",
87
+ * database: "your-database-name",
88
+ * role: "roles/compute.networkUser",
89
+ * members: ["user:jane@example.com"],
90
+ * condition: {
91
+ * title: "My Role",
92
+ * description: "Grant permissions on my_role",
93
+ * expression: "(resource.type == \"spanner.googleapis.com/DatabaseRole\" && (resource.name.endsWith(\"/myrole\")))",
94
+ * },
95
+ * });
96
+ * ```
97
+ *
55
98
  * ## google\_spanner\_database\_iam\_member
56
99
  *
57
100
  * ```typescript
@@ -66,6 +109,25 @@ const utilities = require("../utilities");
66
109
  * });
67
110
  * ```
68
111
  *
112
+ * With IAM Conditions:
113
+ *
114
+ * ```typescript
115
+ * import * as pulumi from "@pulumi/pulumi";
116
+ * import * as gcp from "@pulumi/gcp";
117
+ *
118
+ * const database = new gcp.spanner.DatabaseIAMMember("database", {
119
+ * instance: "your-instance-name",
120
+ * database: "your-database-name",
121
+ * role: "roles/compute.networkUser",
122
+ * member: "user:jane@example.com",
123
+ * condition: {
124
+ * title: "My Role",
125
+ * description: "Grant permissions on my_role",
126
+ * expression: "(resource.type == \"spanner.googleapis.com/DatabaseRole\" && (resource.name.endsWith(\"/myrole\")))",
127
+ * },
128
+ * });
129
+ * ```
130
+ *
69
131
  * ## Import
70
132
  *
71
133
  * ### Importing IAM policies
@@ -1 +1 @@
1
- {"version":3,"file":"databaseIAMPolicy.js","sourceRoot":"","sources":["../../spanner/databaseIAMPolicy.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"databaseIAMPolicy.js","sourceRoot":"","sources":["../../spanner/databaseIAMPolicy.ts"],"names":[],"mappings":"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"}
package/types/input.d.ts CHANGED
@@ -4832,6 +4832,34 @@ export declare namespace bigquery {
4832
4832
  */
4833
4833
  name?: pulumi.Input<string>;
4834
4834
  }
4835
+ interface RoutineRemoteFunctionOptions {
4836
+ /**
4837
+ * Fully qualified name of the user-provided connection object which holds
4838
+ * the authentication information to send requests to the remote service.
4839
+ * Format: "projects/{projectId}/locations/{locationId}/connections/{connectionId}"
4840
+ */
4841
+ connection?: pulumi.Input<string>;
4842
+ /**
4843
+ * Endpoint of the user-provided remote service, e.g.
4844
+ * `https://us-east1-my_gcf_project.cloudfunctions.net/remote_add`
4845
+ */
4846
+ endpoint?: pulumi.Input<string>;
4847
+ /**
4848
+ * Max number of rows in each batch sent to the remote service. If absent or if 0,
4849
+ * BigQuery dynamically decides the number of rows in a batch.
4850
+ */
4851
+ maxBatchingRows?: pulumi.Input<string>;
4852
+ /**
4853
+ * User-defined context as a set of key/value pairs, which will be sent as function
4854
+ * invocation context together with batched arguments in the requests to the remote
4855
+ * service. The total number of bytes of keys and values must be less than 8KB.
4856
+ * An object containing a list of "key": value pairs. Example:
4857
+ * `{ "name": "wrench", "mass": "1.3kg", "count": "3" }`.
4858
+ */
4859
+ userDefinedContext?: pulumi.Input<{
4860
+ [key: string]: pulumi.Input<string>;
4861
+ }>;
4862
+ }
4835
4863
  interface RoutineSparkOptions {
4836
4864
  /**
4837
4865
  * Archive files to be extracted into the working directory of each executor. For more information about Apache Spark, see Apache Spark.
@@ -9465,6 +9493,16 @@ export declare namespace clouddeploy {
9465
9493
  */
9466
9494
  internalIp?: pulumi.Input<boolean>;
9467
9495
  }
9496
+ interface TargetIamBindingCondition {
9497
+ description?: pulumi.Input<string>;
9498
+ expression: pulumi.Input<string>;
9499
+ title: pulumi.Input<string>;
9500
+ }
9501
+ interface TargetIamMemberCondition {
9502
+ description?: pulumi.Input<string>;
9503
+ expression: pulumi.Input<string>;
9504
+ title: pulumi.Input<string>;
9505
+ }
9468
9506
  interface TargetMultiTarget {
9469
9507
  /**
9470
9508
  * Required. The targetIds of this multiTarget.
@@ -12047,7 +12085,8 @@ export declare namespace cloudrunv2 {
12047
12085
  }
12048
12086
  interface ServiceTemplateContainerResources {
12049
12087
  /**
12050
- * Determines whether CPU should be throttled or not outside of requests.
12088
+ * Determines whether CPU is only allocated during requests. True by default if the parent `resources` field is not set. However, if
12089
+ * `resources` is set, this field must be explicitly set to true to preserve the default behavior.
12051
12090
  */
12052
12091
  cpuIdle?: pulumi.Input<boolean>;
12053
12092
  /**
@@ -12806,6 +12845,10 @@ export declare namespace composer {
12806
12845
  * IPv4 cidr range that will be used by Composer internal components.
12807
12846
  */
12808
12847
  composerInternalIpv4CidrBlock?: pulumi.Input<string>;
12848
+ /**
12849
+ * PSC (Private Service Connect) Network entry point. Customers can pre-create the Network Attachment and point Cloud Composer environment to use. It is possible to share network attachment among many environments, provided enough IP addresses are available.
12850
+ */
12851
+ composerNetworkAttachment?: pulumi.Input<string>;
12809
12852
  /**
12810
12853
  * The disk size in GB used for node VMs. Minimum size is 20GB. If unspecified, defaults to 100GB. Cannot be updated. This field is supported for Cloud Composer environments in versions composer-1.*.*-airflow-*.*.*.
12811
12854
  */
@@ -12839,7 +12882,7 @@ export declare namespace composer {
12839
12882
  */
12840
12883
  serviceAccount?: pulumi.Input<string>;
12841
12884
  /**
12842
- * The Compute Engine subnetwork to be used for machine communications, , specified as a self-link, relative resource name (e.g. "projects/{project}/regions/{region}/subnetworks/{subnetwork}"), or by name. If subnetwork is provided, network must also be provided and the subnetwork must belong to the enclosing environment's project and region.
12885
+ * The Compute Engine subnetwork to be used for machine communications, specified as a self-link, relative resource name (e.g. "projects/{project}/regions/{region}/subnetworks/{subnetwork}"), or by name. If subnetwork is provided, network must also be provided and the subnetwork must belong to the enclosing environment's project and region.
12843
12886
  */
12844
12887
  subnetwork?: pulumi.Input<string>;
12845
12888
  /**
@@ -55618,12 +55661,24 @@ export declare namespace spanner {
55618
55661
  }
55619
55662
  interface DatabaseIAMBindingCondition {
55620
55663
  description?: pulumi.Input<string>;
55664
+ /**
55665
+ * Textual representation of an expression in Common Expression Language syntax.
55666
+ */
55621
55667
  expression: pulumi.Input<string>;
55668
+ /**
55669
+ * A title for the expression, i.e. a short string describing its purpose.
55670
+ */
55622
55671
  title: pulumi.Input<string>;
55623
55672
  }
55624
55673
  interface DatabaseIAMMemberCondition {
55625
55674
  description?: pulumi.Input<string>;
55675
+ /**
55676
+ * Textual representation of an expression in Common Expression Language syntax.
55677
+ */
55626
55678
  expression: pulumi.Input<string>;
55679
+ /**
55680
+ * A title for the expression, i.e. a short string describing its purpose.
55681
+ */
55627
55682
  title: pulumi.Input<string>;
55628
55683
  }
55629
55684
  interface InstanceAutoscalingConfig {
package/types/output.d.ts CHANGED
@@ -5311,6 +5311,34 @@ export declare namespace bigquery {
5311
5311
  */
5312
5312
  name?: string;
5313
5313
  }
5314
+ interface RoutineRemoteFunctionOptions {
5315
+ /**
5316
+ * Fully qualified name of the user-provided connection object which holds
5317
+ * the authentication information to send requests to the remote service.
5318
+ * Format: "projects/{projectId}/locations/{locationId}/connections/{connectionId}"
5319
+ */
5320
+ connection?: string;
5321
+ /**
5322
+ * Endpoint of the user-provided remote service, e.g.
5323
+ * `https://us-east1-my_gcf_project.cloudfunctions.net/remote_add`
5324
+ */
5325
+ endpoint?: string;
5326
+ /**
5327
+ * Max number of rows in each batch sent to the remote service. If absent or if 0,
5328
+ * BigQuery dynamically decides the number of rows in a batch.
5329
+ */
5330
+ maxBatchingRows?: string;
5331
+ /**
5332
+ * User-defined context as a set of key/value pairs, which will be sent as function
5333
+ * invocation context together with batched arguments in the requests to the remote
5334
+ * service. The total number of bytes of keys and values must be less than 8KB.
5335
+ * An object containing a list of "key": value pairs. Example:
5336
+ * `{ "name": "wrench", "mass": "1.3kg", "count": "3" }`.
5337
+ */
5338
+ userDefinedContext: {
5339
+ [key: string]: string;
5340
+ };
5341
+ }
5314
5342
  interface RoutineSparkOptions {
5315
5343
  /**
5316
5344
  * Archive files to be extracted into the working directory of each executor. For more information about Apache Spark, see Apache Spark.
@@ -11171,6 +11199,16 @@ export declare namespace clouddeploy {
11171
11199
  */
11172
11200
  internalIp?: boolean;
11173
11201
  }
11202
+ interface TargetIamBindingCondition {
11203
+ description?: string;
11204
+ expression: string;
11205
+ title: string;
11206
+ }
11207
+ interface TargetIamMemberCondition {
11208
+ description?: string;
11209
+ expression: string;
11210
+ title: string;
11211
+ }
11174
11212
  interface TargetMultiTarget {
11175
11213
  /**
11176
11214
  * Required. The targetIds of this multiTarget.
@@ -14889,7 +14927,8 @@ export declare namespace cloudrunv2 {
14889
14927
  }
14890
14928
  interface GetServiceTemplateContainerResource {
14891
14929
  /**
14892
- * Determines whether CPU should be throttled or not outside of requests.
14930
+ * Determines whether CPU is only allocated during requests. True by default if the parent 'resources' field is not set. However, if
14931
+ * 'resources' is set, this field must be explicitly set to true to preserve the default behavior.
14893
14932
  */
14894
14933
  cpuIdle: boolean;
14895
14934
  /**
@@ -15915,7 +15954,8 @@ export declare namespace cloudrunv2 {
15915
15954
  }
15916
15955
  interface ServiceTemplateContainerResources {
15917
15956
  /**
15918
- * Determines whether CPU should be throttled or not outside of requests.
15957
+ * Determines whether CPU is only allocated during requests. True by default if the parent `resources` field is not set. However, if
15958
+ * `resources` is set, this field must be explicitly set to true to preserve the default behavior.
15919
15959
  */
15920
15960
  cpuIdle?: boolean;
15921
15961
  /**
@@ -16674,6 +16714,10 @@ export declare namespace composer {
16674
16714
  * IPv4 cidr range that will be used by Composer internal components.
16675
16715
  */
16676
16716
  composerInternalIpv4CidrBlock: string;
16717
+ /**
16718
+ * PSC (Private Service Connect) Network entry point. Customers can pre-create the Network Attachment and point Cloud Composer environment to use. It is possible to share network attachment among many environments, provided enough IP addresses are available.
16719
+ */
16720
+ composerNetworkAttachment: string;
16677
16721
  /**
16678
16722
  * The disk size in GB used for node VMs. Minimum size is 20GB. If unspecified, defaults to 100GB. Cannot be updated. This field is supported for Cloud Composer environments in versions composer-1.*.*-airflow-*.*.*.
16679
16723
  */
@@ -16707,9 +16751,9 @@ export declare namespace composer {
16707
16751
  */
16708
16752
  serviceAccount: string;
16709
16753
  /**
16710
- * The Compute Engine subnetwork to be used for machine communications, , specified as a self-link, relative resource name (e.g. "projects/{project}/regions/{region}/subnetworks/{subnetwork}"), or by name. If subnetwork is provided, network must also be provided and the subnetwork must belong to the enclosing environment's project and region.
16754
+ * The Compute Engine subnetwork to be used for machine communications, specified as a self-link, relative resource name (e.g. "projects/{project}/regions/{region}/subnetworks/{subnetwork}"), or by name. If subnetwork is provided, network must also be provided and the subnetwork must belong to the enclosing environment's project and region.
16711
16755
  */
16712
- subnetwork?: string;
16756
+ subnetwork: string;
16713
16757
  /**
16714
16758
  * The list of instance tags applied to all node VMs. Tags are used to identify valid sources or targets for network firewalls. Each tag within the list must comply with RFC1035. Cannot be updated.
16715
16759
  */
@@ -17126,6 +17170,10 @@ export declare namespace composer {
17126
17170
  * IPv4 cidr range that will be used by Composer internal components.
17127
17171
  */
17128
17172
  composerInternalIpv4CidrBlock: string;
17173
+ /**
17174
+ * PSC (Private Service Connect) Network entry point. Customers can pre-create the Network Attachment and point Cloud Composer environment to use. It is possible to share network attachment among many environments, provided enough IP addresses are available.
17175
+ */
17176
+ composerNetworkAttachment: string;
17129
17177
  /**
17130
17178
  * The disk size in GB used for node VMs. Minimum size is 20GB. If unspecified, defaults to 100GB. Cannot be updated. This field is supported for Cloud Composer environments in versions composer-1.*.*-airflow-*.*.*.
17131
17179
  */
@@ -17159,7 +17207,7 @@ export declare namespace composer {
17159
17207
  */
17160
17208
  serviceAccount: string;
17161
17209
  /**
17162
- * The Compute Engine subnetwork to be used for machine communications, , specified as a self-link, relative resource name (e.g. "projects/{project}/regions/{region}/subnetworks/{subnetwork}"), or by name. If subnetwork is provided, network must also be provided and the subnetwork must belong to the enclosing environment's project and region.
17210
+ * The Compute Engine subnetwork to be used for machine communications, specified as a self-link, relative resource name (e.g. "projects/{project}/regions/{region}/subnetworks/{subnetwork}"), or by name. If subnetwork is provided, network must also be provided and the subnetwork must belong to the enclosing environment's project and region.
17163
17211
  */
17164
17212
  subnetwork: string;
17165
17213
  /**
@@ -66821,12 +66869,24 @@ export declare namespace spanner {
66821
66869
  }
66822
66870
  interface DatabaseIAMBindingCondition {
66823
66871
  description?: string;
66872
+ /**
66873
+ * Textual representation of an expression in Common Expression Language syntax.
66874
+ */
66824
66875
  expression: string;
66876
+ /**
66877
+ * A title for the expression, i.e. a short string describing its purpose.
66878
+ */
66825
66879
  title: string;
66826
66880
  }
66827
66881
  interface DatabaseIAMMemberCondition {
66828
66882
  description?: string;
66883
+ /**
66884
+ * Textual representation of an expression in Common Expression Language syntax.
66885
+ */
66829
66886
  expression: string;
66887
+ /**
66888
+ * A title for the expression, i.e. a short string describing its purpose.
66889
+ */
66830
66890
  title: string;
66831
66891
  }
66832
66892
  interface GetInstanceAutoscalingConfig {