pulumi-snowflake 0.62.0__py3-none-any.whl → 0.62.0a1731738646__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-snowflake might be problematic. Click here for more details.

Files changed (49) hide show
  1. pulumi_snowflake/__init__.py +0 -1
  2. pulumi_snowflake/_inputs.py +588 -6620
  3. pulumi_snowflake/account_role.py +7 -7
  4. pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +7 -7
  5. pulumi_snowflake/api_authentication_integration_with_client_credentials.py +7 -7
  6. pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +7 -7
  7. pulumi_snowflake/authentication_policy.py +21 -21
  8. pulumi_snowflake/database.py +7 -7
  9. pulumi_snowflake/database_role.py +14 -14
  10. pulumi_snowflake/external_oauth_integration.py +7 -7
  11. pulumi_snowflake/external_volume.py +7 -7
  12. pulumi_snowflake/get_tasks.py +56 -125
  13. pulumi_snowflake/legacy_service_user.py +7 -7
  14. pulumi_snowflake/masking_policy.py +21 -21
  15. pulumi_snowflake/network_policy.py +7 -7
  16. pulumi_snowflake/oauth_integration_for_custom_clients.py +7 -7
  17. pulumi_snowflake/oauth_integration_for_partner_applications.py +7 -7
  18. pulumi_snowflake/outputs.py +5301 -12188
  19. pulumi_snowflake/password_policy.py +4 -2
  20. pulumi_snowflake/primary_connection.py +7 -7
  21. pulumi_snowflake/pulumi-plugin.json +1 -1
  22. pulumi_snowflake/resource_monitor.py +7 -7
  23. pulumi_snowflake/role.py +7 -7
  24. pulumi_snowflake/row_access_policy.py +21 -21
  25. pulumi_snowflake/saml2_integration.py +7 -7
  26. pulumi_snowflake/scim_integration.py +7 -7
  27. pulumi_snowflake/secondary_connection.py +7 -7
  28. pulumi_snowflake/secondary_database.py +7 -7
  29. pulumi_snowflake/secret_with_authorization_code_grant.py +21 -21
  30. pulumi_snowflake/secret_with_basic_authentication.py +21 -21
  31. pulumi_snowflake/secret_with_client_credentials.py +21 -21
  32. pulumi_snowflake/secret_with_generic_string.py +21 -21
  33. pulumi_snowflake/service_user.py +7 -7
  34. pulumi_snowflake/shared_database.py +7 -7
  35. pulumi_snowflake/storage_integration.py +0 -13
  36. pulumi_snowflake/stream_on_directory_table.py +28 -28
  37. pulumi_snowflake/stream_on_external_table.py +28 -28
  38. pulumi_snowflake/stream_on_table.py +28 -28
  39. pulumi_snowflake/stream_on_view.py +28 -28
  40. pulumi_snowflake/tag.py +36 -109
  41. pulumi_snowflake/task.py +319 -3010
  42. pulumi_snowflake/user.py +7 -7
  43. pulumi_snowflake/view.py +21 -21
  44. pulumi_snowflake/warehouse.py +7 -7
  45. {pulumi_snowflake-0.62.0.dist-info → pulumi_snowflake-0.62.0a1731738646.dist-info}/METADATA +5 -5
  46. {pulumi_snowflake-0.62.0.dist-info → pulumi_snowflake-0.62.0a1731738646.dist-info}/RECORD +48 -49
  47. {pulumi_snowflake-0.62.0.dist-info → pulumi_snowflake-0.62.0a1731738646.dist-info}/WHEEL +1 -1
  48. pulumi_snowflake/get_tags.py +0 -134
  49. {pulumi_snowflake-0.62.0.dist-info → pulumi_snowflake-0.62.0a1731738646.dist-info}/top_level.txt +0 -0
