pulumi-snowflake 2.2.0__py3-none-any.whl → 2.3.0__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 (160) hide show
  1. pulumi_snowflake/__init__.py +20 -1
  2. pulumi_snowflake/_inputs.py +17236 -16797
  3. pulumi_snowflake/account.py +252 -253
  4. pulumi_snowflake/account_authentication_policy_attachment.py +18 -19
  5. pulumi_snowflake/account_parameter.py +35 -36
  6. pulumi_snowflake/account_password_policy_attachment.py +18 -19
  7. pulumi_snowflake/account_role.py +42 -43
  8. pulumi_snowflake/alert.py +149 -150
  9. pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +197 -198
  10. pulumi_snowflake/api_authentication_integration_with_client_credentials.py +180 -181
  11. pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +193 -194
  12. pulumi_snowflake/api_integration.py +251 -252
  13. pulumi_snowflake/authentication_policy.py +167 -168
  14. pulumi_snowflake/compute_pool.py +167 -168
  15. pulumi_snowflake/config/__init__.py +1 -1
  16. pulumi_snowflake/config/__init__.pyi +1 -2
  17. pulumi_snowflake/config/outputs.py +21 -22
  18. pulumi_snowflake/config/vars.py +43 -44
  19. pulumi_snowflake/cortex_search_service.py +191 -192
  20. pulumi_snowflake/current_account.py +2096 -2097
  21. pulumi_snowflake/current_organization_account.py +5863 -0
  22. pulumi_snowflake/database.py +353 -354
  23. pulumi_snowflake/database_role.py +63 -64
  24. pulumi_snowflake/dynamic_table.py +274 -275
  25. pulumi_snowflake/email_notification_integration.py +70 -71
  26. pulumi_snowflake/execute.py +61 -62
  27. pulumi_snowflake/external_function.py +280 -281
  28. pulumi_snowflake/external_oauth_integration.py +288 -289
  29. pulumi_snowflake/external_table.py +246 -247
  30. pulumi_snowflake/external_volume.py +68 -69
  31. pulumi_snowflake/failover_group.py +135 -136
  32. pulumi_snowflake/file_format.py +622 -623
  33. pulumi_snowflake/function_java.py +320 -321
  34. pulumi_snowflake/function_javascript.py +243 -244
  35. pulumi_snowflake/function_python.py +334 -335
  36. pulumi_snowflake/function_scala.py +320 -321
  37. pulumi_snowflake/function_sql.py +226 -227
  38. pulumi_snowflake/get_account_roles.py +16 -17
  39. pulumi_snowflake/get_accounts.py +16 -17
  40. pulumi_snowflake/get_alerts.py +22 -23
  41. pulumi_snowflake/get_compute_pools.py +23 -24
  42. pulumi_snowflake/get_connections.py +10 -11
  43. pulumi_snowflake/get_cortex_search_services.py +18 -19
  44. pulumi_snowflake/get_current_account.py +9 -10
  45. pulumi_snowflake/get_current_role.py +5 -6
  46. pulumi_snowflake/get_database.py +25 -26
  47. pulumi_snowflake/get_database_role.py +19 -20
  48. pulumi_snowflake/get_database_roles.py +17 -18
  49. pulumi_snowflake/get_databases.py +29 -30
  50. pulumi_snowflake/get_dynamic_tables.py +13 -14
  51. pulumi_snowflake/get_external_functions.py +16 -17
  52. pulumi_snowflake/get_external_tables.py +16 -17
  53. pulumi_snowflake/get_failover_groups.py +10 -11
  54. pulumi_snowflake/get_file_formats.py +16 -17
  55. pulumi_snowflake/get_functions.py +16 -17
  56. pulumi_snowflake/get_git_repositories.py +18 -19
  57. pulumi_snowflake/get_grants.py +9 -10
  58. pulumi_snowflake/get_image_repositories.py +11 -12
  59. pulumi_snowflake/get_masking_policies.py +18 -19
  60. pulumi_snowflake/get_materialized_views.py +16 -17
  61. pulumi_snowflake/get_network_policies.py +16 -17
  62. pulumi_snowflake/get_parameters.py +34 -35
  63. pulumi_snowflake/get_pipes.py +16 -17
  64. pulumi_snowflake/get_procedures.py +16 -17
  65. pulumi_snowflake/get_resource_monitors.py +10 -11
  66. pulumi_snowflake/get_row_access_policies.py +18 -19
  67. pulumi_snowflake/get_schemas.py +30 -31
  68. pulumi_snowflake/get_secrets.py +17 -18
  69. pulumi_snowflake/get_security_integrations.py +16 -17
  70. pulumi_snowflake/get_sequences.py +16 -17
  71. pulumi_snowflake/get_services.py +30 -31
  72. pulumi_snowflake/get_shares.py +10 -11
  73. pulumi_snowflake/get_stages.py +16 -17
  74. pulumi_snowflake/get_storage_integrations.py +4 -5
  75. pulumi_snowflake/get_streamlits.py +18 -19
  76. pulumi_snowflake/get_streams.py +24 -25
  77. pulumi_snowflake/get_system_generate_scim_access_token.py +11 -12
  78. pulumi_snowflake/get_system_get_aws_sns_iam_policy.py +11 -12
  79. pulumi_snowflake/get_system_get_private_link_config.py +21 -22
  80. pulumi_snowflake/get_system_get_snowflake_platform_info.py +7 -8
  81. pulumi_snowflake/get_tables.py +24 -25
  82. pulumi_snowflake/get_tags.py +11 -12
  83. pulumi_snowflake/get_tasks.py +30 -31
  84. pulumi_snowflake/get_user_programmatic_access_tokens.py +113 -0
  85. pulumi_snowflake/get_users.py +29 -30
  86. pulumi_snowflake/get_views.py +24 -25
  87. pulumi_snowflake/get_warehouses.py +22 -23
  88. pulumi_snowflake/git_repository.py +133 -134
  89. pulumi_snowflake/grant_account_role.py +52 -53
  90. pulumi_snowflake/grant_application_role.py +52 -53
  91. pulumi_snowflake/grant_database_role.py +69 -70
  92. pulumi_snowflake/grant_ownership.py +55 -56
  93. pulumi_snowflake/grant_privileges_to_account_role.py +125 -126
  94. pulumi_snowflake/grant_privileges_to_database_role.py +122 -123
  95. pulumi_snowflake/grant_privileges_to_share.py +154 -155
  96. pulumi_snowflake/image_repository.py +80 -81
  97. pulumi_snowflake/job_service.py +148 -149
  98. pulumi_snowflake/legacy_service_user.py +1269 -1270
  99. pulumi_snowflake/managed_account.py +140 -141
  100. pulumi_snowflake/masking_policy.py +136 -137
  101. pulumi_snowflake/materialized_view.py +149 -150
  102. pulumi_snowflake/network_policy.py +116 -117
  103. pulumi_snowflake/network_policy_attachment.py +52 -53
  104. pulumi_snowflake/network_rule.py +129 -130
  105. pulumi_snowflake/notification_integration.py +298 -299
  106. pulumi_snowflake/oauth_integration_for_custom_clients.py +263 -264
  107. pulumi_snowflake/oauth_integration_for_partner_applications.py +169 -170
  108. pulumi_snowflake/object_parameter.py +72 -73
  109. pulumi_snowflake/outputs.py +15957 -15511
  110. pulumi_snowflake/password_policy.py +299 -300
  111. pulumi_snowflake/pipe.py +181 -182
  112. pulumi_snowflake/primary_connection.py +70 -71
  113. pulumi_snowflake/procedure_java.py +341 -342
  114. pulumi_snowflake/procedure_javascript.py +247 -248
  115. pulumi_snowflake/procedure_python.py +338 -339
  116. pulumi_snowflake/procedure_scala.py +341 -342
  117. pulumi_snowflake/procedure_sql.py +247 -248
  118. pulumi_snowflake/provider.py +377 -378
  119. pulumi_snowflake/pulumi-plugin.json +1 -1
  120. pulumi_snowflake/resource_monitor.py +165 -166
  121. pulumi_snowflake/row_access_policy.py +102 -103
  122. pulumi_snowflake/saml2_integration.py +303 -304
  123. pulumi_snowflake/schema.py +390 -391
  124. pulumi_snowflake/scim_integration.py +133 -134
  125. pulumi_snowflake/secondary_connection.py +72 -73
  126. pulumi_snowflake/secondary_database.py +350 -351
  127. pulumi_snowflake/secret_with_authorization_code_grant.py +138 -139
  128. pulumi_snowflake/secret_with_basic_authentication.py +121 -122
  129. pulumi_snowflake/secret_with_client_credentials.py +125 -126
  130. pulumi_snowflake/secret_with_generic_string.py +104 -105
  131. pulumi_snowflake/sequence.py +121 -122
  132. pulumi_snowflake/service.py +233 -234
  133. pulumi_snowflake/service_user.py +1239 -1240
  134. pulumi_snowflake/share.py +61 -62
  135. pulumi_snowflake/shared_database.py +299 -300
  136. pulumi_snowflake/stage.py +234 -235
  137. pulumi_snowflake/storage_integration.py +230 -231
  138. pulumi_snowflake/stream_on_directory_table.py +128 -129
  139. pulumi_snowflake/stream_on_external_table.py +151 -152
  140. pulumi_snowflake/stream_on_table.py +164 -165
  141. pulumi_snowflake/stream_on_view.py +164 -165
  142. pulumi_snowflake/streamlit.py +184 -185
  143. pulumi_snowflake/table.py +147 -148
  144. pulumi_snowflake/table_column_masking_policy_application.py +52 -53
  145. pulumi_snowflake/table_constraint.py +191 -192
  146. pulumi_snowflake/tag.py +114 -115
  147. pulumi_snowflake/tag_association.py +86 -87
  148. pulumi_snowflake/task.py +1224 -1225
  149. pulumi_snowflake/user.py +1346 -1347
  150. pulumi_snowflake/user_authentication_policy_attachment.py +35 -36
  151. pulumi_snowflake/user_password_policy_attachment.py +35 -36
  152. pulumi_snowflake/user_programmatic_access_token.py +598 -0
  153. pulumi_snowflake/user_public_keys.py +52 -53
  154. pulumi_snowflake/view.py +187 -188
  155. pulumi_snowflake/warehouse.py +286 -287
  156. {pulumi_snowflake-2.2.0.dist-info → pulumi_snowflake-2.3.0.dist-info}/METADATA +1 -1
  157. pulumi_snowflake-2.3.0.dist-info/RECORD +161 -0
  158. pulumi_snowflake-2.2.0.dist-info/RECORD +0 -158
  159. {pulumi_snowflake-2.2.0.dist-info → pulumi_snowflake-2.3.0.dist-info}/WHEEL +0 -0
  160. {pulumi_snowflake-2.2.0.dist-info → pulumi_snowflake-2.3.0.dist-info}/top_level.txt +0 -0
