@pulumi/gcp 8.35.0 → 8.36.0-alpha.1750252522
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/bigquery/appProfile.d.ts +7 -4
- package/bigquery/appProfile.js +11 -4
- package/bigquery/appProfile.js.map +1 -1
- package/bigtable/appProfile.d.ts +387 -0
- package/bigtable/appProfile.js +243 -0
- package/bigtable/appProfile.js.map +1 -0
- package/bigtable/index.d.ts +3 -0
- package/bigtable/index.js +6 -1
- package/bigtable/index.js.map +1 -1
- package/package.json +2 -2
- package/types/input.d.ts +25 -0
- package/types/output.d.ts +25 -0
package/bigquery/appProfile.d.ts
CHANGED
|
@@ -40,7 +40,7 @@ import * as outputs from "../types/output";
|
|
|
40
40
|
* ],
|
|
41
41
|
* deletionProtection: true,
|
|
42
42
|
* });
|
|
43
|
-
* const ap = new gcp.
|
|
43
|
+
* const ap = new gcp.bigtable.AppProfile("ap", {
|
|
44
44
|
* instance: instance.name,
|
|
45
45
|
* appProfileId: "bt-profile",
|
|
46
46
|
* multiClusterRoutingUseAny: true,
|
|
@@ -63,7 +63,7 @@ import * as outputs from "../types/output";
|
|
|
63
63
|
* }],
|
|
64
64
|
* deletionProtection: true,
|
|
65
65
|
* });
|
|
66
|
-
* const ap = new gcp.
|
|
66
|
+
* const ap = new gcp.bigtable.AppProfile("ap", {
|
|
67
67
|
* instance: instance.name,
|
|
68
68
|
* appProfileId: "bt-profile",
|
|
69
69
|
* singleClusterRouting: {
|
|
@@ -103,7 +103,7 @@ import * as outputs from "../types/output";
|
|
|
103
103
|
* ],
|
|
104
104
|
* deletionProtection: true,
|
|
105
105
|
* });
|
|
106
|
-
* const ap = new gcp.
|
|
106
|
+
* const ap = new gcp.bigtable.AppProfile("ap", {
|
|
107
107
|
* instance: instance.name,
|
|
108
108
|
* appProfileId: "bt-profile",
|
|
109
109
|
* multiClusterRoutingUseAny: true,
|
|
@@ -130,7 +130,7 @@ import * as outputs from "../types/output";
|
|
|
130
130
|
* }],
|
|
131
131
|
* deletionProtection: true,
|
|
132
132
|
* });
|
|
133
|
-
* const ap = new gcp.
|
|
133
|
+
* const ap = new gcp.bigtable.AppProfile("ap", {
|
|
134
134
|
* instance: instance.name,
|
|
135
135
|
* appProfileId: "bt-profile",
|
|
136
136
|
* singleClusterRouting: {
|
|
@@ -167,6 +167,8 @@ import * as outputs from "../types/output";
|
|
|
167
167
|
* ```sh
|
|
168
168
|
* $ pulumi import gcp:bigquery/appProfile:AppProfile default {{instance}}/{{app_profile_id}}
|
|
169
169
|
* ```
|
|
170
|
+
*
|
|
171
|
+
* @deprecated gcp.bigquery/appprofile.AppProfile has been deprecated in favor of gcp.bigtable/appprofile.AppProfile
|
|
170
172
|
*/
|
|
171
173
|
export declare class AppProfile extends pulumi.CustomResource {
|
|
172
174
|
/**
|
|
@@ -253,6 +255,7 @@ export declare class AppProfile extends pulumi.CustomResource {
|
|
|
253
255
|
* @param args The arguments to use to populate this resource's properties.
|
|
254
256
|
* @param opts A bag of options that control this resource's behavior.
|
|
255
257
|
*/
|
|
258
|
+
/** @deprecated gcp.bigquery/appprofile.AppProfile has been deprecated in favor of gcp.bigtable/appprofile.AppProfile */
|
|
256
259
|
constructor(name: string, args: AppProfileArgs, opts?: pulumi.CustomResourceOptions);
|
|
257
260
|
}
|
|
258
261
|
/**
|
package/bigquery/appProfile.js
CHANGED
|
@@ -44,7 +44,7 @@ const utilities = require("../utilities");
|
|
|
44
44
|
* ],
|
|
45
45
|
* deletionProtection: true,
|
|
46
46
|
* });
|
|
47
|
-
* const ap = new gcp.
|
|
47
|
+
* const ap = new gcp.bigtable.AppProfile("ap", {
|
|
48
48
|
* instance: instance.name,
|
|
49
49
|
* appProfileId: "bt-profile",
|
|
50
50
|
* multiClusterRoutingUseAny: true,
|
|
@@ -67,7 +67,7 @@ const utilities = require("../utilities");
|
|
|
67
67
|
* }],
|
|
68
68
|
* deletionProtection: true,
|
|
69
69
|
* });
|
|
70
|
-
* const ap = new gcp.
|
|
70
|
+
* const ap = new gcp.bigtable.AppProfile("ap", {
|
|
71
71
|
* instance: instance.name,
|
|
72
72
|
* appProfileId: "bt-profile",
|
|
73
73
|
* singleClusterRouting: {
|
|
@@ -107,7 +107,7 @@ const utilities = require("../utilities");
|
|
|
107
107
|
* ],
|
|
108
108
|
* deletionProtection: true,
|
|
109
109
|
* });
|
|
110
|
-
* const ap = new gcp.
|
|
110
|
+
* const ap = new gcp.bigtable.AppProfile("ap", {
|
|
111
111
|
* instance: instance.name,
|
|
112
112
|
* appProfileId: "bt-profile",
|
|
113
113
|
* multiClusterRoutingUseAny: true,
|
|
@@ -134,7 +134,7 @@ const utilities = require("../utilities");
|
|
|
134
134
|
* }],
|
|
135
135
|
* deletionProtection: true,
|
|
136
136
|
* });
|
|
137
|
-
* const ap = new gcp.
|
|
137
|
+
* const ap = new gcp.bigtable.AppProfile("ap", {
|
|
138
138
|
* instance: instance.name,
|
|
139
139
|
* appProfileId: "bt-profile",
|
|
140
140
|
* singleClusterRouting: {
|
|
@@ -171,6 +171,8 @@ const utilities = require("../utilities");
|
|
|
171
171
|
* ```sh
|
|
172
172
|
* $ pulumi import gcp:bigquery/appProfile:AppProfile default {{instance}}/{{app_profile_id}}
|
|
173
173
|
* ```
|
|
174
|
+
*
|
|
175
|
+
* @deprecated gcp.bigquery/appprofile.AppProfile has been deprecated in favor of gcp.bigtable/appprofile.AppProfile
|
|
174
176
|
*/
|
|
175
177
|
class AppProfile extends pulumi.CustomResource {
|
|
176
178
|
/**
|
|
@@ -183,6 +185,7 @@ class AppProfile extends pulumi.CustomResource {
|
|
|
183
185
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
184
186
|
*/
|
|
185
187
|
static get(name, id, state, opts) {
|
|
188
|
+
pulumi.log.warn("AppProfile is deprecated: gcp.bigquery/appprofile.AppProfile has been deprecated in favor of gcp.bigtable/appprofile.AppProfile");
|
|
186
189
|
return new AppProfile(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
187
190
|
}
|
|
188
191
|
/**
|
|
@@ -195,7 +198,9 @@ class AppProfile extends pulumi.CustomResource {
|
|
|
195
198
|
}
|
|
196
199
|
return obj['__pulumiType'] === AppProfile.__pulumiType;
|
|
197
200
|
}
|
|
201
|
+
/** @deprecated gcp.bigquery/appprofile.AppProfile has been deprecated in favor of gcp.bigtable/appprofile.AppProfile */
|
|
198
202
|
constructor(name, argsOrState, opts) {
|
|
203
|
+
pulumi.log.warn("AppProfile is deprecated: gcp.bigquery/appprofile.AppProfile has been deprecated in favor of gcp.bigtable/appprofile.AppProfile");
|
|
199
204
|
let resourceInputs = {};
|
|
200
205
|
opts = opts || {};
|
|
201
206
|
if (opts.id) {
|
|
@@ -232,6 +237,8 @@ class AppProfile extends pulumi.CustomResource {
|
|
|
232
237
|
resourceInputs["name"] = undefined /*out*/;
|
|
233
238
|
}
|
|
234
239
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
240
|
+
const aliasOpts = { aliases: [{ type: "gcp:bigquery/appProfile:AppProfile" }] };
|
|
241
|
+
opts = pulumi.mergeOptions(opts, aliasOpts);
|
|
235
242
|
super(AppProfile.__pulumiType, name, resourceInputs, opts);
|
|
236
243
|
}
|
|
237
244
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"appProfile.js","sourceRoot":"","sources":["../../bigquery/appProfile.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"appProfile.js","sourceRoot":"","sources":["../../bigquery/appProfile.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,387 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "../types/input";
|
|
3
|
+
import * as outputs from "../types/output";
|
|
4
|
+
/**
|
|
5
|
+
* App profile is a configuration object describing how Cloud Bigtable should treat traffic from a particular end user application.
|
|
6
|
+
*
|
|
7
|
+
* To get more information about AppProfile, see:
|
|
8
|
+
*
|
|
9
|
+
* * [API documentation](https://cloud.google.com/bigtable/docs/reference/admin/rest/v2/projects.instances.appProfiles)
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ### Bigtable App Profile Anycluster
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as gcp from "@pulumi/gcp";
|
|
18
|
+
*
|
|
19
|
+
* const instance = new gcp.bigtable.Instance("instance", {
|
|
20
|
+
* name: "bt-instance",
|
|
21
|
+
* clusters: [
|
|
22
|
+
* {
|
|
23
|
+
* clusterId: "cluster-1",
|
|
24
|
+
* zone: "us-central1-a",
|
|
25
|
+
* numNodes: 3,
|
|
26
|
+
* storageType: "HDD",
|
|
27
|
+
* },
|
|
28
|
+
* {
|
|
29
|
+
* clusterId: "cluster-2",
|
|
30
|
+
* zone: "us-central1-b",
|
|
31
|
+
* numNodes: 3,
|
|
32
|
+
* storageType: "HDD",
|
|
33
|
+
* },
|
|
34
|
+
* {
|
|
35
|
+
* clusterId: "cluster-3",
|
|
36
|
+
* zone: "us-central1-c",
|
|
37
|
+
* numNodes: 3,
|
|
38
|
+
* storageType: "HDD",
|
|
39
|
+
* },
|
|
40
|
+
* ],
|
|
41
|
+
* deletionProtection: true,
|
|
42
|
+
* });
|
|
43
|
+
* const ap = new gcp.bigtable.AppProfile("ap", {
|
|
44
|
+
* instance: instance.name,
|
|
45
|
+
* appProfileId: "bt-profile",
|
|
46
|
+
* multiClusterRoutingUseAny: true,
|
|
47
|
+
* ignoreWarnings: true,
|
|
48
|
+
* });
|
|
49
|
+
* ```
|
|
50
|
+
* ### Bigtable App Profile Singlecluster
|
|
51
|
+
*
|
|
52
|
+
* ```typescript
|
|
53
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
54
|
+
* import * as gcp from "@pulumi/gcp";
|
|
55
|
+
*
|
|
56
|
+
* const instance = new gcp.bigtable.Instance("instance", {
|
|
57
|
+
* name: "bt-instance",
|
|
58
|
+
* clusters: [{
|
|
59
|
+
* clusterId: "cluster-1",
|
|
60
|
+
* zone: "us-central1-b",
|
|
61
|
+
* numNodes: 3,
|
|
62
|
+
* storageType: "HDD",
|
|
63
|
+
* }],
|
|
64
|
+
* deletionProtection: true,
|
|
65
|
+
* });
|
|
66
|
+
* const ap = new gcp.bigtable.AppProfile("ap", {
|
|
67
|
+
* instance: instance.name,
|
|
68
|
+
* appProfileId: "bt-profile",
|
|
69
|
+
* singleClusterRouting: {
|
|
70
|
+
* clusterId: "cluster-1",
|
|
71
|
+
* allowTransactionalWrites: true,
|
|
72
|
+
* },
|
|
73
|
+
* ignoreWarnings: true,
|
|
74
|
+
* });
|
|
75
|
+
* ```
|
|
76
|
+
* ### Bigtable App Profile Multicluster
|
|
77
|
+
*
|
|
78
|
+
* ```typescript
|
|
79
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
80
|
+
* import * as gcp from "@pulumi/gcp";
|
|
81
|
+
*
|
|
82
|
+
* const instance = new gcp.bigtable.Instance("instance", {
|
|
83
|
+
* name: "bt-instance",
|
|
84
|
+
* clusters: [
|
|
85
|
+
* {
|
|
86
|
+
* clusterId: "cluster-1",
|
|
87
|
+
* zone: "us-central1-a",
|
|
88
|
+
* numNodes: 3,
|
|
89
|
+
* storageType: "HDD",
|
|
90
|
+
* },
|
|
91
|
+
* {
|
|
92
|
+
* clusterId: "cluster-2",
|
|
93
|
+
* zone: "us-central1-b",
|
|
94
|
+
* numNodes: 3,
|
|
95
|
+
* storageType: "HDD",
|
|
96
|
+
* },
|
|
97
|
+
* {
|
|
98
|
+
* clusterId: "cluster-3",
|
|
99
|
+
* zone: "us-central1-c",
|
|
100
|
+
* numNodes: 3,
|
|
101
|
+
* storageType: "HDD",
|
|
102
|
+
* },
|
|
103
|
+
* ],
|
|
104
|
+
* deletionProtection: true,
|
|
105
|
+
* });
|
|
106
|
+
* const ap = new gcp.bigtable.AppProfile("ap", {
|
|
107
|
+
* instance: instance.name,
|
|
108
|
+
* appProfileId: "bt-profile",
|
|
109
|
+
* multiClusterRoutingUseAny: true,
|
|
110
|
+
* multiClusterRoutingClusterIds: [
|
|
111
|
+
* "cluster-1",
|
|
112
|
+
* "cluster-2",
|
|
113
|
+
* ],
|
|
114
|
+
* ignoreWarnings: true,
|
|
115
|
+
* });
|
|
116
|
+
* ```
|
|
117
|
+
* ### Bigtable App Profile Priority
|
|
118
|
+
*
|
|
119
|
+
* ```typescript
|
|
120
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
121
|
+
* import * as gcp from "@pulumi/gcp";
|
|
122
|
+
*
|
|
123
|
+
* const instance = new gcp.bigtable.Instance("instance", {
|
|
124
|
+
* name: "bt-instance",
|
|
125
|
+
* clusters: [{
|
|
126
|
+
* clusterId: "cluster-1",
|
|
127
|
+
* zone: "us-central1-b",
|
|
128
|
+
* numNodes: 3,
|
|
129
|
+
* storageType: "HDD",
|
|
130
|
+
* }],
|
|
131
|
+
* deletionProtection: true,
|
|
132
|
+
* });
|
|
133
|
+
* const ap = new gcp.bigtable.AppProfile("ap", {
|
|
134
|
+
* instance: instance.name,
|
|
135
|
+
* appProfileId: "bt-profile",
|
|
136
|
+
* singleClusterRouting: {
|
|
137
|
+
* clusterId: "cluster-1",
|
|
138
|
+
* allowTransactionalWrites: true,
|
|
139
|
+
* },
|
|
140
|
+
* standardIsolation: {
|
|
141
|
+
* priority: "PRIORITY_LOW",
|
|
142
|
+
* },
|
|
143
|
+
* ignoreWarnings: true,
|
|
144
|
+
* });
|
|
145
|
+
* ```
|
|
146
|
+
*
|
|
147
|
+
* ## Import
|
|
148
|
+
*
|
|
149
|
+
* AppProfile can be imported using any of these accepted formats:
|
|
150
|
+
*
|
|
151
|
+
* * `projects/{{project}}/instances/{{instance}}/appProfiles/{{app_profile_id}}`
|
|
152
|
+
*
|
|
153
|
+
* * `{{project}}/{{instance}}/{{app_profile_id}}`
|
|
154
|
+
*
|
|
155
|
+
* * `{{instance}}/{{app_profile_id}}`
|
|
156
|
+
*
|
|
157
|
+
* When using the `pulumi import` command, AppProfile can be imported using one of the formats above. For example:
|
|
158
|
+
*
|
|
159
|
+
* ```sh
|
|
160
|
+
* $ pulumi import gcp:bigtable/appProfile:AppProfile default projects/{{project}}/instances/{{instance}}/appProfiles/{{app_profile_id}}
|
|
161
|
+
* ```
|
|
162
|
+
*
|
|
163
|
+
* ```sh
|
|
164
|
+
* $ pulumi import gcp:bigtable/appProfile:AppProfile default {{project}}/{{instance}}/{{app_profile_id}}
|
|
165
|
+
* ```
|
|
166
|
+
*
|
|
167
|
+
* ```sh
|
|
168
|
+
* $ pulumi import gcp:bigtable/appProfile:AppProfile default {{instance}}/{{app_profile_id}}
|
|
169
|
+
* ```
|
|
170
|
+
*/
|
|
171
|
+
export declare class AppProfile extends pulumi.CustomResource {
|
|
172
|
+
/**
|
|
173
|
+
* Get an existing AppProfile resource's state with the given name, ID, and optional extra
|
|
174
|
+
* properties used to qualify the lookup.
|
|
175
|
+
*
|
|
176
|
+
* @param name The _unique_ name of the resulting resource.
|
|
177
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
178
|
+
* @param state Any extra arguments used during the lookup.
|
|
179
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
180
|
+
*/
|
|
181
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AppProfileState, opts?: pulumi.CustomResourceOptions): AppProfile;
|
|
182
|
+
/**
|
|
183
|
+
* Returns true if the given object is an instance of AppProfile. This is designed to work even
|
|
184
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
185
|
+
*/
|
|
186
|
+
static isInstance(obj: any): obj is AppProfile;
|
|
187
|
+
/**
|
|
188
|
+
* The unique name of the app profile in the form `[_a-zA-Z0-9][-_.a-zA-Z0-9]*`.
|
|
189
|
+
*
|
|
190
|
+
*
|
|
191
|
+
* - - -
|
|
192
|
+
*/
|
|
193
|
+
readonly appProfileId: pulumi.Output<string>;
|
|
194
|
+
/**
|
|
195
|
+
* Specifies that this app profile is intended for read-only usage via the Data Boost feature.
|
|
196
|
+
* Structure is documented below.
|
|
197
|
+
*/
|
|
198
|
+
readonly dataBoostIsolationReadOnly: pulumi.Output<outputs.bigtable.AppProfileDataBoostIsolationReadOnly | undefined>;
|
|
199
|
+
/**
|
|
200
|
+
* Long form description of the use case for this app profile.
|
|
201
|
+
*/
|
|
202
|
+
readonly description: pulumi.Output<string | undefined>;
|
|
203
|
+
/**
|
|
204
|
+
* If true, ignore safety checks when deleting/updating the app profile.
|
|
205
|
+
*/
|
|
206
|
+
readonly ignoreWarnings: pulumi.Output<boolean | undefined>;
|
|
207
|
+
/**
|
|
208
|
+
* The name of the instance to create the app profile within.
|
|
209
|
+
*/
|
|
210
|
+
readonly instance: pulumi.Output<string | undefined>;
|
|
211
|
+
/**
|
|
212
|
+
* The set of clusters to route to. The order is ignored; clusters will be tried in order of distance. If left empty, all
|
|
213
|
+
* clusters are eligible.
|
|
214
|
+
*/
|
|
215
|
+
readonly multiClusterRoutingClusterIds: pulumi.Output<string[] | undefined>;
|
|
216
|
+
/**
|
|
217
|
+
* If true, read/write requests are routed to the nearest cluster in the instance, and will fail over to the nearest cluster that is available
|
|
218
|
+
* in the event of transient errors or delays. Clusters in a region are considered equidistant. Choosing this option sacrifices read-your-writes
|
|
219
|
+
* consistency to improve availability.
|
|
220
|
+
*/
|
|
221
|
+
readonly multiClusterRoutingUseAny: pulumi.Output<boolean | undefined>;
|
|
222
|
+
/**
|
|
223
|
+
* The unique name of the requested app profile. Values are of the form `projects/<project>/instances/<instance>/appProfiles/<appProfileId>`.
|
|
224
|
+
*/
|
|
225
|
+
readonly name: pulumi.Output<string>;
|
|
226
|
+
/**
|
|
227
|
+
* The ID of the project in which the resource belongs.
|
|
228
|
+
* If it is not provided, the provider project is used.
|
|
229
|
+
*/
|
|
230
|
+
readonly project: pulumi.Output<string>;
|
|
231
|
+
/**
|
|
232
|
+
* Must be used with multi-cluster routing. If true, then this app profile will use row affinity sticky routing. With row
|
|
233
|
+
* affinity, Bigtable will route single row key requests based on the row key, rather than randomly. Instead, each row key
|
|
234
|
+
* will be assigned to a cluster by Cloud Bigtable, and will stick to that cluster. Choosing this option improves
|
|
235
|
+
* read-your-writes consistency for most requests under most circumstances, without sacrificing availability. Consistency
|
|
236
|
+
* is not guaranteed, as requests may still fail over between clusters in the event of errors or latency.
|
|
237
|
+
*/
|
|
238
|
+
readonly rowAffinity: pulumi.Output<boolean | undefined>;
|
|
239
|
+
/**
|
|
240
|
+
* Use a single-cluster routing policy.
|
|
241
|
+
* Structure is documented below.
|
|
242
|
+
*/
|
|
243
|
+
readonly singleClusterRouting: pulumi.Output<outputs.bigtable.AppProfileSingleClusterRouting | undefined>;
|
|
244
|
+
/**
|
|
245
|
+
* The standard options used for isolating this app profile's traffic from other use cases.
|
|
246
|
+
* Structure is documented below.
|
|
247
|
+
*/
|
|
248
|
+
readonly standardIsolation: pulumi.Output<outputs.bigtable.AppProfileStandardIsolation>;
|
|
249
|
+
/**
|
|
250
|
+
* Create a AppProfile resource with the given unique name, arguments, and options.
|
|
251
|
+
*
|
|
252
|
+
* @param name The _unique_ name of the resource.
|
|
253
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
254
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
255
|
+
*/
|
|
256
|
+
constructor(name: string, args: AppProfileArgs, opts?: pulumi.CustomResourceOptions);
|
|
257
|
+
}
|
|
258
|
+
/**
|
|
259
|
+
* Input properties used for looking up and filtering AppProfile resources.
|
|
260
|
+
*/
|
|
261
|
+
export interface AppProfileState {
|
|
262
|
+
/**
|
|
263
|
+
* The unique name of the app profile in the form `[_a-zA-Z0-9][-_.a-zA-Z0-9]*`.
|
|
264
|
+
*
|
|
265
|
+
*
|
|
266
|
+
* - - -
|
|
267
|
+
*/
|
|
268
|
+
appProfileId?: pulumi.Input<string>;
|
|
269
|
+
/**
|
|
270
|
+
* Specifies that this app profile is intended for read-only usage via the Data Boost feature.
|
|
271
|
+
* Structure is documented below.
|
|
272
|
+
*/
|
|
273
|
+
dataBoostIsolationReadOnly?: pulumi.Input<inputs.bigtable.AppProfileDataBoostIsolationReadOnly>;
|
|
274
|
+
/**
|
|
275
|
+
* Long form description of the use case for this app profile.
|
|
276
|
+
*/
|
|
277
|
+
description?: pulumi.Input<string>;
|
|
278
|
+
/**
|
|
279
|
+
* If true, ignore safety checks when deleting/updating the app profile.
|
|
280
|
+
*/
|
|
281
|
+
ignoreWarnings?: pulumi.Input<boolean>;
|
|
282
|
+
/**
|
|
283
|
+
* The name of the instance to create the app profile within.
|
|
284
|
+
*/
|
|
285
|
+
instance?: pulumi.Input<string>;
|
|
286
|
+
/**
|
|
287
|
+
* The set of clusters to route to. The order is ignored; clusters will be tried in order of distance. If left empty, all
|
|
288
|
+
* clusters are eligible.
|
|
289
|
+
*/
|
|
290
|
+
multiClusterRoutingClusterIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
291
|
+
/**
|
|
292
|
+
* If true, read/write requests are routed to the nearest cluster in the instance, and will fail over to the nearest cluster that is available
|
|
293
|
+
* in the event of transient errors or delays. Clusters in a region are considered equidistant. Choosing this option sacrifices read-your-writes
|
|
294
|
+
* consistency to improve availability.
|
|
295
|
+
*/
|
|
296
|
+
multiClusterRoutingUseAny?: pulumi.Input<boolean>;
|
|
297
|
+
/**
|
|
298
|
+
* The unique name of the requested app profile. Values are of the form `projects/<project>/instances/<instance>/appProfiles/<appProfileId>`.
|
|
299
|
+
*/
|
|
300
|
+
name?: pulumi.Input<string>;
|
|
301
|
+
/**
|
|
302
|
+
* The ID of the project in which the resource belongs.
|
|
303
|
+
* If it is not provided, the provider project is used.
|
|
304
|
+
*/
|
|
305
|
+
project?: pulumi.Input<string>;
|
|
306
|
+
/**
|
|
307
|
+
* Must be used with multi-cluster routing. If true, then this app profile will use row affinity sticky routing. With row
|
|
308
|
+
* affinity, Bigtable will route single row key requests based on the row key, rather than randomly. Instead, each row key
|
|
309
|
+
* will be assigned to a cluster by Cloud Bigtable, and will stick to that cluster. Choosing this option improves
|
|
310
|
+
* read-your-writes consistency for most requests under most circumstances, without sacrificing availability. Consistency
|
|
311
|
+
* is not guaranteed, as requests may still fail over between clusters in the event of errors or latency.
|
|
312
|
+
*/
|
|
313
|
+
rowAffinity?: pulumi.Input<boolean>;
|
|
314
|
+
/**
|
|
315
|
+
* Use a single-cluster routing policy.
|
|
316
|
+
* Structure is documented below.
|
|
317
|
+
*/
|
|
318
|
+
singleClusterRouting?: pulumi.Input<inputs.bigtable.AppProfileSingleClusterRouting>;
|
|
319
|
+
/**
|
|
320
|
+
* The standard options used for isolating this app profile's traffic from other use cases.
|
|
321
|
+
* Structure is documented below.
|
|
322
|
+
*/
|
|
323
|
+
standardIsolation?: pulumi.Input<inputs.bigtable.AppProfileStandardIsolation>;
|
|
324
|
+
}
|
|
325
|
+
/**
|
|
326
|
+
* The set of arguments for constructing a AppProfile resource.
|
|
327
|
+
*/
|
|
328
|
+
export interface AppProfileArgs {
|
|
329
|
+
/**
|
|
330
|
+
* The unique name of the app profile in the form `[_a-zA-Z0-9][-_.a-zA-Z0-9]*`.
|
|
331
|
+
*
|
|
332
|
+
*
|
|
333
|
+
* - - -
|
|
334
|
+
*/
|
|
335
|
+
appProfileId: pulumi.Input<string>;
|
|
336
|
+
/**
|
|
337
|
+
* Specifies that this app profile is intended for read-only usage via the Data Boost feature.
|
|
338
|
+
* Structure is documented below.
|
|
339
|
+
*/
|
|
340
|
+
dataBoostIsolationReadOnly?: pulumi.Input<inputs.bigtable.AppProfileDataBoostIsolationReadOnly>;
|
|
341
|
+
/**
|
|
342
|
+
* Long form description of the use case for this app profile.
|
|
343
|
+
*/
|
|
344
|
+
description?: pulumi.Input<string>;
|
|
345
|
+
/**
|
|
346
|
+
* If true, ignore safety checks when deleting/updating the app profile.
|
|
347
|
+
*/
|
|
348
|
+
ignoreWarnings?: pulumi.Input<boolean>;
|
|
349
|
+
/**
|
|
350
|
+
* The name of the instance to create the app profile within.
|
|
351
|
+
*/
|
|
352
|
+
instance?: pulumi.Input<string>;
|
|
353
|
+
/**
|
|
354
|
+
* The set of clusters to route to. The order is ignored; clusters will be tried in order of distance. If left empty, all
|
|
355
|
+
* clusters are eligible.
|
|
356
|
+
*/
|
|
357
|
+
multiClusterRoutingClusterIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
358
|
+
/**
|
|
359
|
+
* If true, read/write requests are routed to the nearest cluster in the instance, and will fail over to the nearest cluster that is available
|
|
360
|
+
* in the event of transient errors or delays. Clusters in a region are considered equidistant. Choosing this option sacrifices read-your-writes
|
|
361
|
+
* consistency to improve availability.
|
|
362
|
+
*/
|
|
363
|
+
multiClusterRoutingUseAny?: pulumi.Input<boolean>;
|
|
364
|
+
/**
|
|
365
|
+
* The ID of the project in which the resource belongs.
|
|
366
|
+
* If it is not provided, the provider project is used.
|
|
367
|
+
*/
|
|
368
|
+
project?: pulumi.Input<string>;
|
|
369
|
+
/**
|
|
370
|
+
* Must be used with multi-cluster routing. If true, then this app profile will use row affinity sticky routing. With row
|
|
371
|
+
* affinity, Bigtable will route single row key requests based on the row key, rather than randomly. Instead, each row key
|
|
372
|
+
* will be assigned to a cluster by Cloud Bigtable, and will stick to that cluster. Choosing this option improves
|
|
373
|
+
* read-your-writes consistency for most requests under most circumstances, without sacrificing availability. Consistency
|
|
374
|
+
* is not guaranteed, as requests may still fail over between clusters in the event of errors or latency.
|
|
375
|
+
*/
|
|
376
|
+
rowAffinity?: pulumi.Input<boolean>;
|
|
377
|
+
/**
|
|
378
|
+
* Use a single-cluster routing policy.
|
|
379
|
+
* Structure is documented below.
|
|
380
|
+
*/
|
|
381
|
+
singleClusterRouting?: pulumi.Input<inputs.bigtable.AppProfileSingleClusterRouting>;
|
|
382
|
+
/**
|
|
383
|
+
* The standard options used for isolating this app profile's traffic from other use cases.
|
|
384
|
+
* Structure is documented below.
|
|
385
|
+
*/
|
|
386
|
+
standardIsolation?: pulumi.Input<inputs.bigtable.AppProfileStandardIsolation>;
|
|
387
|
+
}
|
|
@@ -0,0 +1,243 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
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.AppProfile = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* App profile is a configuration object describing how Cloud Bigtable should treat traffic from a particular end user application.
|
|
10
|
+
*
|
|
11
|
+
* To get more information about AppProfile, see:
|
|
12
|
+
*
|
|
13
|
+
* * [API documentation](https://cloud.google.com/bigtable/docs/reference/admin/rest/v2/projects.instances.appProfiles)
|
|
14
|
+
*
|
|
15
|
+
* ## Example Usage
|
|
16
|
+
*
|
|
17
|
+
* ### Bigtable App Profile Anycluster
|
|
18
|
+
*
|
|
19
|
+
* ```typescript
|
|
20
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
21
|
+
* import * as gcp from "@pulumi/gcp";
|
|
22
|
+
*
|
|
23
|
+
* const instance = new gcp.bigtable.Instance("instance", {
|
|
24
|
+
* name: "bt-instance",
|
|
25
|
+
* clusters: [
|
|
26
|
+
* {
|
|
27
|
+
* clusterId: "cluster-1",
|
|
28
|
+
* zone: "us-central1-a",
|
|
29
|
+
* numNodes: 3,
|
|
30
|
+
* storageType: "HDD",
|
|
31
|
+
* },
|
|
32
|
+
* {
|
|
33
|
+
* clusterId: "cluster-2",
|
|
34
|
+
* zone: "us-central1-b",
|
|
35
|
+
* numNodes: 3,
|
|
36
|
+
* storageType: "HDD",
|
|
37
|
+
* },
|
|
38
|
+
* {
|
|
39
|
+
* clusterId: "cluster-3",
|
|
40
|
+
* zone: "us-central1-c",
|
|
41
|
+
* numNodes: 3,
|
|
42
|
+
* storageType: "HDD",
|
|
43
|
+
* },
|
|
44
|
+
* ],
|
|
45
|
+
* deletionProtection: true,
|
|
46
|
+
* });
|
|
47
|
+
* const ap = new gcp.bigtable.AppProfile("ap", {
|
|
48
|
+
* instance: instance.name,
|
|
49
|
+
* appProfileId: "bt-profile",
|
|
50
|
+
* multiClusterRoutingUseAny: true,
|
|
51
|
+
* ignoreWarnings: true,
|
|
52
|
+
* });
|
|
53
|
+
* ```
|
|
54
|
+
* ### Bigtable App Profile Singlecluster
|
|
55
|
+
*
|
|
56
|
+
* ```typescript
|
|
57
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
58
|
+
* import * as gcp from "@pulumi/gcp";
|
|
59
|
+
*
|
|
60
|
+
* const instance = new gcp.bigtable.Instance("instance", {
|
|
61
|
+
* name: "bt-instance",
|
|
62
|
+
* clusters: [{
|
|
63
|
+
* clusterId: "cluster-1",
|
|
64
|
+
* zone: "us-central1-b",
|
|
65
|
+
* numNodes: 3,
|
|
66
|
+
* storageType: "HDD",
|
|
67
|
+
* }],
|
|
68
|
+
* deletionProtection: true,
|
|
69
|
+
* });
|
|
70
|
+
* const ap = new gcp.bigtable.AppProfile("ap", {
|
|
71
|
+
* instance: instance.name,
|
|
72
|
+
* appProfileId: "bt-profile",
|
|
73
|
+
* singleClusterRouting: {
|
|
74
|
+
* clusterId: "cluster-1",
|
|
75
|
+
* allowTransactionalWrites: true,
|
|
76
|
+
* },
|
|
77
|
+
* ignoreWarnings: true,
|
|
78
|
+
* });
|
|
79
|
+
* ```
|
|
80
|
+
* ### Bigtable App Profile Multicluster
|
|
81
|
+
*
|
|
82
|
+
* ```typescript
|
|
83
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
84
|
+
* import * as gcp from "@pulumi/gcp";
|
|
85
|
+
*
|
|
86
|
+
* const instance = new gcp.bigtable.Instance("instance", {
|
|
87
|
+
* name: "bt-instance",
|
|
88
|
+
* clusters: [
|
|
89
|
+
* {
|
|
90
|
+
* clusterId: "cluster-1",
|
|
91
|
+
* zone: "us-central1-a",
|
|
92
|
+
* numNodes: 3,
|
|
93
|
+
* storageType: "HDD",
|
|
94
|
+
* },
|
|
95
|
+
* {
|
|
96
|
+
* clusterId: "cluster-2",
|
|
97
|
+
* zone: "us-central1-b",
|
|
98
|
+
* numNodes: 3,
|
|
99
|
+
* storageType: "HDD",
|
|
100
|
+
* },
|
|
101
|
+
* {
|
|
102
|
+
* clusterId: "cluster-3",
|
|
103
|
+
* zone: "us-central1-c",
|
|
104
|
+
* numNodes: 3,
|
|
105
|
+
* storageType: "HDD",
|
|
106
|
+
* },
|
|
107
|
+
* ],
|
|
108
|
+
* deletionProtection: true,
|
|
109
|
+
* });
|
|
110
|
+
* const ap = new gcp.bigtable.AppProfile("ap", {
|
|
111
|
+
* instance: instance.name,
|
|
112
|
+
* appProfileId: "bt-profile",
|
|
113
|
+
* multiClusterRoutingUseAny: true,
|
|
114
|
+
* multiClusterRoutingClusterIds: [
|
|
115
|
+
* "cluster-1",
|
|
116
|
+
* "cluster-2",
|
|
117
|
+
* ],
|
|
118
|
+
* ignoreWarnings: true,
|
|
119
|
+
* });
|
|
120
|
+
* ```
|
|
121
|
+
* ### Bigtable App Profile Priority
|
|
122
|
+
*
|
|
123
|
+
* ```typescript
|
|
124
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
125
|
+
* import * as gcp from "@pulumi/gcp";
|
|
126
|
+
*
|
|
127
|
+
* const instance = new gcp.bigtable.Instance("instance", {
|
|
128
|
+
* name: "bt-instance",
|
|
129
|
+
* clusters: [{
|
|
130
|
+
* clusterId: "cluster-1",
|
|
131
|
+
* zone: "us-central1-b",
|
|
132
|
+
* numNodes: 3,
|
|
133
|
+
* storageType: "HDD",
|
|
134
|
+
* }],
|
|
135
|
+
* deletionProtection: true,
|
|
136
|
+
* });
|
|
137
|
+
* const ap = new gcp.bigtable.AppProfile("ap", {
|
|
138
|
+
* instance: instance.name,
|
|
139
|
+
* appProfileId: "bt-profile",
|
|
140
|
+
* singleClusterRouting: {
|
|
141
|
+
* clusterId: "cluster-1",
|
|
142
|
+
* allowTransactionalWrites: true,
|
|
143
|
+
* },
|
|
144
|
+
* standardIsolation: {
|
|
145
|
+
* priority: "PRIORITY_LOW",
|
|
146
|
+
* },
|
|
147
|
+
* ignoreWarnings: true,
|
|
148
|
+
* });
|
|
149
|
+
* ```
|
|
150
|
+
*
|
|
151
|
+
* ## Import
|
|
152
|
+
*
|
|
153
|
+
* AppProfile can be imported using any of these accepted formats:
|
|
154
|
+
*
|
|
155
|
+
* * `projects/{{project}}/instances/{{instance}}/appProfiles/{{app_profile_id}}`
|
|
156
|
+
*
|
|
157
|
+
* * `{{project}}/{{instance}}/{{app_profile_id}}`
|
|
158
|
+
*
|
|
159
|
+
* * `{{instance}}/{{app_profile_id}}`
|
|
160
|
+
*
|
|
161
|
+
* When using the `pulumi import` command, AppProfile can be imported using one of the formats above. For example:
|
|
162
|
+
*
|
|
163
|
+
* ```sh
|
|
164
|
+
* $ pulumi import gcp:bigtable/appProfile:AppProfile default projects/{{project}}/instances/{{instance}}/appProfiles/{{app_profile_id}}
|
|
165
|
+
* ```
|
|
166
|
+
*
|
|
167
|
+
* ```sh
|
|
168
|
+
* $ pulumi import gcp:bigtable/appProfile:AppProfile default {{project}}/{{instance}}/{{app_profile_id}}
|
|
169
|
+
* ```
|
|
170
|
+
*
|
|
171
|
+
* ```sh
|
|
172
|
+
* $ pulumi import gcp:bigtable/appProfile:AppProfile default {{instance}}/{{app_profile_id}}
|
|
173
|
+
* ```
|
|
174
|
+
*/
|
|
175
|
+
class AppProfile extends pulumi.CustomResource {
|
|
176
|
+
/**
|
|
177
|
+
* Get an existing AppProfile resource's state with the given name, ID, and optional extra
|
|
178
|
+
* properties used to qualify the lookup.
|
|
179
|
+
*
|
|
180
|
+
* @param name The _unique_ name of the resulting resource.
|
|
181
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
182
|
+
* @param state Any extra arguments used during the lookup.
|
|
183
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
184
|
+
*/
|
|
185
|
+
static get(name, id, state, opts) {
|
|
186
|
+
return new AppProfile(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
187
|
+
}
|
|
188
|
+
/**
|
|
189
|
+
* Returns true if the given object is an instance of AppProfile. This is designed to work even
|
|
190
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
191
|
+
*/
|
|
192
|
+
static isInstance(obj) {
|
|
193
|
+
if (obj === undefined || obj === null) {
|
|
194
|
+
return false;
|
|
195
|
+
}
|
|
196
|
+
return obj['__pulumiType'] === AppProfile.__pulumiType;
|
|
197
|
+
}
|
|
198
|
+
constructor(name, argsOrState, opts) {
|
|
199
|
+
let resourceInputs = {};
|
|
200
|
+
opts = opts || {};
|
|
201
|
+
if (opts.id) {
|
|
202
|
+
const state = argsOrState;
|
|
203
|
+
resourceInputs["appProfileId"] = state ? state.appProfileId : undefined;
|
|
204
|
+
resourceInputs["dataBoostIsolationReadOnly"] = state ? state.dataBoostIsolationReadOnly : undefined;
|
|
205
|
+
resourceInputs["description"] = state ? state.description : undefined;
|
|
206
|
+
resourceInputs["ignoreWarnings"] = state ? state.ignoreWarnings : undefined;
|
|
207
|
+
resourceInputs["instance"] = state ? state.instance : undefined;
|
|
208
|
+
resourceInputs["multiClusterRoutingClusterIds"] = state ? state.multiClusterRoutingClusterIds : undefined;
|
|
209
|
+
resourceInputs["multiClusterRoutingUseAny"] = state ? state.multiClusterRoutingUseAny : undefined;
|
|
210
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
211
|
+
resourceInputs["project"] = state ? state.project : undefined;
|
|
212
|
+
resourceInputs["rowAffinity"] = state ? state.rowAffinity : undefined;
|
|
213
|
+
resourceInputs["singleClusterRouting"] = state ? state.singleClusterRouting : undefined;
|
|
214
|
+
resourceInputs["standardIsolation"] = state ? state.standardIsolation : undefined;
|
|
215
|
+
}
|
|
216
|
+
else {
|
|
217
|
+
const args = argsOrState;
|
|
218
|
+
if ((!args || args.appProfileId === undefined) && !opts.urn) {
|
|
219
|
+
throw new Error("Missing required property 'appProfileId'");
|
|
220
|
+
}
|
|
221
|
+
resourceInputs["appProfileId"] = args ? args.appProfileId : undefined;
|
|
222
|
+
resourceInputs["dataBoostIsolationReadOnly"] = args ? args.dataBoostIsolationReadOnly : undefined;
|
|
223
|
+
resourceInputs["description"] = args ? args.description : undefined;
|
|
224
|
+
resourceInputs["ignoreWarnings"] = args ? args.ignoreWarnings : undefined;
|
|
225
|
+
resourceInputs["instance"] = args ? args.instance : undefined;
|
|
226
|
+
resourceInputs["multiClusterRoutingClusterIds"] = args ? args.multiClusterRoutingClusterIds : undefined;
|
|
227
|
+
resourceInputs["multiClusterRoutingUseAny"] = args ? args.multiClusterRoutingUseAny : undefined;
|
|
228
|
+
resourceInputs["project"] = args ? args.project : undefined;
|
|
229
|
+
resourceInputs["rowAffinity"] = args ? args.rowAffinity : undefined;
|
|
230
|
+
resourceInputs["singleClusterRouting"] = args ? args.singleClusterRouting : undefined;
|
|
231
|
+
resourceInputs["standardIsolation"] = args ? args.standardIsolation : undefined;
|
|
232
|
+
resourceInputs["name"] = undefined /*out*/;
|
|
233
|
+
}
|
|
234
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
235
|
+
const aliasOpts = { aliases: [{ type: "gcp:bigquery/appProfile:AppProfile" }] };
|
|
236
|
+
opts = pulumi.mergeOptions(opts, aliasOpts);
|
|
237
|
+
super(AppProfile.__pulumiType, name, resourceInputs, opts);
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
exports.AppProfile = AppProfile;
|
|
241
|
+
/** @internal */
|
|
242
|
+
AppProfile.__pulumiType = 'gcp:bigtable/appProfile:AppProfile';
|
|
243
|
+
//# sourceMappingURL=appProfile.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"appProfile.js","sourceRoot":"","sources":["../../bigtable/appProfile.ts"],"names":[],"mappings":"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"}
|
package/bigtable/index.d.ts
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
export { AppProfileArgs, AppProfileState } from "./appProfile";
|
|
2
|
+
export type AppProfile = import("./appProfile").AppProfile;
|
|
3
|
+
export declare const AppProfile: typeof import("./appProfile").AppProfile;
|
|
1
4
|
export { AuthorizedViewArgs, AuthorizedViewState } from "./authorizedView";
|
|
2
5
|
export type AuthorizedView = import("./authorizedView").AuthorizedView;
|
|
3
6
|
export declare const AuthorizedView: typeof import("./authorizedView").AuthorizedView;
|
package/bigtable/index.js
CHANGED
|
@@ -2,9 +2,11 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
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.TableIamPolicy = exports.TableIamMember = exports.TableIamBinding = exports.Table = exports.MaterializedView = exports.LogicalView = exports.InstanceIamPolicy = exports.InstanceIamMember = exports.InstanceIamBinding = exports.Instance = exports.getTableIamPolicyOutput = exports.getTableIamPolicy = exports.getInstanceIamPolicyOutput = exports.getInstanceIamPolicy = exports.GCPolicy = exports.AuthorizedView = void 0;
|
|
5
|
+
exports.TableIamPolicy = exports.TableIamMember = exports.TableIamBinding = exports.Table = exports.MaterializedView = exports.LogicalView = exports.InstanceIamPolicy = exports.InstanceIamMember = exports.InstanceIamBinding = exports.Instance = exports.getTableIamPolicyOutput = exports.getTableIamPolicy = exports.getInstanceIamPolicyOutput = exports.getInstanceIamPolicy = exports.GCPolicy = exports.AuthorizedView = exports.AppProfile = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
|
+
exports.AppProfile = null;
|
|
9
|
+
utilities.lazyLoad(exports, ["AppProfile"], () => require("./appProfile"));
|
|
8
10
|
exports.AuthorizedView = null;
|
|
9
11
|
utilities.lazyLoad(exports, ["AuthorizedView"], () => require("./authorizedView"));
|
|
10
12
|
exports.GCPolicy = null;
|
|
@@ -39,6 +41,8 @@ const _module = {
|
|
|
39
41
|
version: utilities.getVersion(),
|
|
40
42
|
construct: (name, type, urn) => {
|
|
41
43
|
switch (type) {
|
|
44
|
+
case "gcp:bigtable/appProfile:AppProfile":
|
|
45
|
+
return new exports.AppProfile(name, undefined, { urn });
|
|
42
46
|
case "gcp:bigtable/authorizedView:AuthorizedView":
|
|
43
47
|
return new exports.AuthorizedView(name, undefined, { urn });
|
|
44
48
|
case "gcp:bigtable/gCPolicy:GCPolicy":
|
|
@@ -68,6 +72,7 @@ const _module = {
|
|
|
68
72
|
}
|
|
69
73
|
},
|
|
70
74
|
};
|
|
75
|
+
pulumi.runtime.registerResourceModule("gcp", "bigtable/appProfile", _module);
|
|
71
76
|
pulumi.runtime.registerResourceModule("gcp", "bigtable/authorizedView", _module);
|
|
72
77
|
pulumi.runtime.registerResourceModule("gcp", "bigtable/gCPolicy", _module);
|
|
73
78
|
pulumi.runtime.registerResourceModule("gcp", "bigtable/instance", _module);
|
package/bigtable/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../bigtable/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../bigtable/index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/gcp",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.36.0-alpha.1750252522",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Google Cloud Platform resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -27,6 +27,6 @@
|
|
|
27
27
|
"pulumi": {
|
|
28
28
|
"resource": true,
|
|
29
29
|
"name": "gcp",
|
|
30
|
-
"version": "8.
|
|
30
|
+
"version": "8.36.0-alpha.1750252522"
|
|
31
31
|
}
|
|
32
32
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -7469,6 +7469,31 @@ export declare namespace bigquerydatapolicy {
|
|
|
7469
7469
|
}
|
|
7470
7470
|
}
|
|
7471
7471
|
export declare namespace bigtable {
|
|
7472
|
+
interface AppProfileDataBoostIsolationReadOnly {
|
|
7473
|
+
/**
|
|
7474
|
+
* The Compute Billing Owner for this Data Boost App Profile.
|
|
7475
|
+
* Possible values are: `HOST_PAYS`.
|
|
7476
|
+
*/
|
|
7477
|
+
computeBillingOwner: pulumi.Input<string>;
|
|
7478
|
+
}
|
|
7479
|
+
interface AppProfileSingleClusterRouting {
|
|
7480
|
+
/**
|
|
7481
|
+
* If true, CheckAndMutateRow and ReadModifyWriteRow requests are allowed by this app profile.
|
|
7482
|
+
* It is unsafe to send these requests to the same table/row/column in multiple clusters.
|
|
7483
|
+
*/
|
|
7484
|
+
allowTransactionalWrites?: pulumi.Input<boolean>;
|
|
7485
|
+
/**
|
|
7486
|
+
* The cluster to which read/write requests should be routed.
|
|
7487
|
+
*/
|
|
7488
|
+
clusterId: pulumi.Input<string>;
|
|
7489
|
+
}
|
|
7490
|
+
interface AppProfileStandardIsolation {
|
|
7491
|
+
/**
|
|
7492
|
+
* The priority of requests sent using this app profile.
|
|
7493
|
+
* Possible values are: `PRIORITY_LOW`, `PRIORITY_MEDIUM`, `PRIORITY_HIGH`.
|
|
7494
|
+
*/
|
|
7495
|
+
priority: pulumi.Input<string>;
|
|
7496
|
+
}
|
|
7472
7497
|
interface AuthorizedViewSubsetView {
|
|
7473
7498
|
/**
|
|
7474
7499
|
* A group of column family subsets to be included in the authorized view. This can be specified multiple times. Structure is documented below.
|
package/types/output.d.ts
CHANGED
|
@@ -9371,6 +9371,31 @@ export declare namespace bigquerydatapolicy {
|
|
|
9371
9371
|
}
|
|
9372
9372
|
}
|
|
9373
9373
|
export declare namespace bigtable {
|
|
9374
|
+
interface AppProfileDataBoostIsolationReadOnly {
|
|
9375
|
+
/**
|
|
9376
|
+
* The Compute Billing Owner for this Data Boost App Profile.
|
|
9377
|
+
* Possible values are: `HOST_PAYS`.
|
|
9378
|
+
*/
|
|
9379
|
+
computeBillingOwner: string;
|
|
9380
|
+
}
|
|
9381
|
+
interface AppProfileSingleClusterRouting {
|
|
9382
|
+
/**
|
|
9383
|
+
* If true, CheckAndMutateRow and ReadModifyWriteRow requests are allowed by this app profile.
|
|
9384
|
+
* It is unsafe to send these requests to the same table/row/column in multiple clusters.
|
|
9385
|
+
*/
|
|
9386
|
+
allowTransactionalWrites?: boolean;
|
|
9387
|
+
/**
|
|
9388
|
+
* The cluster to which read/write requests should be routed.
|
|
9389
|
+
*/
|
|
9390
|
+
clusterId: string;
|
|
9391
|
+
}
|
|
9392
|
+
interface AppProfileStandardIsolation {
|
|
9393
|
+
/**
|
|
9394
|
+
* The priority of requests sent using this app profile.
|
|
9395
|
+
* Possible values are: `PRIORITY_LOW`, `PRIORITY_MEDIUM`, `PRIORITY_HIGH`.
|
|
9396
|
+
*/
|
|
9397
|
+
priority: string;
|
|
9398
|
+
}
|
|
9374
9399
|
interface AuthorizedViewSubsetView {
|
|
9375
9400
|
/**
|
|
9376
9401
|
* A group of column family subsets to be included in the authorized view. This can be specified multiple times. Structure is documented below.
|