@pulumi/gcp 6.51.0 → 6.52.0-alpha.1679450807

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.
@@ -116,7 +116,7 @@ import * as outputs from "../types/output";
116
116
  * });
117
117
  * const test_access = new gcp.accesscontextmanager.ServicePerimeter("test-access", {
118
118
  * parent: `accessPolicies/${google_access_context_manager_access_policy["test-access"].name}`,
119
- * title: `%s`,
119
+ * title: "%s",
120
120
  * perimeterType: "PERIMETER_TYPE_REGULAR",
121
121
  * status: {
122
122
  * restrictedServices: [
@@ -120,7 +120,7 @@ const utilities = require("../utilities");
120
120
  * });
121
121
  * const test_access = new gcp.accesscontextmanager.ServicePerimeter("test-access", {
122
122
  * parent: `accessPolicies/${google_access_context_manager_access_policy["test-access"].name}`,
123
- * title: `%s`,
123
+ * title: "%s",
124
124
  * perimeterType: "PERIMETER_TYPE_REGULAR",
125
125
  * status: {
126
126
  * restrictedServices: [
@@ -13,7 +13,7 @@ import * as outputs from "../types/output";
13
13
  *
14
14
  * const _default = new gcp.certificatemanager.DnsAuthorization("default", {
15
15
  * description: "The default dnss",
16
- * domain: `%{random_suffix}.hashicorptest.com`,
16
+ * domain: "%{random_suffix}.hashicorptest.com",
17
17
  * });
18
18
  * export const recordNameToInsert = {
19
19
  * "google_certificate_manager_dns_authorization.default.dns_resource_record.0.name": [{}],
@@ -17,7 +17,7 @@ const utilities = require("../utilities");
17
17
  *
18
18
  * const _default = new gcp.certificatemanager.DnsAuthorization("default", {
19
19
  * description: "The default dnss",
20
- * domain: `%{random_suffix}.hashicorptest.com`,
20
+ * domain: "%{random_suffix}.hashicorptest.com",
21
21
  * });
22
22
  * export const recordNameToInsert = {
23
23
  * "google_certificate_manager_dns_authorization.default.dns_resource_record.0.name": [{}],
@@ -76,7 +76,7 @@ import * as outputs from "../types/output";
76
76
  * name: "terraform-provider-google-beta",
77
77
  * owner: "hashicorp",
78
78
  * push: {
79
- * branch: `^main$`,
79
+ * branch: "^main$",
80
80
  * },
81
81
  * },
82
82
  * includeBuildLogs: "INCLUDE_BUILD_LOGS_WITH_STATUS",
@@ -108,7 +108,7 @@ import * as outputs from "../types/output";
108
108
  * repoType: "GITHUB",
109
109
  * },
110
110
  * substitutions: {
111
- * _ACTION: `$(body.message.data.action)`,
111
+ * _ACTION: "$(body.message.data.action)",
112
112
  * },
113
113
  * filter: "_ACTION.matches('INSERT')",
114
114
  * });
@@ -275,7 +275,7 @@ import * as outputs from "../types/output";
275
275
  * bitbucketServerConfigResource: "projects/123456789/locations/us-central1/bitbucketServerConfigs/myBitbucketConfig",
276
276
  * projectKey: "STAG",
277
277
  * pullRequest: {
278
- * branch: `^master$`,
278
+ * branch: "^master$",
279
279
  * commentControl: "COMMENTS_ENABLED",
280
280
  * invertRegex: false,
281
281
  * },
@@ -298,7 +298,7 @@ import * as outputs from "../types/output";
298
298
  * name: "terraform-provider-google",
299
299
  * owner: "hashicorp",
300
300
  * push: {
301
- * branch: `^main$`,
301
+ * branch: "^main$",
302
302
  * },
303
303
  * },
304
304
  * location: "us-central1",
@@ -80,7 +80,7 @@ const utilities = require("../utilities");
80
80
  * name: "terraform-provider-google-beta",
81
81
  * owner: "hashicorp",
82
82
  * push: {
83
- * branch: `^main$`,
83
+ * branch: "^main$",
84
84
  * },
85
85
  * },
86
86
  * includeBuildLogs: "INCLUDE_BUILD_LOGS_WITH_STATUS",
@@ -112,7 +112,7 @@ const utilities = require("../utilities");
112
112
  * repoType: "GITHUB",
113
113
  * },
114
114
  * substitutions: {
115
- * _ACTION: `$(body.message.data.action)`,
115
+ * _ACTION: "$(body.message.data.action)",
116
116
  * },
117
117
  * filter: "_ACTION.matches('INSERT')",
118
118
  * });