@@ -2,8 +2,7 @@
2
2
  # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import builtins
6
- import copy
5
+ import builtins as _builtins
7
6
  import warnings
8
7
  import sys
9
8
  import pulumi
@@ -39,23 +38,23 @@ class GetSharesResult:
39
38
  raise TypeError("Expected argument 'shares' to be a list")
40
39
  pulumi.set(__self__, "shares", shares)
41
40
 
42
- @property
41
+ @_builtins.property
43
42
  @pulumi.getter
44
- def id(self) -> builtins.str:
43
+ def id(self) -> _builtins.str:
45
44
  """
46
45
  The provider-assigned unique ID for this managed resource.
47
46
  """
48
47
  return pulumi.get(self, "id")
49
48
 
50
- @property
49
+ @_builtins.property
51
50
  @pulumi.getter
52
- def pattern(self) -> Optional[builtins.str]:
51
+ def pattern(self) -> Optional[_builtins.str]:
53
52
  """
54
53
  Filters the command output by object name.
55
54
  """
56
55
  return pulumi.get(self, "pattern")
57
56
 
58
- @property
57
+ @_builtins.property
59
58
  @pulumi.getter
60
59
  def shares(self) -> Sequence['outputs.GetSharesShareResult']:
61
60
  """
@@ -75,7 +74,7 @@ class AwaitableGetSharesResult(GetSharesResult):
75
74
  shares=self.shares)
76
75
 
77
76
 
78
- def get_shares(pattern: Optional[builtins.str] = None,
77
+ def get_shares(pattern: Optional[_builtins.str] = None,
79
78
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSharesResult:
80
79
  """
