forked from GoogleCloudPlatform/k8s-config-connector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbigquery_bigquerydataset.tmpl
65 lines (59 loc) · 1.88 KB
/
bigquery_bigquerydataset.tmpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{{template "headercomment.tmpl" .}}
{% extends "config-connector/_base.html" %}
{% block page_title %}{{ .Kind}}{% endblock %}
{% block body %}
{{template "alphadisclaimer.tmpl" .}}
{{template "bigquerydatasetiamnote.tmpl" .}}
Warning: You must specify the `spec.access[].role` field using the (legacy)
basic role format (e.g. `OWNER`) instead of the (newer) predefined role format
(`e.g. roles/bigquery.dataOwner`). The API accepts both formats, but it will
always return the basic format which results in {{"{{product_name_short}}"}}
repeatedly detecting drift and updating the {{.Kind}} resource. See a complete
list of basic roles with equivalent predefined roles at
<a href="/bigquery/docs/access-control-basic-roles#dataset-basic-roles">Basic roles for datasets</a>.
<table>
<thead>
<tr>
<th><strong>Property</strong></th>
<th><strong>Value</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td>{{"{{gcp_name_short}}"}} Service Name</td>
<td>BigQuery</td>
</tr>
<tr>
<td>{{"{{gcp_name_short}}"}} Service Documentation</td>
<td><a href="/bigquery/docs/">/bigquery/docs/</a></td>
</tr>
<tr>
<td>{{"{{gcp_name_short}}"}} REST Resource Name</td>
<td>bigquery/v2/datasets</td>
</tr>
<tr>
<td>{{"{{gcp_name_short}}"}} REST Resource Documentation</td>
<td><a href="/bigquery/docs/reference/rest/v2/datasets">/bigquery/docs/reference/rest/v2/datasets</a></td>
</tr>
<tr>
<td>{{"{{product_name_short}}"}} Resource Short Names</td>
<td>{{ .ShortNames}}</td>
</tr>
<tr>
<td>{{"{{product_name_short}}"}} Service Name</td>
<td>bigquery.googleapis.com</td>
</tr>
<tr>
<td>{{"{{product_name_short}}"}} Resource Fully Qualified Name</td>
<td>{{ .FullyQualifiedName}}</td>
</tr>
{{template "iamsupport.tmpl" .}}
<tr>
<td>{{"{{product_name_short}}"}} Default Average Reconcile Interval In Seconds</td>
<td>{{ .DefaultReconcileInterval}}</td>
</tr>
</tbody>
</table>
{{template "resource.tmpl" .}}
{{template "endnote.tmpl" .}}
{% endblock %}