@@ -279,7 +279,7 @@ const utilities = require("../utilities");
279
279
  * bitbucketServerConfigResource: "projects/123456789/locations/us-central1/bitbucketServerConfigs/myBitbucketConfig",
280
280
  * projectKey: "STAG",
281
281
  * pullRequest: {
282
- * branch: `^master$`,
282
+ * branch: "^master$",
283
283
  * commentControl: "COMMENTS_ENABLED",
284
284
  * invertRegex: false,
285
285
  * },
@@ -302,7 +302,7 @@ const utilities = require("../utilities");
302
302
  * name: "terraform-provider-google",
303
303
  * owner: "hashicorp",
304
304
  * push: {
305
- * branch: `^main$`,
305
+ * branch: "^main$",
306
306
  * },
307
307
  * },
308
308
  * location: "us-central1",
@@ -153,6 +153,14 @@ export interface CallbackFunctionArgs {
153
153
  labels?: pulumi.Input<{
154
154
  [key: string]: any;
155
155
  }>;
156
+ /**
157
+ * MaxInstances sets limit on the maximum number of function instances that may coexist at a given time.
158
+ */
159
+ maxInstances?: pulumi.Input<number>;
160
+ /**
161
+ * MinInstances sets limit on minimum number of function instances that may coexist at a given time.
162
+ */
163
+ minInstances?: pulumi.Input<number>;
156
164
  /**
157
165
  * Location of the function. If it is not provided, the provider location is used.
158
166
  */
@@ -45,7 +45,7 @@ import * as outputs from "../types/output";
45
45
  * "desired_state": "INSTALLED",
46
46
  * "installSteps": [{
47
47
  * "scriptRun": {
48
- * "script": "#! /bin/bash\nZONE=$(curl --silent http://metadata.google.internal/computeMetadata/v1/instance/zone -H Metadata-Flavor:Google | cut -d/ -f4 )\nexport SERVICE_PROXY_AGENT_DIRECTORY=$(mktemp -d)\nsudo gsutil cp gs://gce-service-proxy-"$ZONE"/service-proxy-agent/releases/service-proxy-agent-0.2.tgz "$SERVICE_PROXY_AGENT_DIRECTORY" || sudo gsutil cp gs://gce-service-proxy/service-proxy-agent/releases/service-proxy-agent-0.2.tgz "$SERVICE_PROXY_AGENT_DIRECTORY"\nsudo tar -xzf "$SERVICE_PROXY_AGENT_DIRECTORY"/service-proxy-agent-0.2.tgz -C "$SERVICE_PROXY_AGENT_DIRECTORY"\n"$SERVICE_PROXY_AGENT_DIRECTORY"/service-proxy-agent/service-proxy-agent-bootstrap.sh"
48
+ * "script": "#! /bin/bash\\nZONE=$(curl --silent http://metadata.google.internal/computeMetadata/v1/instance/zone -H Metadata-Flavor:Google | cut -d/ -f4 )\\nexport SERVICE_PROXY_AGENT_DIRECTORY=$(mktemp -d)\\nsudo gsutil cp gs://gce-service-proxy-"$ZONE"/service-proxy-agent/releases/service-proxy-agent-0.2.tgz "$SERVICE_PROXY_AGENT_DIRECTORY" || sudo gsutil cp gs://gce-service-proxy/service-proxy-agent/releases/service-proxy-agent-0.2.tgz "$SERVICE_PROXY_AGENT_DIRECTORY"\\nsudo tar -xzf "$SERVICE_PROXY_AGENT_DIRECTORY"/service-proxy-agent-0.2.tgz -C "$SERVICE_PROXY_AGENT_DIRECTORY"\\n"$SERVICE_PROXY_AGENT_DIRECTORY"/service-proxy-agent/service-proxy-agent-bootstrap.sh"
49
49
  * }
50
50
  * }]
51
51
  * }]
@@ -49,7 +49,7 @@ const utilities = require("../utilities");
49
49
  * "desired_state": "INSTALLED",