81
80
  !> **Caution: Preview Feature** This feature is considered a preview feature in the provider, regardless of the state of the resource in Snowflake. We do not guarantee its stability. It will be reworked and marked as a stable feature in future releases. Breaking changes are expected, even without bumping the major version. To use this feature, add the relevant feature name to `preview_features_enabled` field in the provider configuration. Please always refer to the Getting Help section in our Github repo to best determine how to get help for your questions.
@@ -93,7 +92,7 @@ def get_shares(pattern: Optional[builtins.str] = None,
93
92
  > **Note** If a field has a default value, it is shown next to the type in the schema.
94
93
 
95
94
 
96
- :param builtins.str pattern: Filters the command output by object name.
95
+ :param _builtins.str pattern: Filters the command output by object name.
97
96
  """
98
97
  __args__ = dict()
99
98
  __args__['pattern'] = pattern
@@ -104,7 +103,7 @@ def get_shares(pattern: Optional[builtins.str] = None,
104
103
  id=pulumi.get(__ret__, 'id'),
105
104
  pattern=pulumi.get(__ret__, 'pattern'),
106
105
  shares=pulumi.get(__ret__, 'shares'))
107
- def get_shares_output(pattern: Optional[pulumi.Input[Optional[builtins.str]]] = None,
106
+ def get_shares_output(pattern: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
108
107
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSharesResult]:
109
108
  """
110
109
  !> **Caution: Preview Feature** This feature is considered a preview feature in the provider, regardless of the state of the resource in Snowflake. We do not guarantee its stability. It will be reworked and marked as a stable feature in future releases. Breaking changes are expected, even without bumping the major version. To use this feature, add the relevant feature name to `preview_features_enabled` field in the provider configuration. Please always refer to the Getting Help section in our Github repo to best determine how to get help for your questions.
@@ -122,7 +121,7 @@ def get_shares_output(pattern: Optional[pulumi.Input[Optional[builtins.str]]] =
122
121
  > **Note** If a field has a default value, it is shown next to the type in the schema.
123
122
 
124
123
 
125
- :param builtins.str pattern: Filters the command output by object name.
124
+ :param _builtins.str pattern: Filters the command output by object name.
126
125
  """
127
126
  __args__ = dict()
128
127
  __args__['pattern'] = pattern
@@ -2,8 +2,7 @@
2
2
  # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import builtins
6
- import copy
5
+ import builtins as _builtins
7
6
  import warnings
8
7
  import sys
9
8
  import pulumi
@@ -42,31 +41,31 @@ class GetStagesResult:
42
41
  raise TypeError("Expected argument 'stages' to be a list")
43
42
  pulumi.set(__self__, "stages", stages)
44
43
 
45
- @property
44
+ @_builtins.property
46
45
  @pulumi.getter
47
- def database(self) -> builtins.str:
46
+ def database(self) -> _builtins.str:
48
47
  """
49
48
  The database from which to return the schemas from.
50
49
  """
51
50
  return pulumi.get(self, "database")
52
51
 
53
- @property
52
+ @_builtins.property
54
53
  @pulumi.getter
55
- def id(self) -> builtins.str:
54
+ def id(self) -> _builtins.str:
56
55
  """
57
56
  The provider-assigned unique ID for this managed resource.
58
57
  """
59
58
  return pulumi.get(self, "id")
60
59
 
61
- @property
60
+ @_builtins.property
62
61
  @pulumi.getter
63
- def schema(self) -> builtins.str:
62
+ def schema(self) -> _builtins.str:
64
63
  """
65
64
  The schema from which to return the stages from.
66
65
  """
67
66
  return pulumi.get(self, "schema")
68
67
 
69
- @property
68
+ @_builtins.property
70
69
  @pulumi.getter
71
70
  def stages(self) -> Sequence['outputs.GetStagesStageResult']:
72
71
  """
@@ -87,8 +86,8 @@ class AwaitableGetStagesResult(GetStagesResult):
87
86
  stages=self.stages)
88
87
 
89
88
 
90
- def get_stages(database: Optional[builtins.str] = None,
91
- schema: Optional[builtins.str] = None,
89
+ def get_stages(database: Optional[_builtins.str] = None,
90
+ schema: Optional[_builtins.str] = None,
92
91
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetStagesResult:
93
92
  """
94
93
  !> **Caution: Preview Feature** This feature is considered a preview feature in the provider, regardless of the state of the resource in Snowflake. We do not guarantee its stability. It will be reworked and marked as a stable feature in future releases. Breaking changes are expected, even without bumping the major version. To use this feature, add the relevant feature name to `preview_features_enabled` field in the provider configuration. Please always refer to the Getting Help section in our Github repo to best determine how to get help for your questions.
@@ -106,8 +105,8 @@ def get_stages(database: Optional[builtins.str] = None,
106
105
  > **Note** If a field has a default value, it is shown next to the type in the schema.
107
106
 
108
107
 
109
- :param builtins.str database: The database from which to return the schemas from.
110
- :param builtins.str schema: The schema from which to return the stages from.
108
+ :param _builtins.str database: The database from which to return the schemas from.
109
+ :param _builtins.str schema: The schema from which to return the stages from.
111
110
  """
112
111
  __args__ = dict()
113
112
  __args__['database'] = database
@@ -120,8 +119,8 @@ def get_stages(database: Optional[builtins.str] = None,
120
119
  id=pulumi.get(__ret__, 'id'),
121
120
  schema=pulumi.get(__ret__, 'schema'),
122
121
  stages=pulumi.get(__ret__, 'stages'))
123
- def get_stages_output(database: Optional[pulumi.Input[builtins.str]] = None,
124
- schema: Optional[pulumi.Input[builtins.str]] = None,
122
+ def get_stages_output(database: Optional[pulumi.Input[_builtins.str]] = None,
123
+ schema: Optional[pulumi.Input[_builtins.str]] = None,
125
124
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetStagesResult]:
126
125
  """
127
126
  !> **Caution: Preview Feature** This feature is considered a preview feature in the provider, regardless of the state of the resource in Snowflake. We do not guarantee its stability. It will be reworked and marked as a stable feature in future releases. Breaking changes are expected, even without bumping the major version. To use this feature, add the relevant feature name to `preview_features_enabled` field in the provider configuration. Please always refer to the Getting Help section in our Github repo to best determine how to get help for your questions.
@@ -139,8 +138,8 @@ def get_stages_output(database: Optional[pulumi.Input[builtins.str]] = None,
139
138
  > **Note** If a field has a default value, it is shown next to the type in the schema.
140
139
 
141
140
 
142
- :param builtins.str database: The database from which to return the schemas from.
143
- :param builtins.str schema: The schema from which to return the stages from.
141
+ :param _builtins.str database: The database from which to return the schemas from.
142
+ :param _builtins.str schema: The schema from which to return the stages from.
144
143
  """
145
144
  __args__ = dict()
146
145
  __args__['database'] = database
@@ -2,8 +2,7 @@
2
2
  # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import builtins
6
- import copy
5
+ import builtins as _builtins
7
6
  import warnings
8
7
  import sys
9
8
  import pulumi
@@ -36,15 +35,15 @@ class GetStorageIntegrationsResult:
36
35
  raise TypeError("Expected argument 'storage_integrations' to be a list")
37
36
  pulumi.set(__self__, "storage_integrations", storage_integrations)
38
37
 
39
- @property
38
+ @_builtins.property
40
39
  @pulumi.getter
41
- def id(self) -> builtins.str:
40
+ def id(self) -> _builtins.str:
42
41
  """
43
42
  The provider-assigned unique ID for this managed resource.
44
43
  """
45
44
  return pulumi.get(self, "id")
46
45
 
47
- @property
46
+ @_builtins.property
48
47
  @pulumi.getter(name="storageIntegrations")
49
48
  def storage_integrations(self) -> Sequence['outputs.GetStorageIntegrationsStorageIntegrationResult']:
50
49
  """
@@ -2,8 +2,7 @@
2
2
  # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import builtins
6
- import copy
5
+ import builtins as _builtins
7
6
  import warnings
8
7
  import sys
9
8
  import pulumi
@@ -49,15 +48,15 @@ class GetStreamlitsResult:
49
48
  raise TypeError("Expected argument 'with_describe' to be a bool")
50
49
  pulumi.set(__self__, "with_describe", with_describe)
51
50
 
52
- @property
51
+ @_builtins.property
53
52
  @pulumi.getter
54
- def id(self) -> builtins.str:
53
+ def id(self) -> _builtins.str:
55
54
  """
56
55
  The provider-assigned unique ID for this managed resource.
57
56
  """
58
57
  return pulumi.get(self, "id")
59
58
 
60
- @property
59
+ @_builtins.property
61
60
  @pulumi.getter(name="in")
62
61
  def in_(self) -> Optional['outputs.GetStreamlitsInResult']:
63
62
  """
@@ -65,15 +64,15 @@ class GetStreamlitsResult:
65
64
  """
66
65
  return pulumi.get(self, "in_")
67
66
 
68
- @property
67
+ @_builtins.property
69
68
  @pulumi.getter
70
- def like(self) -> Optional[builtins.str]:
69
+ def like(self) -> Optional[_builtins.str]:
71
70
  """
72
71
  Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
73
72
  """
74
73
  return pulumi.get(self, "like")
75
74
 
76
- @property
75
+ @_builtins.property
77
76
  @pulumi.getter
78
77
  def limit(self) -> Optional['outputs.GetStreamlitsLimitResult']:
79
78
  """
@@ -81,7 +80,7 @@ class GetStreamlitsResult:
81
80
  """
82
81
  return pulumi.get(self, "limit")
83
82
 
84
- @property
83
+ @_builtins.property
85
84
  @pulumi.getter
86
85
  def streamlits(self) -> Sequence['outputs.GetStreamlitsStreamlitResult']:
87
86
  """
@@ -89,9 +88,9 @@ class GetStreamlitsResult:
89
88
  """
90
89
  return pulumi.get(self, "streamlits")
91
90
 
92
- @property
91
+ @_builtins.property
93
92
  @pulumi.getter(name="withDescribe")
94
- def with_describe(self) -> Optional[builtins.bool]:
93
+ def with_describe(self) -> Optional[_builtins.bool]:
95
94
  """
96
95
  (Default: `true`) Runs DESC STREAMLIT for each streamlit returned by SHOW STREAMLITS. The output of describe is saved to the description field. By default this value is set to true.
97
96
  """
@@ -113,18 +112,18 @@ class AwaitableGetStreamlitsResult(GetStreamlitsResult):
113
112
 
114
113
 
115
114
  def get_streamlits(in_: Optional[Union['GetStreamlitsInArgs', 'GetStreamlitsInArgsDict']] = None,
116
- like: Optional[builtins.str] = None,
115
+ like: Optional[_builtins.str] = None,
117
116
  limit: Optional[Union['GetStreamlitsLimitArgs', 'GetStreamlitsLimitArgsDict']] = None,
118
- with_describe: Optional[builtins.bool] = None,
117
+ with_describe: Optional[_builtins.bool] = None,
119
118
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetStreamlitsResult:
120
119
  """
121
120
  Data source used to get details of filtered streamlits. Filtering is aligned with the current possibilities for [SHOW STREAMLITS](https://docs.snowflake.com/en/sql-reference/sql/show-streamlits) query (only `like` is supported). The results of SHOW and DESCRIBE are encapsulated in one output collection `streamlits`.
122
121
 
123
122
 
124
123
  :param Union['GetStreamlitsInArgs', 'GetStreamlitsInArgsDict'] in_: IN clause to filter the list of streamlits
125
- :param builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
124
+ :param _builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
126
125
  :param Union['GetStreamlitsLimitArgs', 'GetStreamlitsLimitArgsDict'] limit: Limits the number of rows returned. If the `limit.from` is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with `starts_with` or `like`.
127
- :param builtins.bool with_describe: (Default: `true`) Runs DESC STREAMLIT for each streamlit returned by SHOW STREAMLITS. The output of describe is saved to the description field. By default this value is set to true.
126
+ :param _builtins.bool with_describe: (Default: `true`) Runs DESC STREAMLIT for each streamlit returned by SHOW STREAMLITS. The output of describe is saved to the description field. By default this value is set to true.
128
127
  """
129
128
  __args__ = dict()
130
129
  __args__['in'] = in_
@@ -142,18 +141,18 @@ def get_streamlits(in_: Optional[Union['GetStreamlitsInArgs', 'GetStreamlitsInAr
142
141
  streamlits=pulumi.get(__ret__, 'streamlits'),
143
142
  with_describe=pulumi.get(__ret__, 'with_describe'))
144
143
  def get_streamlits_output(in_: Optional[pulumi.Input[Optional[Union['GetStreamlitsInArgs', 'GetStreamlitsInArgsDict']]]] = None,
145
- like: Optional[pulumi.Input[Optional[builtins.str]]] = None,
144
+ like: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
146
145
  limit: Optional[pulumi.Input[Optional[Union['GetStreamlitsLimitArgs', 'GetStreamlitsLimitArgsDict']]]] = None,
147
- with_describe: Optional[pulumi.Input[Optional[builtins.bool]]] = None,
146
+ with_describe: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
148
147
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetStreamlitsResult]:
149
148
  """
150
149
  Data source used to get details of filtered streamlits. Filtering is aligned with the current possibilities for [SHOW STREAMLITS](https://docs.snowflake.com/en/sql-reference/sql/show-streamlits) query (only `like` is supported). The results of SHOW and DESCRIBE are encapsulated in one output collection `streamlits`.
151
150
 
152
151
 
153
152
  :param Union['GetStreamlitsInArgs', 'GetStreamlitsInArgsDict'] in_: IN clause to filter the list of streamlits
154
- :param builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
153
+ :param _builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
155
154
  :param Union['GetStreamlitsLimitArgs', 'GetStreamlitsLimitArgsDict'] limit: Limits the number of rows returned. If the `limit.from` is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with `starts_with` or `like`.
156
- :param builtins.bool with_describe: (Default: `true`) Runs DESC STREAMLIT for each streamlit returned by SHOW STREAMLITS. The output of describe is saved to the description field. By default this value is set to true.
155
+ :param _builtins.bool with_describe: (Default: `true`) Runs DESC STREAMLIT for each streamlit returned by SHOW STREAMLITS. The output of describe is saved to the description field. By default this value is set to true.
157
156
  """
158
157
  __args__ = dict()
159
158
  __args__['in'] = in_
@@ -2,8 +2,7 @@
2
2
  # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import builtins
6
- import copy
5
+ import builtins as _builtins
7
6
  import warnings
8
7
  import sys
9
8
  import pulumi
@@ -52,15 +51,15 @@ class GetStreamsResult:
52
51
  raise TypeError("Expected argument 'with_describe' to be a bool")
53
52
  pulumi.set(__self__, "with_describe", with_describe)
54
53
 
55
- @property
54
+ @_builtins.property
56
55
  @pulumi.getter
57
- def id(self) -> builtins.str:
56
+ def id(self) -> _builtins.str:
58
57
  """
59
58
  The provider-assigned unique ID for this managed resource.
60
59
  """
61
60
  return pulumi.get(self, "id")
62
61
 
63
- @property
62
+ @_builtins.property
64
63
  @pulumi.getter(name="in")
65
64
  def in_(self) -> Optional['outputs.GetStreamsInResult']:
66
65
  """
@@ -68,15 +67,15 @@ class GetStreamsResult:
68
67
  """
69
68
  return pulumi.get(self, "in_")
70
69
 
71
- @property
70
+ @_builtins.property
72
71
  @pulumi.getter
73
- def like(self) -> Optional[builtins.str]:
72
+ def like(self) -> Optional[_builtins.str]:
74
73
  """
75
74
  Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
76
75
  """
77
76
  return pulumi.get(self, "like")
78
77
 
79
- @property
78
+ @_builtins.property
80
79
  @pulumi.getter
81
80
  def limit(self) -> Optional['outputs.GetStreamsLimitResult']:
82
81
  """
@@ -84,15 +83,15 @@ class GetStreamsResult:
84
83
  """
85
84
  return pulumi.get(self, "limit")
86
85
 
87
- @property
86
+ @_builtins.property
88
87
  @pulumi.getter(name="startsWith")
89
- def starts_with(self) -> Optional[builtins.str]:
88
+ def starts_with(self) -> Optional[_builtins.str]:
90
89
  """
91
90
  Filters the output with **case-sensitive** characters indicating the beginning of the object name.
92
91
  """
93
92
  return pulumi.get(self, "starts_with")
94
93
 
95
- @property
94
+ @_builtins.property
96
95
  @pulumi.getter
97
96
  def streams(self) -> Sequence['outputs.GetStreamsStreamResult']:
98
97
  """
@@ -100,9 +99,9 @@ class GetStreamsResult:
100
99
  """
101
100
  return pulumi.get(self, "streams")
102
101
 
103
- @property
102
+ @_builtins.property
104
103
  @pulumi.getter(name="withDescribe")
105
- def with_describe(self) -> Optional[builtins.bool]:
104
+ def with_describe(self) -> Optional[_builtins.bool]:
106
105
  """
107
106
  (Default: `true`) Runs DESC STREAM for each user returned by SHOW STREAMS. The output of describe is saved to the description field. By default this value is set to true.
108
107
  """
@@ -125,20 +124,20 @@ class AwaitableGetStreamsResult(GetStreamsResult):
125
124
 
126
125
 
127
126
  def get_streams(in_: Optional[Union['GetStreamsInArgs', 'GetStreamsInArgsDict']] = None,
128
- like: Optional[builtins.str] = None,
127
+ like: Optional[_builtins.str] = None,
129
128
  limit: Optional[Union['GetStreamsLimitArgs', 'GetStreamsLimitArgsDict']] = None,
130
- starts_with: Optional[builtins.str] = None,
131
- with_describe: Optional[builtins.bool] = None,
129
+ starts_with: Optional[_builtins.str] = None,
130
+ with_describe: Optional[_builtins.bool] = None,
132
131
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetStreamsResult:
133
132
  """
134
133
  Data source used to get details of filtered streams. Filtering is aligned with the current possibilities for [SHOW STREAMS](https://docs.snowflake.com/en/sql-reference/sql/show-streams) query. The results of SHOW and DESCRIBE are encapsulated in one output collection `streams`.
135
134
 
136
135
 
137
136
  :param Union['GetStreamsInArgs', 'GetStreamsInArgsDict'] in_: IN clause to filter the list of objects
138
- :param builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
137
+ :param _builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
139
138
  :param Union['GetStreamsLimitArgs', 'GetStreamsLimitArgsDict'] limit: Limits the number of rows returned. If the `limit.from` is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with `starts_with` or `like`.
140
- :param builtins.str starts_with: Filters the output with **case-sensitive** characters indicating the beginning of the object name.
141
- :param builtins.bool with_describe: (Default: `true`) Runs DESC STREAM for each user returned by SHOW STREAMS. The output of describe is saved to the description field. By default this value is set to true.
139
+ :param _builtins.str starts_with: Filters the output with **case-sensitive** characters indicating the beginning of the object name.
140
+ :param _builtins.bool with_describe: (Default: `true`) Runs DESC STREAM for each user returned by SHOW STREAMS. The output of describe is saved to the description field. By default this value is set to true.
142
141
  """
143
142
  __args__ = dict()
144
143
  __args__['in'] = in_
@@ -158,20 +157,20 @@ def get_streams(in_: Optional[Union['GetStreamsInArgs', 'GetStreamsInArgsDict']]
158
157
  streams=pulumi.get(__ret__, 'streams'),
159
158
  with_describe=pulumi.get(__ret__, 'with_describe'))
160
159
  def get_streams_output(in_: Optional[pulumi.Input[Optional[Union['GetStreamsInArgs', 'GetStreamsInArgsDict']]]] = None,
161
- like: Optional[pulumi.Input[Optional[builtins.str]]] = None,
160
+ like: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
162
161
  limit: Optional[pulumi.Input[Optional[Union['GetStreamsLimitArgs', 'GetStreamsLimitArgsDict']]]] = None,
163
- starts_with: Optional[pulumi.Input[Optional[builtins.str]]] = None,
164
- with_describe: Optional[pulumi.Input[Optional[builtins.bool]]] = None,
162
+ starts_with: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
163
+ with_describe: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
165
164
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetStreamsResult]:
166
165
  """
167
166
  Data source used to get details of filtered streams. Filtering is aligned with the current possibilities for [SHOW STREAMS](https://docs.snowflake.com/en/sql-reference/sql/show-streams) query. The results of SHOW and DESCRIBE are encapsulated in one output collection `streams`.
168
167
 
169
168
 
170
169
  :param Union['GetStreamsInArgs', 'GetStreamsInArgsDict'] in_: IN clause to filter the list of objects
171
- :param builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
170
+ :param _builtins.str like: Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
172
171
  :param Union['GetStreamsLimitArgs', 'GetStreamsLimitArgsDict'] limit: Limits the number of rows returned. If the `limit.from` is set, then the limit will start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with `starts_with` or `like`.
173
- :param builtins.str starts_with: Filters the output with **case-sensitive** characters indicating the beginning of the object name.
174
- :param builtins.bool with_describe: (Default: `true`) Runs DESC STREAM for each user returned by SHOW STREAMS. The output of describe is saved to the description field. By default this value is set to true.
172
+ :param _builtins.str starts_with: Filters the output with **case-sensitive** characters indicating the beginning of the object name.
173
+ :param _builtins.bool with_describe: (Default: `true`) Runs DESC STREAM for each user returned by SHOW STREAMS. The output of describe is saved to the description field. By default this value is set to true.
175
174
  """
176
175
  __args__ = dict()
177
176
  __args__['in'] = in_
@@ -2,8 +2,7 @@
2
2
  # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import builtins
6
- import copy
5
+ import builtins as _builtins
7
6
  import warnings
8
7
  import sys
9
8
  import pulumi
@@ -38,25 +37,25 @@ class GetSystemGenerateScimAccessTokenResult:
38
37
  raise TypeError("Expected argument 'integration_name' to be a str")
39
38
  pulumi.set(__self__, "integration_name", integration_name)
40
39
 
41
- @property
40
+ @_builtins.property
42
41
  @pulumi.getter(name="accessToken")
43
- def access_token(self) -> builtins.str:
42
+ def access_token(self) -> _builtins.str:
44
43
  """
45
44
  SCIM Access Token
46
45
  """
47
46
  return pulumi.get(self, "access_token")
48
47
 
49
- @property
48
+ @_builtins.property
50
49
  @pulumi.getter
51
- def id(self) -> builtins.str:
50
+ def id(self) -> _builtins.str:
52
51
  """
53
52
  The provider-assigned unique ID for this managed resource.
54
53
  """
55
54
  return pulumi.get(self, "id")
56
55
 
57
- @property
56
+ @_builtins.property
58
57
  @pulumi.getter(name="integrationName")
59
- def integration_name(self) -> builtins.str:
58
+ def integration_name(self) -> _builtins.str:
60
59
  """
61
60
  SCIM Integration Name
62
61
  """
@@ -74,7 +73,7 @@ class AwaitableGetSystemGenerateScimAccessTokenResult(GetSystemGenerateScimAcces
74
73
  integration_name=self.integration_name)
75
74
 
76
75
 
77
- def get_system_generate_scim_access_token(integration_name: Optional[builtins.str] = None,
76
+ def get_system_generate_scim_access_token(integration_name: Optional[_builtins.str] = None,
78
77
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSystemGenerateScimAccessTokenResult:
79
78
  """
80
79
  !> **Caution: Preview Feature** This feature is considered a preview feature in the provider, regardless of the state of the resource in Snowflake. We do not guarantee its stability. It will be reworked and marked as a stable feature in future releases. Breaking changes are expected, even without bumping the major version. To use this feature, add the relevant feature name to `preview_features_enabled` field in the provider configuration. Please always refer to the Getting Help section in our Github repo to best determine how to get help for your questions.
@@ -91,7 +90,7 @@ def get_system_generate_scim_access_token(integration_name: Optional[builtins.st
91
90
  > **Note** If a field has a default value, it is shown next to the type in the schema.
92
91
 
93
92
 
94
- :param builtins.str integration_name: SCIM Integration Name
93
+ :param _builtins.str integration_name: SCIM Integration Name
95
94
  """
96
95
  __args__ = dict()
97
96
  __args__['integrationName'] = integration_name
@@ -102,7 +101,7 @@ def get_system_generate_scim_access_token(integration_name: Optional[builtins.st
102
101
  access_token=pulumi.get(__ret__, 'access_token'),
103
102
  id=pulumi.get(__ret__, 'id'),
104
103
  integration_name=pulumi.get(__ret__, 'integration_name'))
105
- def get_system_generate_scim_access_token_output(integration_name: Optional[pulumi.Input[builtins.str]] = None,
104
+ def get_system_generate_scim_access_token_output(integration_name: Optional[pulumi.Input[_builtins.str]] = None,
106
105
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSystemGenerateScimAccessTokenResult]:
107
106
  """
108
107
  !> **Caution: Preview Feature** This feature is considered a preview feature in the provider, regardless of the state of the resource in Snowflake. We do not guarantee its stability. It will be reworked and marked as a stable feature in future releases. Breaking changes are expected, even without bumping the major version. To use this feature, add the relevant feature name to `preview_features_enabled` field in the provider configuration. Please always refer to the Getting Help section in our Github repo to best determine how to get help for your questions.
@@ -119,7 +118,7 @@ def get_system_generate_scim_access_token_output(integration_name: Optional[pulu
119
118
  > **Note** If a field has a default value, it is shown next to the type in the schema.
120
119
 
121
120
 
122
- :param builtins.str integration_name: SCIM Integration Name
121
+ :param _builtins.str integration_name: SCIM Integration Name
123
122
  """
124
123
  __args__ = dict()
125
124
  __args__['integrationName'] = integration_name
@@ -2,8 +2,7 @@
2
2
  # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import builtins
6
- import copy
5
+ import builtins as _builtins
7
6
  import warnings
8
7
  import sys
9
8
  import pulumi
@@ -38,25 +37,25 @@ class GetSystemGetAwsSnsIamPolicyResult:
38
37
  raise TypeError("Expected argument 'id' to be a str")
39
38
  pulumi.set(__self__, "id", id)
40
39
 
41
- @property
40
+ @_builtins.property
42
41
  @pulumi.getter(name="awsSnsTopicArn")
43
- def aws_sns_topic_arn(self) -> builtins.str:
42
+ def aws_sns_topic_arn(self) -> _builtins.str:
44
43
  """
45
44
  Amazon Resource Name (ARN) of the SNS topic for your S3 bucket
46
45
  """
47
46
  return pulumi.get(self, "aws_sns_topic_arn")
48
47
 
49
- @property
48
+ @_builtins.property
50
49
  @pulumi.getter(name="awsSnsTopicPolicyJson")
51
- def aws_sns_topic_policy_json(self) -> builtins.str:
50
+ def aws_sns_topic_policy_json(self) -> _builtins.str:
52
51
  """
53
52
  IAM policy for Snowflake’s SQS queue to subscribe to this topic
54
53
  """
55
54
  return pulumi.get(self, "aws_sns_topic_policy_json")
56
55
 
57
- @property
56
+ @_builtins.property
58
57
  @pulumi.getter
59
- def id(self) -> builtins.str:
58
+ def id(self) -> _builtins.str:
60
59
  """
61
60
  The provider-assigned unique ID for this managed resource.
62
61
  """
@@ -74,7 +73,7 @@ class AwaitableGetSystemGetAwsSnsIamPolicyResult(GetSystemGetAwsSnsIamPolicyResu
74
73
  id=self.id)
75
74
 
76
75
 
77
- def get_system_get_aws_sns_iam_policy(aws_sns_topic_arn: Optional[builtins.str] = None,
76
+ def get_system_get_aws_sns_iam_policy(aws_sns_topic_arn: Optional[_builtins.str] = None,
78
77
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSystemGetAwsSnsIamPolicyResult:
79
78
  """
80
79
  ## Example Usage
@@ -89,7 +88,7 @@ def get_system_get_aws_sns_iam_policy(aws_sns_topic_arn: Optional[builtins.str]
89
88
  > **Note** If a field has a default value, it is shown next to the type in the schema.
90
89
 
91
90
 
92
- :param builtins.str aws_sns_topic_arn: Amazon Resource Name (ARN) of the SNS topic for your S3 bucket
91
+ :param _builtins.str aws_sns_topic_arn: Amazon Resource Name (ARN) of the SNS topic for your S3 bucket
93
92
  """
94
93
  __args__ = dict()
95
94
  __args__['awsSnsTopicArn'] = aws_sns_topic_arn
@@ -100,7 +99,7 @@ def get_system_get_aws_sns_iam_policy(aws_sns_topic_arn: Optional[builtins.str]
100
99
  aws_sns_topic_arn=pulumi.get(__ret__, 'aws_sns_topic_arn'),
101
100
  aws_sns_topic_policy_json=pulumi.get(__ret__, 'aws_sns_topic_policy_json'),
102
101
  id=pulumi.get(__ret__, 'id'))
103
- def get_system_get_aws_sns_iam_policy_output(aws_sns_topic_arn: Optional[pulumi.Input[builtins.str]] = None,
102
+ def get_system_get_aws_sns_iam_policy_output(aws_sns_topic_arn: Optional[pulumi.Input[_builtins.str]] = None,
104
103
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSystemGetAwsSnsIamPolicyResult]:
105
104
  """
106
105
  ## Example Usage
@@ -115,7 +114,7 @@ def get_system_get_aws_sns_iam_policy_output(aws_sns_topic_arn: Optional[pulumi.
115
114
  > **Note** If a field has a default value, it is shown next to the type in the schema.
116
115
 
117
116
 
118
- :param builtins.str aws_sns_topic_arn: Amazon Resource Name (ARN) of the SNS topic for your S3 bucket
117
+ :param _builtins.str aws_sns_topic_arn: Amazon Resource Name (ARN) of the SNS topic for your S3 bucket
119
118
  """
120
119
  __args__ = dict()
121
120
  __args__['awsSnsTopicArn'] = aws_sns_topic_arn