pulumi-azure-native 2.48.0a1719256779__py3-none-any.whl → 2.48.0a1719571301__py3-none-any.whl
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.
Potentially problematic release.
This version of pulumi-azure-native might be problematic. Click here for more details.
- pulumi_azure_native/portal/_inputs.py +61 -202
- pulumi_azure_native/portal/outputs.py +51 -192
- pulumi_azure_native/pulumi-plugin.json +1 -1
- {pulumi_azure_native-2.48.0a1719256779.dist-info → pulumi_azure_native-2.48.0a1719571301.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.48.0a1719256779.dist-info → pulumi_azure_native-2.48.0a1719571301.dist-info}/RECORD +7 -7
- {pulumi_azure_native-2.48.0a1719256779.dist-info → pulumi_azure_native-2.48.0a1719571301.dist-info}/WHEEL +1 -1
- {pulumi_azure_native-2.48.0a1719256779.dist-info → pulumi_azure_native-2.48.0a1719571301.dist-info}/top_level.txt +0 -0
|
@@ -13,12 +13,9 @@ from ._enums import *
|
|
|
13
13
|
__all__ = [
|
|
14
14
|
'ConsoleCreatePropertiesArgs',
|
|
15
15
|
'DashboardLensArgs',
|
|
16
|
+
'DashboardPartMetadataArgs',
|
|
16
17
|
'DashboardPartsPositionArgs',
|
|
17
18
|
'DashboardPartsArgs',
|
|
18
|
-
'MarkdownPartMetadataContentArgs',
|
|
19
|
-
'MarkdownPartMetadataSettingsSettingsArgs',
|
|
20
|
-
'MarkdownPartMetadataSettingsArgs',
|
|
21
|
-
'MarkdownPartMetadataArgs',
|
|
22
19
|
'StorageProfileArgs',
|
|
23
20
|
'TerminalSettingsArgs',
|
|
24
21
|
'UserPropertiesArgs',
|
|
@@ -133,6 +130,61 @@ class DashboardLensArgs:
|
|
|
133
130
|
pulumi.set(self, "metadata", value)
|
|
134
131
|
|
|
135
132
|
|
|
133
|
+
@pulumi.input_type
|
|
134
|
+
class DashboardPartMetadataArgs:
|
|
135
|
+
def __init__(__self__, *,
|
|
136
|
+
type: pulumi.Input[str],
|
|
137
|
+
inputs: Optional[pulumi.Input[Sequence[Any]]] = None,
|
|
138
|
+
settings: Optional[pulumi.Input[Mapping[str, Any]]] = None):
|
|
139
|
+
"""
|
|
140
|
+
A dashboard part metadata.
|
|
141
|
+
:param pulumi.Input[str] type: The type of dashboard part.
|
|
142
|
+
:param pulumi.Input[Sequence[Any]] inputs: Inputs to dashboard part.
|
|
143
|
+
:param pulumi.Input[Mapping[str, Any]] settings: Settings of dashboard part.
|
|
144
|
+
"""
|
|
145
|
+
pulumi.set(__self__, "type", type)
|
|
146
|
+
if inputs is not None:
|
|
147
|
+
pulumi.set(__self__, "inputs", inputs)
|
|
148
|
+
if settings is not None:
|
|
149
|
+
pulumi.set(__self__, "settings", settings)
|
|
150
|
+
|
|
151
|
+
@property
|
|
152
|
+
@pulumi.getter
|
|
153
|
+
def type(self) -> pulumi.Input[str]:
|
|
154
|
+
"""
|
|
155
|
+
The type of dashboard part.
|
|
156
|
+
"""
|
|
157
|
+
return pulumi.get(self, "type")
|
|
158
|
+
|
|
159
|
+
@type.setter
|
|
160
|
+
def type(self, value: pulumi.Input[str]):
|
|
161
|
+
pulumi.set(self, "type", value)
|
|
162
|
+
|
|
163
|
+
@property
|
|
164
|
+
@pulumi.getter
|
|
165
|
+
def inputs(self) -> Optional[pulumi.Input[Sequence[Any]]]:
|
|
166
|
+
"""
|
|
167
|
+
Inputs to dashboard part.
|
|
168
|
+
"""
|
|
169
|
+
return pulumi.get(self, "inputs")
|
|
170
|
+
|
|
171
|
+
@inputs.setter
|
|
172
|
+
def inputs(self, value: Optional[pulumi.Input[Sequence[Any]]]):
|
|
173
|
+
pulumi.set(self, "inputs", value)
|
|
174
|
+
|
|
175
|
+
@property
|
|
176
|
+
@pulumi.getter
|
|
177
|
+
def settings(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
|
178
|
+
"""
|
|
179
|
+
Settings of dashboard part.
|
|
180
|
+
"""
|
|
181
|
+
return pulumi.get(self, "settings")
|
|
182
|
+
|
|
183
|
+
@settings.setter
|
|
184
|
+
def settings(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
|
185
|
+
pulumi.set(self, "settings", value)
|
|
186
|
+
|
|
187
|
+
|
|
136
188
|
@pulumi.input_type
|
|
137
189
|
class DashboardPartsPositionArgs:
|
|
138
190
|
def __init__(__self__, *,
|
|
@@ -221,11 +273,11 @@ class DashboardPartsPositionArgs:
|
|
|
221
273
|
class DashboardPartsArgs:
|
|
222
274
|
def __init__(__self__, *,
|
|
223
275
|
position: pulumi.Input['DashboardPartsPositionArgs'],
|
|
224
|
-
metadata: Optional[pulumi.Input['
|
|
276
|
+
metadata: Optional[pulumi.Input['DashboardPartMetadataArgs']] = None):
|
|
225
277
|
"""
|
|
226
278
|
A dashboard part.
|
|
227
279
|
:param pulumi.Input['DashboardPartsPositionArgs'] position: The dashboard's part position.
|
|
228
|
-
:param pulumi.Input['
|
|
280
|
+
:param pulumi.Input['DashboardPartMetadataArgs'] metadata: The dashboard's part metadata.
|
|
229
281
|
"""
|
|
230
282
|
pulumi.set(__self__, "position", position)
|
|
231
283
|
if metadata is not None:
|
|
@@ -245,210 +297,17 @@ class DashboardPartsArgs:
|
|
|
245
297
|
|
|
246
298
|
@property
|
|
247
299
|
@pulumi.getter
|
|
248
|
-
def metadata(self) -> Optional[pulumi.Input['
|
|
300
|
+
def metadata(self) -> Optional[pulumi.Input['DashboardPartMetadataArgs']]:
|
|
249
301
|
"""
|
|
250
|
-
The dashboard
|
|
302
|
+
The dashboard's part metadata.
|
|
251
303
|
"""
|
|
252
304
|
return pulumi.get(self, "metadata")
|
|
253
305
|
|
|
254
306
|
@metadata.setter
|
|
255
|
-
def metadata(self, value: Optional[pulumi.Input['
|
|
307
|
+
def metadata(self, value: Optional[pulumi.Input['DashboardPartMetadataArgs']]):
|
|
256
308
|
pulumi.set(self, "metadata", value)
|
|
257
309
|
|
|
258
310
|
|
|
259
|
-
@pulumi.input_type
|
|
260
|
-
class MarkdownPartMetadataContentArgs:
|
|
261
|
-
def __init__(__self__, *,
|
|
262
|
-
settings: Optional[pulumi.Input['MarkdownPartMetadataSettingsSettingsArgs']] = None):
|
|
263
|
-
"""
|
|
264
|
-
The content of markdown part.
|
|
265
|
-
:param pulumi.Input['MarkdownPartMetadataSettingsSettingsArgs'] settings: The setting of the content of markdown part.
|
|
266
|
-
"""
|
|
267
|
-
if settings is not None:
|
|
268
|
-
pulumi.set(__self__, "settings", settings)
|
|
269
|
-
|
|
270
|
-
@property
|
|
271
|
-
@pulumi.getter
|
|
272
|
-
def settings(self) -> Optional[pulumi.Input['MarkdownPartMetadataSettingsSettingsArgs']]:
|
|
273
|
-
"""
|
|
274
|
-
The setting of the content of markdown part.
|
|
275
|
-
"""
|
|
276
|
-
return pulumi.get(self, "settings")
|
|
277
|
-
|
|
278
|
-
@settings.setter
|
|
279
|
-
def settings(self, value: Optional[pulumi.Input['MarkdownPartMetadataSettingsSettingsArgs']]):
|
|
280
|
-
pulumi.set(self, "settings", value)
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
@pulumi.input_type
|
|
284
|
-
class MarkdownPartMetadataSettingsSettingsArgs:
|
|
285
|
-
def __init__(__self__, *,
|
|
286
|
-
content: Optional[pulumi.Input[str]] = None,
|
|
287
|
-
markdown_source: Optional[pulumi.Input[int]] = None,
|
|
288
|
-
markdown_uri: Optional[pulumi.Input[str]] = None,
|
|
289
|
-
subtitle: Optional[pulumi.Input[str]] = None,
|
|
290
|
-
title: Optional[pulumi.Input[str]] = None):
|
|
291
|
-
"""
|
|
292
|
-
The setting of the content of markdown part.
|
|
293
|
-
:param pulumi.Input[str] content: The content of the markdown part.
|
|
294
|
-
:param pulumi.Input[int] markdown_source: The source of the content of the markdown part.
|
|
295
|
-
:param pulumi.Input[str] markdown_uri: The uri of markdown content.
|
|
296
|
-
:param pulumi.Input[str] subtitle: The subtitle of the markdown part.
|
|
297
|
-
:param pulumi.Input[str] title: The title of the markdown part.
|
|
298
|
-
"""
|
|
299
|
-
if content is not None:
|
|
300
|
-
pulumi.set(__self__, "content", content)
|
|
301
|
-
if markdown_source is not None:
|
|
302
|
-
pulumi.set(__self__, "markdown_source", markdown_source)
|
|
303
|
-
if markdown_uri is not None:
|
|
304
|
-
pulumi.set(__self__, "markdown_uri", markdown_uri)
|
|
305
|
-
if subtitle is not None:
|
|
306
|
-
pulumi.set(__self__, "subtitle", subtitle)
|
|
307
|
-
if title is not None:
|
|
308
|
-
pulumi.set(__self__, "title", title)
|
|
309
|
-
|
|
310
|
-
@property
|
|
311
|
-
@pulumi.getter
|
|
312
|
-
def content(self) -> Optional[pulumi.Input[str]]:
|
|
313
|
-
"""
|
|
314
|
-
The content of the markdown part.
|
|
315
|
-
"""
|
|
316
|
-
return pulumi.get(self, "content")
|
|
317
|
-
|
|
318
|
-
@content.setter
|
|
319
|
-
def content(self, value: Optional[pulumi.Input[str]]):
|
|
320
|
-
pulumi.set(self, "content", value)
|
|
321
|
-
|
|
322
|
-
@property
|
|
323
|
-
@pulumi.getter(name="markdownSource")
|
|
324
|
-
def markdown_source(self) -> Optional[pulumi.Input[int]]:
|
|
325
|
-
"""
|
|
326
|
-
The source of the content of the markdown part.
|
|
327
|
-
"""
|
|
328
|
-
return pulumi.get(self, "markdown_source")
|
|
329
|
-
|
|
330
|
-
@markdown_source.setter
|
|
331
|
-
def markdown_source(self, value: Optional[pulumi.Input[int]]):
|
|
332
|
-
pulumi.set(self, "markdown_source", value)
|
|
333
|
-
|
|
334
|
-
@property
|
|
335
|
-
@pulumi.getter(name="markdownUri")
|
|
336
|
-
def markdown_uri(self) -> Optional[pulumi.Input[str]]:
|
|
337
|
-
"""
|
|
338
|
-
The uri of markdown content.
|
|
339
|
-
"""
|
|
340
|
-
return pulumi.get(self, "markdown_uri")
|
|
341
|
-
|
|
342
|
-
@markdown_uri.setter
|
|
343
|
-
def markdown_uri(self, value: Optional[pulumi.Input[str]]):
|
|
344
|
-
pulumi.set(self, "markdown_uri", value)
|
|
345
|
-
|
|
346
|
-
@property
|
|
347
|
-
@pulumi.getter
|
|
348
|
-
def subtitle(self) -> Optional[pulumi.Input[str]]:
|
|
349
|
-
"""
|
|
350
|
-
The subtitle of the markdown part.
|
|
351
|
-
"""
|
|
352
|
-
return pulumi.get(self, "subtitle")
|
|
353
|
-
|
|
354
|
-
@subtitle.setter
|
|
355
|
-
def subtitle(self, value: Optional[pulumi.Input[str]]):
|
|
356
|
-
pulumi.set(self, "subtitle", value)
|
|
357
|
-
|
|
358
|
-
@property
|
|
359
|
-
@pulumi.getter
|
|
360
|
-
def title(self) -> Optional[pulumi.Input[str]]:
|
|
361
|
-
"""
|
|
362
|
-
The title of the markdown part.
|
|
363
|
-
"""
|
|
364
|
-
return pulumi.get(self, "title")
|
|
365
|
-
|
|
366
|
-
@title.setter
|
|
367
|
-
def title(self, value: Optional[pulumi.Input[str]]):
|
|
368
|
-
pulumi.set(self, "title", value)
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
@pulumi.input_type
|
|
372
|
-
class MarkdownPartMetadataSettingsArgs:
|
|
373
|
-
def __init__(__self__, *,
|
|
374
|
-
content: Optional[pulumi.Input['MarkdownPartMetadataContentArgs']] = None):
|
|
375
|
-
"""
|
|
376
|
-
Markdown part settings.
|
|
377
|
-
:param pulumi.Input['MarkdownPartMetadataContentArgs'] content: The content of markdown part.
|
|
378
|
-
"""
|
|
379
|
-
if content is not None:
|
|
380
|
-
pulumi.set(__self__, "content", content)
|
|
381
|
-
|
|
382
|
-
@property
|
|
383
|
-
@pulumi.getter
|
|
384
|
-
def content(self) -> Optional[pulumi.Input['MarkdownPartMetadataContentArgs']]:
|
|
385
|
-
"""
|
|
386
|
-
The content of markdown part.
|
|
387
|
-
"""
|
|
388
|
-
return pulumi.get(self, "content")
|
|
389
|
-
|
|
390
|
-
@content.setter
|
|
391
|
-
def content(self, value: Optional[pulumi.Input['MarkdownPartMetadataContentArgs']]):
|
|
392
|
-
pulumi.set(self, "content", value)
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
@pulumi.input_type
|
|
396
|
-
class MarkdownPartMetadataArgs:
|
|
397
|
-
def __init__(__self__, *,
|
|
398
|
-
type: pulumi.Input[str],
|
|
399
|
-
inputs: Optional[pulumi.Input[Sequence[Any]]] = None,
|
|
400
|
-
settings: Optional[pulumi.Input['MarkdownPartMetadataSettingsArgs']] = None):
|
|
401
|
-
"""
|
|
402
|
-
Markdown part metadata.
|
|
403
|
-
:param pulumi.Input[str] type: The type of dashboard part.
|
|
404
|
-
Expected value is 'Extension/HubsExtension/PartType/MarkdownPart'.
|
|
405
|
-
:param pulumi.Input[Sequence[Any]] inputs: Input to dashboard part.
|
|
406
|
-
:param pulumi.Input['MarkdownPartMetadataSettingsArgs'] settings: Markdown part settings.
|
|
407
|
-
"""
|
|
408
|
-
pulumi.set(__self__, "type", 'Extension/HubsExtension/PartType/MarkdownPart')
|
|
409
|
-
if inputs is not None:
|
|
410
|
-
pulumi.set(__self__, "inputs", inputs)
|
|
411
|
-
if settings is not None:
|
|
412
|
-
pulumi.set(__self__, "settings", settings)
|
|
413
|
-
|
|
414
|
-
@property
|
|
415
|
-
@pulumi.getter
|
|
416
|
-
def type(self) -> pulumi.Input[str]:
|
|
417
|
-
"""
|
|
418
|
-
The type of dashboard part.
|
|
419
|
-
Expected value is 'Extension/HubsExtension/PartType/MarkdownPart'.
|
|
420
|
-
"""
|
|
421
|
-
return pulumi.get(self, "type")
|
|
422
|
-
|
|
423
|
-
@type.setter
|
|
424
|
-
def type(self, value: pulumi.Input[str]):
|
|
425
|
-
pulumi.set(self, "type", value)
|
|
426
|
-
|
|
427
|
-
@property
|
|
428
|
-
@pulumi.getter
|
|
429
|
-
def inputs(self) -> Optional[pulumi.Input[Sequence[Any]]]:
|
|
430
|
-
"""
|
|
431
|
-
Input to dashboard part.
|
|
432
|
-
"""
|
|
433
|
-
return pulumi.get(self, "inputs")
|
|
434
|
-
|
|
435
|
-
@inputs.setter
|
|
436
|
-
def inputs(self, value: Optional[pulumi.Input[Sequence[Any]]]):
|
|
437
|
-
pulumi.set(self, "inputs", value)
|
|
438
|
-
|
|
439
|
-
@property
|
|
440
|
-
@pulumi.getter
|
|
441
|
-
def settings(self) -> Optional[pulumi.Input['MarkdownPartMetadataSettingsArgs']]:
|
|
442
|
-
"""
|
|
443
|
-
Markdown part settings.
|
|
444
|
-
"""
|
|
445
|
-
return pulumi.get(self, "settings")
|
|
446
|
-
|
|
447
|
-
@settings.setter
|
|
448
|
-
def settings(self, value: Optional[pulumi.Input['MarkdownPartMetadataSettingsArgs']]):
|
|
449
|
-
pulumi.set(self, "settings", value)
|
|
450
|
-
|
|
451
|
-
|
|
452
311
|
@pulumi.input_type
|
|
453
312
|
class StorageProfileArgs:
|
|
454
313
|
def __init__(__self__, *,
|
|
@@ -14,12 +14,9 @@ from ._enums import *
|
|
|
14
14
|
__all__ = [
|
|
15
15
|
'ConsolePropertiesResponse',
|
|
16
16
|
'DashboardLensResponse',
|
|
17
|
+
'DashboardPartMetadataResponse',
|
|
17
18
|
'DashboardPartsResponse',
|
|
18
19
|
'DashboardPartsResponsePosition',
|
|
19
|
-
'MarkdownPartMetadataResponse',
|
|
20
|
-
'MarkdownPartMetadataResponseContent',
|
|
21
|
-
'MarkdownPartMetadataResponseSettings',
|
|
22
|
-
'MarkdownPartMetadataResponseSettingsSettings',
|
|
23
20
|
'StorageProfileResponse',
|
|
24
21
|
'TerminalSettingsResponse',
|
|
25
22
|
'UserPropertiesResponse',
|
|
@@ -134,6 +131,52 @@ class DashboardLensResponse(dict):
|
|
|
134
131
|
return pulumi.get(self, "metadata")
|
|
135
132
|
|
|
136
133
|
|
|
134
|
+
@pulumi.output_type
|
|
135
|
+
class DashboardPartMetadataResponse(dict):
|
|
136
|
+
"""
|
|
137
|
+
A dashboard part metadata.
|
|
138
|
+
"""
|
|
139
|
+
def __init__(__self__, *,
|
|
140
|
+
type: str,
|
|
141
|
+
inputs: Optional[Sequence[Any]] = None,
|
|
142
|
+
settings: Optional[Mapping[str, Any]] = None):
|
|
143
|
+
"""
|
|
144
|
+
A dashboard part metadata.
|
|
145
|
+
:param str type: The type of dashboard part.
|
|
146
|
+
:param Sequence[Any] inputs: Inputs to dashboard part.
|
|
147
|
+
:param Mapping[str, Any] settings: Settings of dashboard part.
|
|
148
|
+
"""
|
|
149
|
+
pulumi.set(__self__, "type", type)
|
|
150
|
+
if inputs is not None:
|
|
151
|
+
pulumi.set(__self__, "inputs", inputs)
|
|
152
|
+
if settings is not None:
|
|
153
|
+
pulumi.set(__self__, "settings", settings)
|
|
154
|
+
|
|
155
|
+
@property
|
|
156
|
+
@pulumi.getter
|
|
157
|
+
def type(self) -> str:
|
|
158
|
+
"""
|
|
159
|
+
The type of dashboard part.
|
|
160
|
+
"""
|
|
161
|
+
return pulumi.get(self, "type")
|
|
162
|
+
|
|
163
|
+
@property
|
|
164
|
+
@pulumi.getter
|
|
165
|
+
def inputs(self) -> Optional[Sequence[Any]]:
|
|
166
|
+
"""
|
|
167
|
+
Inputs to dashboard part.
|
|
168
|
+
"""
|
|
169
|
+
return pulumi.get(self, "inputs")
|
|
170
|
+
|
|
171
|
+
@property
|
|
172
|
+
@pulumi.getter
|
|
173
|
+
def settings(self) -> Optional[Mapping[str, Any]]:
|
|
174
|
+
"""
|
|
175
|
+
Settings of dashboard part.
|
|
176
|
+
"""
|
|
177
|
+
return pulumi.get(self, "settings")
|
|
178
|
+
|
|
179
|
+
|
|
137
180
|
@pulumi.output_type
|
|
138
181
|
class DashboardPartsResponse(dict):
|
|
139
182
|
"""
|
|
@@ -141,11 +184,11 @@ class DashboardPartsResponse(dict):
|
|
|
141
184
|
"""
|
|
142
185
|
def __init__(__self__, *,
|
|
143
186
|
position: 'outputs.DashboardPartsResponsePosition',
|
|
144
|
-
metadata: Optional['outputs.
|
|
187
|
+
metadata: Optional['outputs.DashboardPartMetadataResponse'] = None):
|
|
145
188
|
"""
|
|
146
189
|
A dashboard part.
|
|
147
190
|
:param 'DashboardPartsResponsePosition' position: The dashboard's part position.
|
|
148
|
-
:param '
|
|
191
|
+
:param 'DashboardPartMetadataResponse' metadata: The dashboard's part metadata.
|
|
149
192
|
"""
|
|
150
193
|
pulumi.set(__self__, "position", position)
|
|
151
194
|
if metadata is not None:
|
|
@@ -161,9 +204,9 @@ class DashboardPartsResponse(dict):
|
|
|
161
204
|
|
|
162
205
|
@property
|
|
163
206
|
@pulumi.getter
|
|
164
|
-
def metadata(self) -> Optional['outputs.
|
|
207
|
+
def metadata(self) -> Optional['outputs.DashboardPartMetadataResponse']:
|
|
165
208
|
"""
|
|
166
|
-
The dashboard
|
|
209
|
+
The dashboard's part metadata.
|
|
167
210
|
"""
|
|
168
211
|
return pulumi.get(self, "metadata")
|
|
169
212
|
|
|
@@ -254,190 +297,6 @@ class DashboardPartsResponsePosition(dict):
|
|
|
254
297
|
return pulumi.get(self, "metadata")
|
|
255
298
|
|
|
256
299
|
|
|
257
|
-
@pulumi.output_type
|
|
258
|
-
class MarkdownPartMetadataResponse(dict):
|
|
259
|
-
"""
|
|
260
|
-
Markdown part metadata.
|
|
261
|
-
"""
|
|
262
|
-
def __init__(__self__, *,
|
|
263
|
-
type: str,
|
|
264
|
-
inputs: Optional[Sequence[Any]] = None,
|
|
265
|
-
settings: Optional['outputs.MarkdownPartMetadataResponseSettings'] = None):
|
|
266
|
-
"""
|
|
267
|
-
Markdown part metadata.
|
|
268
|
-
:param str type: The type of dashboard part.
|
|
269
|
-
Expected value is 'Extension/HubsExtension/PartType/MarkdownPart'.
|
|
270
|
-
:param Sequence[Any] inputs: Input to dashboard part.
|
|
271
|
-
:param 'MarkdownPartMetadataResponseSettings' settings: Markdown part settings.
|
|
272
|
-
"""
|
|
273
|
-
pulumi.set(__self__, "type", 'Extension/HubsExtension/PartType/MarkdownPart')
|
|
274
|
-
if inputs is not None:
|
|
275
|
-
pulumi.set(__self__, "inputs", inputs)
|
|
276
|
-
if settings is not None:
|
|
277
|
-
pulumi.set(__self__, "settings", settings)
|
|
278
|
-
|
|
279
|
-
@property
|
|
280
|
-
@pulumi.getter
|
|
281
|
-
def type(self) -> str:
|
|
282
|
-
"""
|
|
283
|
-
The type of dashboard part.
|
|
284
|
-
Expected value is 'Extension/HubsExtension/PartType/MarkdownPart'.
|
|
285
|
-
"""
|
|
286
|
-
return pulumi.get(self, "type")
|
|
287
|
-
|
|
288
|
-
@property
|
|
289
|
-
@pulumi.getter
|
|
290
|
-
def inputs(self) -> Optional[Sequence[Any]]:
|
|
291
|
-
"""
|
|
292
|
-
Input to dashboard part.
|
|
293
|
-
"""
|
|
294
|
-
return pulumi.get(self, "inputs")
|
|
295
|
-
|
|
296
|
-
@property
|
|
297
|
-
@pulumi.getter
|
|
298
|
-
def settings(self) -> Optional['outputs.MarkdownPartMetadataResponseSettings']:
|
|
299
|
-
"""
|
|
300
|
-
Markdown part settings.
|
|
301
|
-
"""
|
|
302
|
-
return pulumi.get(self, "settings")
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
@pulumi.output_type
|
|
306
|
-
class MarkdownPartMetadataResponseContent(dict):
|
|
307
|
-
"""
|
|
308
|
-
The content of markdown part.
|
|
309
|
-
"""
|
|
310
|
-
def __init__(__self__, *,
|
|
311
|
-
settings: Optional['outputs.MarkdownPartMetadataResponseSettingsSettings'] = None):
|
|
312
|
-
"""
|
|
313
|
-
The content of markdown part.
|
|
314
|
-
:param 'MarkdownPartMetadataResponseSettingsSettings' settings: The setting of the content of markdown part.
|
|
315
|
-
"""
|
|
316
|
-
if settings is not None:
|
|
317
|
-
pulumi.set(__self__, "settings", settings)
|
|
318
|
-
|
|
319
|
-
@property
|
|
320
|
-
@pulumi.getter
|
|
321
|
-
def settings(self) -> Optional['outputs.MarkdownPartMetadataResponseSettingsSettings']:
|
|
322
|
-
"""
|
|
323
|
-
The setting of the content of markdown part.
|
|
324
|
-
"""
|
|
325
|
-
return pulumi.get(self, "settings")
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
@pulumi.output_type
|
|
329
|
-
class MarkdownPartMetadataResponseSettings(dict):
|
|
330
|
-
"""
|
|
331
|
-
Markdown part settings.
|
|
332
|
-
"""
|
|
333
|
-
def __init__(__self__, *,
|
|
334
|
-
content: Optional['outputs.MarkdownPartMetadataResponseContent'] = None):
|
|
335
|
-
"""
|
|
336
|
-
Markdown part settings.
|
|
337
|
-
:param 'MarkdownPartMetadataResponseContent' content: The content of markdown part.
|
|
338
|
-
"""
|
|
339
|
-
if content is not None:
|
|
340
|
-
pulumi.set(__self__, "content", content)
|
|
341
|
-
|
|
342
|
-
@property
|
|
343
|
-
@pulumi.getter
|
|
344
|
-
def content(self) -> Optional['outputs.MarkdownPartMetadataResponseContent']:
|
|
345
|
-
"""
|
|
346
|
-
The content of markdown part.
|
|
347
|
-
"""
|
|
348
|
-
return pulumi.get(self, "content")
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
@pulumi.output_type
|
|
352
|
-
class MarkdownPartMetadataResponseSettingsSettings(dict):
|
|
353
|
-
"""
|
|
354
|
-
The setting of the content of markdown part.
|
|
355
|
-
"""
|
|
356
|
-
@staticmethod
|
|
357
|
-
def __key_warning(key: str):
|
|
358
|
-
suggest = None
|
|
359
|
-
if key == "markdownSource":
|
|
360
|
-
suggest = "markdown_source"
|
|
361
|
-
elif key == "markdownUri":
|
|
362
|
-
suggest = "markdown_uri"
|
|
363
|
-
|
|
364
|
-
if suggest:
|
|
365
|
-
pulumi.log.warn(f"Key '{key}' not found in MarkdownPartMetadataResponseSettingsSettings. Access the value via the '{suggest}' property getter instead.")
|
|
366
|
-
|
|
367
|
-
def __getitem__(self, key: str) -> Any:
|
|
368
|
-
MarkdownPartMetadataResponseSettingsSettings.__key_warning(key)
|
|
369
|
-
return super().__getitem__(key)
|
|
370
|
-
|
|
371
|
-
def get(self, key: str, default = None) -> Any:
|
|
372
|
-
MarkdownPartMetadataResponseSettingsSettings.__key_warning(key)
|
|
373
|
-
return super().get(key, default)
|
|
374
|
-
|
|
375
|
-
def __init__(__self__, *,
|
|
376
|
-
content: Optional[str] = None,
|
|
377
|
-
markdown_source: Optional[int] = None,
|
|
378
|
-
markdown_uri: Optional[str] = None,
|
|
379
|
-
subtitle: Optional[str] = None,
|
|
380
|
-
title: Optional[str] = None):
|
|
381
|
-
"""
|
|
382
|
-
The setting of the content of markdown part.
|
|
383
|
-
:param str content: The content of the markdown part.
|
|
384
|
-
:param int markdown_source: The source of the content of the markdown part.
|
|
385
|
-
:param str markdown_uri: The uri of markdown content.
|
|
386
|
-
:param str subtitle: The subtitle of the markdown part.
|
|
387
|
-
:param str title: The title of the markdown part.
|
|
388
|
-
"""
|
|
389
|
-
if content is not None:
|
|
390
|
-
pulumi.set(__self__, "content", content)
|
|
391
|
-
if markdown_source is not None:
|
|
392
|
-
pulumi.set(__self__, "markdown_source", markdown_source)
|
|
393
|
-
if markdown_uri is not None:
|
|
394
|
-
pulumi.set(__self__, "markdown_uri", markdown_uri)
|
|
395
|
-
if subtitle is not None:
|
|
396
|
-
pulumi.set(__self__, "subtitle", subtitle)
|
|
397
|
-
if title is not None:
|
|
398
|
-
pulumi.set(__self__, "title", title)
|
|
399
|
-
|
|
400
|
-
@property
|
|
401
|
-
@pulumi.getter
|
|
402
|
-
def content(self) -> Optional[str]:
|
|
403
|
-
"""
|
|
404
|
-
The content of the markdown part.
|
|
405
|
-
"""
|
|
406
|
-
return pulumi.get(self, "content")
|
|
407
|
-
|
|
408
|
-
@property
|
|
409
|
-
@pulumi.getter(name="markdownSource")
|
|
410
|
-
def markdown_source(self) -> Optional[int]:
|
|
411
|
-
"""
|
|
412
|
-
The source of the content of the markdown part.
|
|
413
|
-
"""
|
|
414
|
-
return pulumi.get(self, "markdown_source")
|
|
415
|
-
|
|
416
|
-
@property
|
|
417
|
-
@pulumi.getter(name="markdownUri")
|
|
418
|
-
def markdown_uri(self) -> Optional[str]:
|
|
419
|
-
"""
|
|
420
|
-
The uri of markdown content.
|
|
421
|
-
"""
|
|
422
|
-
return pulumi.get(self, "markdown_uri")
|
|
423
|
-
|
|
424
|
-
@property
|
|
425
|
-
@pulumi.getter
|
|
426
|
-
def subtitle(self) -> Optional[str]:
|
|
427
|
-
"""
|
|
428
|
-
The subtitle of the markdown part.
|
|
429
|
-
"""
|
|
430
|
-
return pulumi.get(self, "subtitle")
|
|
431
|
-
|
|
432
|
-
@property
|
|
433
|
-
@pulumi.getter
|
|
434
|
-
def title(self) -> Optional[str]:
|
|
435
|
-
"""
|
|
436
|
-
The title of the markdown part.
|
|
437
|
-
"""
|
|
438
|
-
return pulumi.get(self, "title")
|
|
439
|
-
|
|
440
|
-
|
|
441
300
|
@pulumi.output_type
|
|
442
301
|
class StorageProfileResponse(dict):
|
|
443
302
|
"""
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
pulumi_azure_native/__init__.py,sha256=B4-MKtwHgRdW2IUbtQ9zq-z53Q3ttz91ByYzUpGruKY,932811
|
|
2
2
|
pulumi_azure_native/_utilities.py,sha256=7Zo4BHvs3g266AWXI6QT2MP4R2GjNy9InaK5RIBsZkY,10428
|
|
3
3
|
pulumi_azure_native/provider.py,sha256=LNUQF0if_Zo-PnKfRhLCMwTAj8sZScuh5SUu6m7_e3k,23122
|
|
4
|
-
pulumi_azure_native/pulumi-plugin.json,sha256=
|
|
4
|
+
pulumi_azure_native/pulumi-plugin.json,sha256=Bqo_om8jZqnTEAWpzbgPIwyDUblWfObAsLKj6eooj6E,89
|
|
5
5
|
pulumi_azure_native/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
6
|
pulumi_azure_native/aad/__init__.py,sha256=O2XPJyft-EiRyZdbKAbADw_hWhoH_Yn8KOwWpJprjs0,669
|
|
7
7
|
pulumi_azure_native/aad/_enums.py,sha256=nEE4b-gxeGR_DXhJA6WTIznl4AA5UmVTKpvu2PV66RE,3419
|
|
@@ -18154,7 +18154,7 @@ pulumi_azure_native/policyinsights/v20220901/get_attestation_at_subscription.py,
|
|
|
18154
18154
|
pulumi_azure_native/policyinsights/v20220901/outputs.py,sha256=iMjCFmVfMkgQF5cDLcfKFoS4S5aAR_hV1DWQbH-Jt48,6281
|
|
18155
18155
|
pulumi_azure_native/portal/__init__.py,sha256=ywzhYlhbI9hliVtm0MNFIdmixibZbsuf8HEszxIltIQ,1441
|
|
18156
18156
|
pulumi_azure_native/portal/_enums.py,sha256=m7DFUSzDgTzkkvKyKzrL4OVBcQAiP2ewAWc01wjJQeQ,1281
|
|
18157
|
-
pulumi_azure_native/portal/_inputs.py,sha256=
|
|
18157
|
+
pulumi_azure_native/portal/_inputs.py,sha256=oSQ9FkIbF13g2fa9WC7IaAtJpEQ6x5dPvBElV8E0KB4,17242
|
|
18158
18158
|
pulumi_azure_native/portal/console.py,sha256=LCSsf2fd3yU1WMHc6V0bYIGM3_ziaNqWbuNPzfnJW98,6105
|
|
18159
18159
|
pulumi_azure_native/portal/console_with_location.py,sha256=RF__OP8HH-HBYkU_bnefnqjUd_BFdqup6VIxDic6Cfw,5985
|
|
18160
18160
|
pulumi_azure_native/portal/dashboard.py,sha256=SvJAGK4AWJAM3-I8Fp4FojaVMq6M_5nH5XkuOYaExnc,11256
|
|
@@ -18165,7 +18165,7 @@ pulumi_azure_native/portal/get_tenant_configuration.py,sha256=nCx2ZC0I62qjm3DG7C
|
|
|
18165
18165
|
pulumi_azure_native/portal/get_user_settings.py,sha256=Inv0-UrFv-uDnlSm2i1sYqcXffw8ZSVYjrp792wl-io,2769
|
|
18166
18166
|
pulumi_azure_native/portal/get_user_settings_with_location.py,sha256=8uWbma2fjaeqFd9MI9XKAX5vx68f-S9q1XWtAPRK-UA,3286
|
|
18167
18167
|
pulumi_azure_native/portal/list_list_tenant_configuration_violation.py,sha256=N71eeeIAkdvuC4L4dk3NqLtk4EuG0ry_eFFWeZCLapg,2968
|
|
18168
|
-
pulumi_azure_native/portal/outputs.py,sha256=
|
|
18168
|
+
pulumi_azure_native/portal/outputs.py,sha256=lMOw8cFWSPGlZY9I1OzwxKpU1LcBP1E9R4pdG_NALBE,17545
|
|
18169
18169
|
pulumi_azure_native/portal/tenant_configuration.py,sha256=p3IaiBvMkHp0MWLhRxwCvWLkilgesRethauYzAPMOyE,7736
|
|
18170
18170
|
pulumi_azure_native/portal/user_settings.py,sha256=A6x5Uj1XFUvv6UG4Pg41h1zZRBO9oF8rYuI8w-G7rQc,6257
|
|
18171
18171
|
pulumi_azure_native/portal/user_settings_with_location.py,sha256=juheJq6U0G1hWAlvTBDr9AhOI7q0NDiRVwAZBWbsHmw,7295
|
|
@@ -24843,7 +24843,7 @@ pulumi_azure_native/workloads/v20231201preview/monitor.py,sha256=OORF03nS0M-nLlU
|
|
|
24843
24843
|
pulumi_azure_native/workloads/v20231201preview/outputs.py,sha256=6N3eYOCpRpSuOU_x3PuhnyrUk2J1bY-6gyRh0F8irHE,57664
|
|
24844
24844
|
pulumi_azure_native/workloads/v20231201preview/provider_instance.py,sha256=e9orRJXP8K7_wNydNFAQAnNJnTcZNhZRZnD1afOLzj0,12752
|
|
24845
24845
|
pulumi_azure_native/workloads/v20231201preview/sap_landscape_monitor.py,sha256=cL0RBnK0lPzvP_ZmWtnuXp7zOz3SFMhVSqyEZWFXNKc,11240
|
|
24846
|
-
pulumi_azure_native-2.48.
|
|
24847
|
-
pulumi_azure_native-2.48.
|
|
24848
|
-
pulumi_azure_native-2.48.
|
|
24849
|
-
pulumi_azure_native-2.48.
|
|
24846
|
+
pulumi_azure_native-2.48.0a1719571301.dist-info/METADATA,sha256=hMacVzVzQSIZdY-RsDE_d6dOGcqIjgmF6A-xxMElw4c,4138
|
|
24847
|
+
pulumi_azure_native-2.48.0a1719571301.dist-info/WHEEL,sha256=mguMlWGMX-VHnMpKOjjQidIo1ssRlCFu4a4mBpz1s2M,91
|
|
24848
|
+
pulumi_azure_native-2.48.0a1719571301.dist-info/top_level.txt,sha256=8Vl7910-df5jOZ9lvILrFhlMOEUrsaaX2dkztIt4Pkw,20
|
|
24849
|
+
pulumi_azure_native-2.48.0a1719571301.dist-info/RECORD,,
|
|
File without changes
|