50
50
  * "installSteps": [{
51
51
  * "scriptRun": {
52
- * "script": "#! /bin/bash\nZONE=$(curl --silent http://metadata.google.internal/computeMetadata/v1/instance/zone -H Metadata-Flavor:Google | cut -d/ -f4 )\nexport SERVICE_PROXY_AGENT_DIRECTORY=$(mktemp -d)\nsudo gsutil cp gs://gce-service-proxy-"$ZONE"/service-proxy-agent/releases/service-proxy-agent-0.2.tgz "$SERVICE_PROXY_AGENT_DIRECTORY" || sudo gsutil cp gs://gce-service-proxy/service-proxy-agent/releases/service-proxy-agent-0.2.tgz "$SERVICE_PROXY_AGENT_DIRECTORY"\nsudo tar -xzf "$SERVICE_PROXY_AGENT_DIRECTORY"/service-proxy-agent-0.2.tgz -C "$SERVICE_PROXY_AGENT_DIRECTORY"\n"$SERVICE_PROXY_AGENT_DIRECTORY"/service-proxy-agent/service-proxy-agent-bootstrap.sh"
52
+ * "script": "#! /bin/bash\\nZONE=$(curl --silent http://metadata.google.internal/computeMetadata/v1/instance/zone -H Metadata-Flavor:Google | cut -d/ -f4 )\\nexport SERVICE_PROXY_AGENT_DIRECTORY=$(mktemp -d)\\nsudo gsutil cp gs://gce-service-proxy-"$ZONE"/service-proxy-agent/releases/service-proxy-agent-0.2.tgz "$SERVICE_PROXY_AGENT_DIRECTORY" || sudo gsutil cp gs://gce-service-proxy/service-proxy-agent/releases/service-proxy-agent-0.2.tgz "$SERVICE_PROXY_AGENT_DIRECTORY"\\nsudo tar -xzf "$SERVICE_PROXY_AGENT_DIRECTORY"/service-proxy-agent-0.2.tgz -C "$SERVICE_PROXY_AGENT_DIRECTORY"\\n"$SERVICE_PROXY_AGENT_DIRECTORY"/service-proxy-agent/service-proxy-agent-bootstrap.sh"
53
53
  * }
54
54
  * }]
55
55
  * }]
@@ -67,7 +67,7 @@ import * as outputs from "../types/output";
67
67
  * }],
68
68
  * },
