-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathmkdocs.yml
More file actions
167 lines (162 loc) · 6.51 KB
/
mkdocs.yml
File metadata and controls
167 lines (162 loc) · 6.51 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
site_name: fabric-cli
site_description: Microsoft Fabric CLI Documentation
site_url: https://micorosft.github.io/fabric-cli/
repo_name: microsoft/fabric-cli
repo_url: https://github.com/microsoft/fabric-cli
theme:
name: material
icon:
logo: fontawesome/solid/terminal
repo: fontawesome/brands/github
favicon: config/assets/icon.png
font:
text: Merriweather Sans
code: Red Hat Mono
features:
- navigation.expand
- navigation.indexes
- navigation.instant
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- navigation.path
- navigation.footer
- search.highlight
- search.suggest
- toc.follow
- content.tabs.link
- content.tooltips
- content.code.copy
- content.code.select
language: en
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/weather-night
name: Switch to dark mode
primary: teal
accent: teal
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/weather-sunny
name: Switch to light mode
primary: teal
accent: teal
extra:
version:
provider: mike
default: latest
alias: true
plugins:
- search:
separator: '[\s\u200b\-_,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])'
- section-index
nav:
- Home: index.md
- Essentials:
- Conceptual Hierarchy: essentials/hierarchy.md
- Resource Types: essentials/resource_types.md
- CLI Parameters: essentials/parameters.md
- CLI Input: essentials/input.md
- Output Format: essentials/output_format.md
- Modes: essentials/modes.md
- Settings: essentials/settings.md
- Environment Variables: essentials/env_vars.md
- Autocompletion: essentials/autocompletion.md
- File Storage: essentials/file_storage.md
- Caching: essentials/cache.md
- Exit Codes: essentials/exit_codes.md
- "Commands":
- commands/index.md
- acl: commands/acls/index.md
- api: commands/api/index.md
- assign: commands/fs/assign.md
- auth: commands/auth/index.md
- cd: commands/fs/cd.md
- config: commands/config/index.md
- cp (copy): commands/fs/cp.md
- deploy: commands/fs/deploy.md
- desc: commands/desc/index.md
- export: commands/fs/export.md
- exists: commands/fs/exists.md
- get: commands/fs/get.md
- import: commands/fs/import.md
- jobs: commands/jobs/index.md
- label: commands/labels/index.md
- ln (mklink): commands/fs/ln.md
- ls (dir): commands/fs/ls.md
- mkdir (create): commands/fs/mkdir.md
- mv (move): commands/fs/mv.md
- open: commands/fs/open.md
- pwd: commands/fs/pwd.md
- rm (del): commands/fs/rm.md
- set: commands/fs/set.md
- start: commands/fs/start.md
- stop: commands/fs/stop.md
- table: commands/tables/index.md
- unassign: commands/fs/unassign.md
- Usage Examples:
- examples/index.md
- Authentication & Configuration:
- Auth Examples: examples/auth_examples.md
- Config Examples: examples/config_examples.md
- Core Management:
- API Examples:
- examples/api_examples.md
- Example of semantic model refresh: examples/refresh_semantic_model_example.md
- ACL Examples: examples/acl_examples.md
- Describe Examples: examples/desc_examples.md
- Tenant Management:
- Capacity Examples: examples/capacity_examples.md
- Connection Examples: examples/connection_examples.md
- Domain Examples: examples/domain_examples.md
- Gateway Examples: examples/gateway_examples.md
- Workspace Management:
- External Data Shares: examples/externaldatashare_examples.md
- Folder Examples: examples/folder_examples.md
- Managed Identities: examples/managedidentity_examples.md
- Managed Private Endpoints: examples/managedprivateendpoint_examples.md
- Spark Pools: examples/sparkpool_examples.md
- Workspace Examples: examples/workspace_examples.md
- Item Management:
- Item Examples: examples/item_examples.md
- Job Examples: examples/job_examples.md
- Label Examples: examples/label_examples.md
- Data & Storage:
- OneLake Examples: examples/onelake_examples.md
- Shortcut Examples: examples/shortcut_examples.md
- Table Examples: examples/table_examples.md
- Troubleshooting: troubleshooting.md
- Release Notes: release-notes.md
markdown_extensions:
- abbr
- attr_list
- md_in_html
- admonition
- footnotes
- tables
- toc:
permalink: true
toc_depth: 3
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.mark
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
copyright: Copyright © Microsoft Corporation