@@ -1,134 +0,0 @@
1
- # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
- # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
-
5
- import copy
6
- import warnings
7
- import sys
8
- import pulumi
9
- import pulumi.runtime
10
- from typing import Any, Mapping, Optional, Sequence, Union, overload
11
- if sys.version_info >= (3, 11):
12
- from typing import NotRequired, TypedDict, TypeAlias
13
- else:
14
- from typing_extensions import NotRequired, TypedDict, TypeAlias
15
- from . import _utilities
16
- from . import outputs
17
- from ._inputs import *
18
-
19
- __all__ = [
20
- 'GetTagsResult',
21
- 'AwaitableGetTagsResult',
22
- 'get_tags',
23
- 'get_tags_output',
24
- ]
25
-
26
- @pulumi.output_type
27
- class GetTagsResult:
28
- """
29
- A collection of values returned by getTags.
30
- """
31
- def __init__(__self__, id=None, in_=None, like=None, tags=None):
32
- if id and not isinstance(id, str):
33
- raise TypeError("Expected argument 'id' to be a str")
34
- pulumi.set(__self__, "id", id)
35
- if in_ and not isinstance(in_, dict):
36
- raise TypeError("Expected argument 'in_' to be a dict")
37
- pulumi.set(__self__, "in_", in_)
38
- if like and not isinstance(like, str):
39
- raise TypeError("Expected argument 'like' to be a str")
40
- pulumi.set(__self__, "like", like)
41
- if tags and not isinstance(tags, list):
42
- raise TypeError("Expected argument 'tags' to be a list")
43
- pulumi.set(__self__, "tags", tags)
44
-
45
- @property
46
- @pulumi.getter
47
- def id(self) -> str:
48
- """
49
- The provider-assigned unique ID for this managed resource.
50
- """
51
- return pulumi.get(self, "id")
52
-
53
- @property
54
- @pulumi.getter(name="in")
55
- def in_(self) -> Optional['outputs.GetTagsInResult']:
56
- """
57
- IN clause to filter the list of objects
58
- """
59
- return pulumi.get(self, "in_")
60
-
61
- @property
62
- @pulumi.getter
63
- def like(self) -> Optional[str]:
64
- """
65
- Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
66
- """
67
- return pulumi.get(self, "like")
68
-
69
- @property
70
- @pulumi.getter
71
- def tags(self) -> Sequence['outputs.GetTagsTagResult']:
72
- """
73
- Holds the aggregated output of all tags details queries.
74
- """
75
- return pulumi.get(self, "tags")
76
-
77
-
78
- class AwaitableGetTagsResult(GetTagsResult):
79
- # pylint: disable=using-constant-test
80
- def __await__(self):
81
- if False:
82
- yield self
83
- return GetTagsResult(
84
- id=self.id,
85
- in_=self.in_,
86
- like=self.like,
87
- tags=self.tags)
88
-
89
-
90
- def get_tags(in_: Optional[Union['GetTagsInArgs', 'GetTagsInArgsDict']] = None,
91
- like: Optional[str] = None,
92
- opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetTagsResult:
93
- """
94
- !> **V1 release candidate** This data source is a release candidate for the V1. We do not expect significant changes in it before the V1. We will welcome any feedback and adjust the data source if needed. Any errors reported will be resolved with a higher priority. We encourage checking this data source out before the V1 release. Please follow the migration guide to use it.
95
-
96
- Datasource used to get details of filtered tags. Filtering is aligned with the current possibilities for [SHOW TAGS](https://docs.snowflake.com/en/sql-reference/sql/show-tags) query. The results of SHOW are encapsulated in one output collection `tags`.
97
-
98
-
99
- :param Union['GetTagsInArgs', 'GetTagsInArgsDict'] in_: IN clause to filter the list of objects
100
- :param str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
101
- """
102
- __args__ = dict()
103
- __args__['in'] = in_
104
- __args__['like'] = like
105
- opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
106
- __ret__ = pulumi.runtime.invoke('snowflake:index/getTags:getTags', __args__, opts=opts, typ=GetTagsResult).value
107
-
108
- return AwaitableGetTagsResult(
109
- id=pulumi.get(__ret__, 'id'),
110
- in_=pulumi.get(__ret__, 'in_'),
111
- like=pulumi.get(__ret__, 'like'),
112
- tags=pulumi.get(__ret__, 'tags'))
113
- def get_tags_output(in_: Optional[pulumi.Input[Optional[Union['GetTagsInArgs', 'GetTagsInArgsDict']]]] = None,
114
- like: Optional[pulumi.Input[Optional[str]]] = None,
115
- opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetTagsResult]:
116
- """
117
- !> **V1 release candidate** This data source is a release candidate for the V1. We do not expect significant changes in it before the V1. We will welcome any feedback and adjust the data source if needed. Any errors reported will be resolved with a higher priority. We encourage checking this data source out before the V1 release. Please follow the migration guide to use it.
118
-
119
- Datasource used to get details of filtered tags. Filtering is aligned with the current possibilities for [SHOW TAGS](https://docs.snowflake.com/en/sql-reference/sql/show-tags) query. The results of SHOW are encapsulated in one output collection `tags`.
120
-
121
-
122
- :param Union['GetTagsInArgs', 'GetTagsInArgsDict'] in_: IN clause to filter the list of objects
123
- :param str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
124
- """
125
- __args__ = dict()
126
- __args__['in'] = in_
127
- __args__['like'] = like
128
- opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
129
- __ret__ = pulumi.runtime.invoke_output('snowflake:index/getTags:getTags', __args__, opts=opts, typ=GetTagsResult)
130
- return __ret__.apply(lambda __response__: GetTagsResult(
131
- id=pulumi.get(__response__, 'id'),
132
- in_=pulumi.get(__response__, 'in_'),
133
- like=pulumi.get(__response__, 'like'),
134
- tags=pulumi.get(__response__, 'tags')))