69
69
  * transitionRoutes: [{
70
- * condition: `$page.params.status = 'FINAL'`,
70
+ * condition: "$page.params.status = 'FINAL'",
71
71
  * triggerFulfillment: {
72
72
  * messages: [{
73
73
  * text: {
@@ -71,7 +71,7 @@ const utilities = require("../utilities");
71
71
  * }],
72
72
  * },
73
73
  * transitionRoutes: [{
74
- * condition: `$page.params.status = 'FINAL'`,
74
+ * condition: "$page.params.status = 'FINAL'",
75
75
  * triggerFulfillment: {
76
76
  * messages: [{
77
77
  * text: {
@@ -46,7 +46,7 @@ import * as pulumi from "@pulumi/pulumi";
46
46
  * "dataSets": [{
47
47
  * "timeSeriesQuery": {
48
48
  * "timeSeriesFilter": {
49
- * "filter": "metric.type=\"agent.googleapis.com/nginx/connections/accepted_count\"",
49
+ * "filter": "metric.type=\\"agent.googleapis.com/nginx/connections/accepted_count\\"",
50
50
  * "aggregation": {
51
51
  * "perSeriesAligner": "ALIGN_RATE"
52
52
  * }
@@ -74,7 +74,7 @@ import * as pulumi from "@pulumi/pulumi";
74
74
  * "dataSets": [{
75
75
  * "timeSeriesQuery": {
76
76
  * "timeSeriesFilter": {
77
- * "filter": "metric.type=\"agent.googleapis.com/nginx/connections/accepted_count\"",
77
+ * "filter": "metric.type=\\"agent.googleapis.com/nginx/connections/accepted_count\\"",
78
78
  * "aggregation": {
79
79
  * "perSeriesAligner": "ALIGN_RATE"
80
80
  * }
@@ -52,7 +52,7 @@ const utilities = require("../utilities");
52
52
  * "dataSets": [{
53
53
  * "timeSeriesQuery": {
54
54
  * "timeSeriesFilter": {
55
- * "filter": "metric.type=\"agent.googleapis.com/nginx/connections/accepted_count\"",
55
+ * "filter": "metric.type=\\"agent.googleapis.com/nginx/connections/accepted_count\\"",
56
56
  * "aggregation": {
57
57
  * "perSeriesAligner": "ALIGN_RATE"
58
58
  * }
@@ -80,7 +80,7 @@ const utilities = require("../utilities");
80
80
  * "dataSets": [{
81
81
  * "timeSeriesQuery": {
82
82
  * "timeSeriesFilter": {
83
- * "filter": "metric.type=\"agent.googleapis.com/nginx/connections/accepted_count\"",
83
+ * "filter": "metric.type=\\"agent.googleapis.com/nginx/connections/accepted_count\\"",
84
84
  * "aggregation": {
85
85
  * "perSeriesAligner": "ALIGN_RATE"
86
86
  * }
@@ -26,7 +26,7 @@ import * as outputs from "../types/output";
26
26
  * content: "\"example\"",
27
27
  * jsonPathMatcher: {
28
28
  * jsonMatcher: "EXACT_MATCH",
29
- * jsonPath: `$.path`,
29
+ * jsonPath: "$.path",
30
30
  * },
31
31
  * matcher: "MATCHES_JSON_PATH",
32
32
  * }],
@@ -60,7 +60,7 @@ import * as outputs from "../types/output";
60
60
  * content: "\"example\"",
61
61
  * jsonPathMatcher: {
62
62
  * jsonMatcher: "EXACT_MATCH",
63
- * jsonPath: `$.path`,
63
+ * jsonPath: "$.path",
64
64
  * },
65
65
  * matcher: "MATCHES_JSON_PATH",
66
66
  * }],
@@ -104,7 +104,7 @@ import * as outputs from "../types/output";
104
104
  * content: "example",
105
105
  * jsonPathMatcher: {
106
106
  * jsonMatcher: "REGEX_MATCH",
107
- * jsonPath: `$.path`,
107
+ * jsonPath: "$.path",
108
108
  * },
109
109
  * matcher: "MATCHES_JSON_PATH",
110
110
  * }],
@@ -30,7 +30,7 @@ const utilities = require("../utilities");
30
30
  * content: "\"example\"",
31
31
  * jsonPathMatcher: {
32
32
  * jsonMatcher: "EXACT_MATCH",
33
- * jsonPath: `$.path`,
33
+ * jsonPath: "$.path",
34
34
  * },
35
35
  * matcher: "MATCHES_JSON_PATH",
36
36
  * }],
@@ -64,7 +64,7 @@ const utilities = require("../utilities");
64
64
  * content: "\"example\"",
65
65
  * jsonPathMatcher: {
66
66
  * jsonMatcher: "EXACT_MATCH",
67
- * jsonPath: `$.path`,
67
+ * jsonPath: "$.path",
68
68
  * },
69
69
  * matcher: "MATCHES_JSON_PATH",
70
70
  * }],
@@ -108,7 +108,7 @@ const utilities = require("../utilities");
108
108
  * content: "example",
109
109
  * jsonPathMatcher: {
110
110
  * jsonMatcher: "REGEX_MATCH",
111
- * jsonPath: `$.path`,
111
+ * jsonPath: "$.path",
112
112
  * },
113
113
  * matcher: "MATCHES_JSON_PATH",
114
114
  * }],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/gcp",
3
- "version": "v6.51.0",
3
+ "version": "v6.52.0-alpha.1679450807+f3d083a4",
4
4
  "description": "A Pulumi package for creating and managing Google Cloud Platform resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -11,7 +11,7 @@
11
11
  "license": "Apache-2.0",
12
12
  "scripts": {
13
13
  "build": "tsc",
14
- "install": "node scripts/install-pulumi-plugin.js resource gcp v6.51.0"
14
+ "install": "node scripts/install-pulumi-plugin.js resource gcp v6.52.0-alpha.1679450807+f3d083a4"
15
15
  },
16
16
  "dependencies": {
17
17
  "@pulumi/pulumi": "^3.0.0",
package/package.json.dev CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/gcp",
3
- "version": "v6.51.0",
3
+ "version": "v6.52.0-alpha.1679450807+f3d083a4",
4
4
  "description": "A Pulumi package for creating and managing Google Cloud Platform resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -11,7 +11,7 @@
11
11
  "license": "Apache-2.0",
12
12
  "scripts": {
13
13
  "build": "tsc",
14
- "install": "node scripts/install-pulumi-plugin.js resource gcp v6.51.0"
14
+ "install": "node scripts/install-pulumi-plugin.js resource gcp v6.52.0-alpha.1679450807+f3d083a4"
15
15
  },
16
16
  "dependencies": {
17
17
  "@pulumi/pulumi": "^3.0.0",