pulumi-snowflake 2.3.0a1752907264__py3-none-any.whl → 2.3.0a1753398370__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 (157) hide show
  1. pulumi_snowflake/__init__.py +1 -1
  2. pulumi_snowflake/_inputs.py +16796 -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 +2088 -2089
  21. pulumi_snowflake/database.py +353 -354
  22. pulumi_snowflake/database_role.py +63 -64
  23. pulumi_snowflake/dynamic_table.py +274 -275
  24. pulumi_snowflake/email_notification_integration.py +70 -71
  25. pulumi_snowflake/execute.py +61 -62
  26. pulumi_snowflake/external_function.py +280 -281
  27. pulumi_snowflake/external_oauth_integration.py +288 -289
  28. pulumi_snowflake/external_table.py +246 -247
  29. pulumi_snowflake/external_volume.py +68 -69
  30. pulumi_snowflake/failover_group.py +135 -136
  31. pulumi_snowflake/file_format.py +622 -623
  32. pulumi_snowflake/function_java.py +320 -321
  33. pulumi_snowflake/function_javascript.py +243 -244
  34. pulumi_snowflake/function_python.py +334 -335
  35. pulumi_snowflake/function_scala.py +320 -321
  36. pulumi_snowflake/function_sql.py +226 -227
  37. pulumi_snowflake/get_account_roles.py +16 -17
  38. pulumi_snowflake/get_accounts.py +16 -17
  39. pulumi_snowflake/get_alerts.py +22 -23
  40. pulumi_snowflake/get_compute_pools.py +23 -24
  41. pulumi_snowflake/get_connections.py +10 -11
  42. pulumi_snowflake/get_cortex_search_services.py +18 -19
  43. pulumi_snowflake/get_current_account.py +9 -10
  44. pulumi_snowflake/get_current_role.py +5 -6
  45. pulumi_snowflake/get_database.py +25 -26
  46. pulumi_snowflake/get_database_role.py +19 -20
  47. pulumi_snowflake/get_database_roles.py +17 -18
  48. pulumi_snowflake/get_databases.py +29 -30
  49. pulumi_snowflake/get_dynamic_tables.py +13 -14
  50. pulumi_snowflake/get_external_functions.py +16 -17
  51. pulumi_snowflake/get_external_tables.py +16 -17
  52. pulumi_snowflake/get_failover_groups.py +10 -11
  53. pulumi_snowflake/get_file_formats.py +16 -17
  54. pulumi_snowflake/get_functions.py +16 -17
  55. pulumi_snowflake/get_git_repositories.py +18 -19
  56. pulumi_snowflake/get_grants.py +9 -10
  57. pulumi_snowflake/get_image_repositories.py +11 -12
  58. pulumi_snowflake/get_masking_policies.py +18 -19
  59. pulumi_snowflake/get_materialized_views.py +16 -17
  60. pulumi_snowflake/get_network_policies.py +16 -17
  61. pulumi_snowflake/get_parameters.py +34 -35
  62. pulumi_snowflake/get_pipes.py +16 -17
  63. pulumi_snowflake/get_procedures.py +16 -17
  64. pulumi_snowflake/get_resource_monitors.py +10 -11
  65. pulumi_snowflake/get_row_access_policies.py +18 -19
  66. pulumi_snowflake/get_schemas.py +30 -31
  67. pulumi_snowflake/get_secrets.py +17 -18
  68. pulumi_snowflake/get_security_integrations.py +16 -17
  69. pulumi_snowflake/get_sequences.py +16 -17
  70. pulumi_snowflake/get_services.py +30 -31
  71. pulumi_snowflake/get_shares.py +10 -11
  72. pulumi_snowflake/get_stages.py +16 -17
  73. pulumi_snowflake/get_storage_integrations.py +4 -5
  74. pulumi_snowflake/get_streamlits.py +18 -19
  75. pulumi_snowflake/get_streams.py +24 -25
  76. pulumi_snowflake/get_system_generate_scim_access_token.py +11 -12
  77. pulumi_snowflake/get_system_get_aws_sns_iam_policy.py +11 -12
  78. pulumi_snowflake/get_system_get_private_link_config.py +21 -22
  79. pulumi_snowflake/get_system_get_snowflake_platform_info.py +7 -8
  80. pulumi_snowflake/get_tables.py +24 -25
  81. pulumi_snowflake/get_tags.py +11 -12
  82. pulumi_snowflake/get_tasks.py +30 -31
  83. pulumi_snowflake/get_users.py +29 -30
  84. pulumi_snowflake/get_views.py +24 -25
  85. pulumi_snowflake/get_warehouses.py +22 -23
  86. pulumi_snowflake/git_repository.py +133 -134
  87. pulumi_snowflake/grant_account_role.py +52 -53
  88. pulumi_snowflake/grant_application_role.py +52 -53
  89. pulumi_snowflake/grant_database_role.py +69 -70
  90. pulumi_snowflake/grant_ownership.py +55 -56
  91. pulumi_snowflake/grant_privileges_to_account_role.py +125 -126
  92. pulumi_snowflake/grant_privileges_to_database_role.py +122 -123
  93. pulumi_snowflake/grant_privileges_to_share.py +154 -155
  94. pulumi_snowflake/image_repository.py +80 -81
  95. pulumi_snowflake/job_service.py +148 -149
  96. pulumi_snowflake/legacy_service_user.py +1269 -1270
  97. pulumi_snowflake/managed_account.py +140 -141
  98. pulumi_snowflake/masking_policy.py +136 -137
  99. pulumi_snowflake/materialized_view.py +149 -150
  100. pulumi_snowflake/network_policy.py +116 -117
  101. pulumi_snowflake/network_policy_attachment.py +52 -53
  102. pulumi_snowflake/network_rule.py +129 -130
  103. pulumi_snowflake/notification_integration.py +298 -299
  104. pulumi_snowflake/oauth_integration_for_custom_clients.py +263 -264
  105. pulumi_snowflake/oauth_integration_for_partner_applications.py +169 -170
  106. pulumi_snowflake/object_parameter.py +72 -73
  107. pulumi_snowflake/outputs.py +15510 -15511
  108. pulumi_snowflake/password_policy.py +299 -300
  109. pulumi_snowflake/pipe.py +181 -182
  110. pulumi_snowflake/primary_connection.py +70 -71
  111. pulumi_snowflake/procedure_java.py +341 -342
  112. pulumi_snowflake/procedure_javascript.py +247 -248
  113. pulumi_snowflake/procedure_python.py +338 -339
  114. pulumi_snowflake/procedure_scala.py +341 -342
  115. pulumi_snowflake/procedure_sql.py +247 -248
  116. pulumi_snowflake/provider.py +377 -378
  117. pulumi_snowflake/pulumi-plugin.json +1 -1
  118. pulumi_snowflake/resource_monitor.py +165 -166
  119. pulumi_snowflake/row_access_policy.py +102 -103
  120. pulumi_snowflake/saml2_integration.py +303 -304
  121. pulumi_snowflake/schema.py +390 -391
  122. pulumi_snowflake/scim_integration.py +133 -134
  123. pulumi_snowflake/secondary_connection.py +72 -73
  124. pulumi_snowflake/secondary_database.py +350 -351
  125. pulumi_snowflake/secret_with_authorization_code_grant.py +138 -139
  126. pulumi_snowflake/secret_with_basic_authentication.py +121 -122
  127. pulumi_snowflake/secret_with_client_credentials.py +125 -126
  128. pulumi_snowflake/secret_with_generic_string.py +104 -105
  129. pulumi_snowflake/sequence.py +121 -122
  130. pulumi_snowflake/service.py +233 -234
  131. pulumi_snowflake/service_user.py +1239 -1240
  132. pulumi_snowflake/share.py +61 -62
  133. pulumi_snowflake/shared_database.py +299 -300
  134. pulumi_snowflake/stage.py +234 -235
  135. pulumi_snowflake/storage_integration.py +230 -231
  136. pulumi_snowflake/stream_on_directory_table.py +128 -129
  137. pulumi_snowflake/stream_on_external_table.py +151 -152
  138. pulumi_snowflake/stream_on_table.py +164 -165
  139. pulumi_snowflake/stream_on_view.py +164 -165
  140. pulumi_snowflake/streamlit.py +184 -185
  141. pulumi_snowflake/table.py +147 -148
  142. pulumi_snowflake/table_column_masking_policy_application.py +52 -53
  143. pulumi_snowflake/table_constraint.py +191 -192
  144. pulumi_snowflake/tag.py +114 -115
  145. pulumi_snowflake/tag_association.py +86 -87
  146. pulumi_snowflake/task.py +1224 -1225
  147. pulumi_snowflake/user.py +1346 -1347
  148. pulumi_snowflake/user_authentication_policy_attachment.py +35 -36
  149. pulumi_snowflake/user_password_policy_attachment.py +35 -36
  150. pulumi_snowflake/user_public_keys.py +52 -53
  151. pulumi_snowflake/view.py +187 -188
  152. pulumi_snowflake/warehouse.py +286 -287
  153. {pulumi_snowflake-2.3.0a1752907264.dist-info → pulumi_snowflake-2.3.0a1753398370.dist-info}/METADATA +1 -1
  154. pulumi_snowflake-2.3.0a1753398370.dist-info/RECORD +158 -0
  155. pulumi_snowflake-2.3.0a1752907264.dist-info/RECORD +0 -158
  156. {pulumi_snowflake-2.3.0a1752907264.dist-info → pulumi_snowflake-2.3.0a1753398370.dist-info}/WHEEL +0 -0
  157. {pulumi_snowflake-2.3.0a1752907264.dist-info → pulumi_snowflake-2.3.0a1753398370.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
@@ -22,21 +21,21 @@ __all__ = ['SecretWithAuthorizationCodeGrantArgs', 'SecretWithAuthorizationCodeG
22
21
  @pulumi.input_type
23
22
  class SecretWithAuthorizationCodeGrantArgs:
24
23
  def __init__(__self__, *,
25
- api_authentication: pulumi.Input[builtins.str],
26
- database: pulumi.Input[builtins.str],
27
- oauth_refresh_token: pulumi.Input[builtins.str],
28
- oauth_refresh_token_expiry_time: pulumi.Input[builtins.str],
29
- schema: pulumi.Input[builtins.str],
30
- comment: Optional[pulumi.Input[builtins.str]] = None,
31
- name: Optional[pulumi.Input[builtins.str]] = None):
24
+ api_authentication: pulumi.Input[_builtins.str],
25
+ database: pulumi.Input[_builtins.str],
26
+ oauth_refresh_token: pulumi.Input[_builtins.str],
27
+ oauth_refresh_token_expiry_time: pulumi.Input[_builtins.str],
28
+ schema: pulumi.Input[_builtins.str],
29
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
30
+ name: Optional[pulumi.Input[_builtins.str]] = None):
32
31
  """
33
32
  The set of arguments for constructing a SecretWithAuthorizationCodeGrant resource.
34
- :param pulumi.Input[builtins.str] api_authentication: Specifies the name value of the Snowflake security integration that connects Snowflake to an external service. For more information about this resource, see docs.
35
- :param pulumi.Input[builtins.str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
36
- :param pulumi.Input[builtins.str] oauth_refresh_token_expiry_time: Specifies the timestamp as a string when the OAuth refresh token expires. Accepted string formats: YYYY-MM-DD, YYYY-MM-DD HH:MI, YYYY-MM-DD HH:MI:SS, YYYY-MM-DD HH:MI \\n\\n
37
- :param pulumi.Input[builtins.str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
38
- :param pulumi.Input[builtins.str] comment: Specifies a comment for the secret.
39
- :param pulumi.Input[builtins.str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
33
+ :param pulumi.Input[_builtins.str] api_authentication: Specifies the name value of the Snowflake security integration that connects Snowflake to an external service. For more information about this resource, see docs.
34
+ :param pulumi.Input[_builtins.str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
35
+ :param pulumi.Input[_builtins.str] oauth_refresh_token_expiry_time: Specifies the timestamp as a string when the OAuth refresh token expires. Accepted string formats: YYYY-MM-DD, YYYY-MM-DD HH:MI, YYYY-MM-DD HH:MI:SS, YYYY-MM-DD HH:MI \\n\\n
36
+ :param pulumi.Input[_builtins.str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
37
+ :param pulumi.Input[_builtins.str] comment: Specifies a comment for the secret.
38
+ :param pulumi.Input[_builtins.str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
40
39
  """
41
40
  pulumi.set(__self__, "api_authentication", api_authentication)
42
41
  pulumi.set(__self__, "database", database)
@@ -48,113 +47,113 @@ class SecretWithAuthorizationCodeGrantArgs:
48
47
  if name is not None:
49
48
  pulumi.set(__self__, "name", name)
50
49
 
51
- @property
50
+ @_builtins.property
52
51
  @pulumi.getter(name="apiAuthentication")
53
- def api_authentication(self) -> pulumi.Input[builtins.str]:
52
+ def api_authentication(self) -> pulumi.Input[_builtins.str]:
54
53
  """
55
54
  Specifies the name value of the Snowflake security integration that connects Snowflake to an external service. For more information about this resource, see docs.
56
55
  """
57
56
  return pulumi.get(self, "api_authentication")
58
57
 
59
58
  @api_authentication.setter
60
- def api_authentication(self, value: pulumi.Input[builtins.str]):
59
+ def api_authentication(self, value: pulumi.Input[_builtins.str]):
61
60
  pulumi.set(self, "api_authentication", value)
62
61
 
63
- @property
62
+ @_builtins.property
64
63
  @pulumi.getter
65
- def database(self) -> pulumi.Input[builtins.str]:
64
+ def database(self) -> pulumi.Input[_builtins.str]:
66
65
  """
67
66
  The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
68
67
  """
69
68
  return pulumi.get(self, "database")
70
69
 
71
70
  @database.setter
72
- def database(self, value: pulumi.Input[builtins.str]):
71
+ def database(self, value: pulumi.Input[_builtins.str]):
73
72
  pulumi.set(self, "database", value)
74
73
 
75
- @property
74
+ @_builtins.property
76
75
  @pulumi.getter(name="oauthRefreshToken")
77
- def oauth_refresh_token(self) -> pulumi.Input[builtins.str]:
76
+ def oauth_refresh_token(self) -> pulumi.Input[_builtins.str]:
78
77
  return pulumi.get(self, "oauth_refresh_token")
79
78
 
80
79
  @oauth_refresh_token.setter
81
- def oauth_refresh_token(self, value: pulumi.Input[builtins.str]):
80
+ def oauth_refresh_token(self, value: pulumi.Input[_builtins.str]):
82
81
  pulumi.set(self, "oauth_refresh_token", value)
83
82
 
84
- @property
83
+ @_builtins.property
85
84
  @pulumi.getter(name="oauthRefreshTokenExpiryTime")
86
- def oauth_refresh_token_expiry_time(self) -> pulumi.Input[builtins.str]:
85
+ def oauth_refresh_token_expiry_time(self) -> pulumi.Input[_builtins.str]:
87
86
  """
88
87
  Specifies the timestamp as a string when the OAuth refresh token expires. Accepted string formats: YYYY-MM-DD, YYYY-MM-DD HH:MI, YYYY-MM-DD HH:MI:SS, YYYY-MM-DD HH:MI \\n\\n
89
88
  """
90
89
  return pulumi.get(self, "oauth_refresh_token_expiry_time")
91
90
 
92
91
  @oauth_refresh_token_expiry_time.setter
93
- def oauth_refresh_token_expiry_time(self, value: pulumi.Input[builtins.str]):
92
+ def oauth_refresh_token_expiry_time(self, value: pulumi.Input[_builtins.str]):
94
93
  pulumi.set(self, "oauth_refresh_token_expiry_time", value)
95
94
 
96
- @property
95
+ @_builtins.property
97
96
  @pulumi.getter
98
- def schema(self) -> pulumi.Input[builtins.str]:
97
+ def schema(self) -> pulumi.Input[_builtins.str]:
99
98
  """
100
99
  The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
101
100
  """
102
101
  return pulumi.get(self, "schema")
103
102
 
104
103
  @schema.setter
105
- def schema(self, value: pulumi.Input[builtins.str]):
104
+ def schema(self, value: pulumi.Input[_builtins.str]):
106
105
  pulumi.set(self, "schema", value)
107
106
 
108
- @property
107
+ @_builtins.property
109
108
  @pulumi.getter
110
- def comment(self) -> Optional[pulumi.Input[builtins.str]]:
109
+ def comment(self) -> Optional[pulumi.Input[_builtins.str]]:
111
110
  """
112
111
  Specifies a comment for the secret.
113
112
  """
114
113
  return pulumi.get(self, "comment")
115
114
 
116
115
  @comment.setter
117
- def comment(self, value: Optional[pulumi.Input[builtins.str]]):
116
+ def comment(self, value: Optional[pulumi.Input[_builtins.str]]):
118
117
  pulumi.set(self, "comment", value)
119
118
 
120
- @property
119
+ @_builtins.property
121
120
  @pulumi.getter
122
- def name(self) -> Optional[pulumi.Input[builtins.str]]:
121
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
123
122
  """
124
123
  String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
125
124
  """
126
125
  return pulumi.get(self, "name")
127
126
 
128
127
  @name.setter
129
- def name(self, value: Optional[pulumi.Input[builtins.str]]):
128
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
130
129
  pulumi.set(self, "name", value)
131
130
 
132
131
 
133
132
  @pulumi.input_type
134
133
  class _SecretWithAuthorizationCodeGrantState:
135
134
  def __init__(__self__, *,
136
- api_authentication: Optional[pulumi.Input[builtins.str]] = None,
137
- comment: Optional[pulumi.Input[builtins.str]] = None,
138
- database: Optional[pulumi.Input[builtins.str]] = None,
135
+ api_authentication: Optional[pulumi.Input[_builtins.str]] = None,
136
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
137
+ database: Optional[pulumi.Input[_builtins.str]] = None,
139
138
  describe_outputs: Optional[pulumi.Input[Sequence[pulumi.Input['SecretWithAuthorizationCodeGrantDescribeOutputArgs']]]] = None,
140
- fully_qualified_name: Optional[pulumi.Input[builtins.str]] = None,
141
- name: Optional[pulumi.Input[builtins.str]] = None,
142
- oauth_refresh_token: Optional[pulumi.Input[builtins.str]] = None,
143
- oauth_refresh_token_expiry_time: Optional[pulumi.Input[builtins.str]] = None,
144
- schema: Optional[pulumi.Input[builtins.str]] = None,
145
- secret_type: Optional[pulumi.Input[builtins.str]] = None,
139
+ fully_qualified_name: Optional[pulumi.Input[_builtins.str]] = None,
140
+ name: Optional[pulumi.Input[_builtins.str]] = None,
141
+ oauth_refresh_token: Optional[pulumi.Input[_builtins.str]] = None,
142
+ oauth_refresh_token_expiry_time: Optional[pulumi.Input[_builtins.str]] = None,
143
+ schema: Optional[pulumi.Input[_builtins.str]] = None,
144
+ secret_type: Optional[pulumi.Input[_builtins.str]] = None,
146
145
  show_outputs: Optional[pulumi.Input[Sequence[pulumi.Input['SecretWithAuthorizationCodeGrantShowOutputArgs']]]] = None):
147
146
  """
148
147
  Input properties used for looking up and filtering SecretWithAuthorizationCodeGrant resources.
149
- :param pulumi.Input[builtins.str] api_authentication: Specifies the name value of the Snowflake security integration that connects Snowflake to an external service. For more information about this resource, see docs.
150
- :param pulumi.Input[builtins.str] comment: Specifies a comment for the secret.
151
- :param pulumi.Input[builtins.str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
148
+ :param pulumi.Input[_builtins.str] api_authentication: Specifies the name value of the Snowflake security integration that connects Snowflake to an external service. For more information about this resource, see docs.
149
+ :param pulumi.Input[_builtins.str] comment: Specifies a comment for the secret.
150
+ :param pulumi.Input[_builtins.str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
152
151
  :param pulumi.Input[Sequence[pulumi.Input['SecretWithAuthorizationCodeGrantDescribeOutputArgs']]] describe_outputs: Outputs the result of `DESCRIBE SECRET` for the given secret.
153
- :param pulumi.Input[builtins.str] fully_qualified_name: Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
154
- :param pulumi.Input[builtins.str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
155
- :param pulumi.Input[builtins.str] oauth_refresh_token_expiry_time: Specifies the timestamp as a string when the OAuth refresh token expires. Accepted string formats: YYYY-MM-DD, YYYY-MM-DD HH:MI, YYYY-MM-DD HH:MI:SS, YYYY-MM-DD HH:MI \\n\\n
156
- :param pulumi.Input[builtins.str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
157
- :param pulumi.Input[builtins.str] secret_type: Specifies a type for the secret. This field is used for checking external changes and recreating the resources if needed.
152
+ :param pulumi.Input[_builtins.str] fully_qualified_name: Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
153
+ :param pulumi.Input[_builtins.str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
154
+ :param pulumi.Input[_builtins.str] oauth_refresh_token_expiry_time: Specifies the timestamp as a string when the OAuth refresh token expires. Accepted string formats: YYYY-MM-DD, YYYY-MM-DD HH:MI, YYYY-MM-DD HH:MI:SS, YYYY-MM-DD HH:MI \\n\\n
155
+ :param pulumi.Input[_builtins.str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
156
+ :param pulumi.Input[_builtins.str] secret_type: Specifies a type for the secret. This field is used for checking external changes and recreating the resources if needed.
158
157
  :param pulumi.Input[Sequence[pulumi.Input['SecretWithAuthorizationCodeGrantShowOutputArgs']]] show_outputs: Outputs the result of `SHOW SECRETS` for the given secret.
159
158
  """
160
159
  if api_authentication is not None:
@@ -180,43 +179,43 @@ class _SecretWithAuthorizationCodeGrantState:
180
179
  if show_outputs is not None:
181
180
  pulumi.set(__self__, "show_outputs", show_outputs)
182
181
 
183
- @property
182
+ @_builtins.property
184
183
  @pulumi.getter(name="apiAuthentication")
185
- def api_authentication(self) -> Optional[pulumi.Input[builtins.str]]:
184
+ def api_authentication(self) -> Optional[pulumi.Input[_builtins.str]]:
186
185
  """
187
186
  Specifies the name value of the Snowflake security integration that connects Snowflake to an external service. For more information about this resource, see docs.
188
187
  """
189
188
  return pulumi.get(self, "api_authentication")
190
189
 
191
190
  @api_authentication.setter
192
- def api_authentication(self, value: Optional[pulumi.Input[builtins.str]]):
191
+ def api_authentication(self, value: Optional[pulumi.Input[_builtins.str]]):
193
192
  pulumi.set(self, "api_authentication", value)
194
193
 
195
- @property
194
+ @_builtins.property
196
195
  @pulumi.getter
197
- def comment(self) -> Optional[pulumi.Input[builtins.str]]:
196
+ def comment(self) -> Optional[pulumi.Input[_builtins.str]]:
198
197
  """
199
198
  Specifies a comment for the secret.
200
199
  """
201
200
  return pulumi.get(self, "comment")
202
201
 
203
202
  @comment.setter
204
- def comment(self, value: Optional[pulumi.Input[builtins.str]]):
203
+ def comment(self, value: Optional[pulumi.Input[_builtins.str]]):
205
204
  pulumi.set(self, "comment", value)
206
205
 
207
- @property
206
+ @_builtins.property
208
207
  @pulumi.getter
209
- def database(self) -> Optional[pulumi.Input[builtins.str]]:
208
+ def database(self) -> Optional[pulumi.Input[_builtins.str]]:
210
209
  """
211
210
  The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
212
211
  """
213
212
  return pulumi.get(self, "database")
214
213
 
215
214
  @database.setter
216
- def database(self, value: Optional[pulumi.Input[builtins.str]]):
215
+ def database(self, value: Optional[pulumi.Input[_builtins.str]]):
217
216
  pulumi.set(self, "database", value)
218
217
 
219
- @property
218
+ @_builtins.property
220
219
  @pulumi.getter(name="describeOutputs")
221
220
  def describe_outputs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SecretWithAuthorizationCodeGrantDescribeOutputArgs']]]]:
222
221
  """
@@ -228,76 +227,76 @@ class _SecretWithAuthorizationCodeGrantState:
228
227
  def describe_outputs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['SecretWithAuthorizationCodeGrantDescribeOutputArgs']]]]):
229
228
  pulumi.set(self, "describe_outputs", value)
230
229
 
231
- @property
230
+ @_builtins.property
232
231
  @pulumi.getter(name="fullyQualifiedName")
233
- def fully_qualified_name(self) -> Optional[pulumi.Input[builtins.str]]:
232
+ def fully_qualified_name(self) -> Optional[pulumi.Input[_builtins.str]]:
234
233
  """
235
234
  Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
236
235
  """
237
236
  return pulumi.get(self, "fully_qualified_name")
238
237
 
239
238
  @fully_qualified_name.setter
240
- def fully_qualified_name(self, value: Optional[pulumi.Input[builtins.str]]):
239
+ def fully_qualified_name(self, value: Optional[pulumi.Input[_builtins.str]]):
241
240
  pulumi.set(self, "fully_qualified_name", value)
242
241
 
243
- @property
242
+ @_builtins.property
244
243
  @pulumi.getter
245
- def name(self) -> Optional[pulumi.Input[builtins.str]]:
244
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
246
245
  """
247
246
  String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
248
247
  """
249
248
  return pulumi.get(self, "name")
250
249
 
251
250
  @name.setter
252
- def name(self, value: Optional[pulumi.Input[builtins.str]]):
251
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
253
252
  pulumi.set(self, "name", value)
254
253
 
255
- @property
254
+ @_builtins.property
256
255
  @pulumi.getter(name="oauthRefreshToken")
257
- def oauth_refresh_token(self) -> Optional[pulumi.Input[builtins.str]]:
256
+ def oauth_refresh_token(self) -> Optional[pulumi.Input[_builtins.str]]:
258
257
  return pulumi.get(self, "oauth_refresh_token")
259
258
 
260
259
  @oauth_refresh_token.setter
261
- def oauth_refresh_token(self, value: Optional[pulumi.Input[builtins.str]]):
260
+ def oauth_refresh_token(self, value: Optional[pulumi.Input[_builtins.str]]):
262
261
  pulumi.set(self, "oauth_refresh_token", value)
263
262
 
264
- @property
263
+ @_builtins.property
265
264
  @pulumi.getter(name="oauthRefreshTokenExpiryTime")
266
- def oauth_refresh_token_expiry_time(self) -> Optional[pulumi.Input[builtins.str]]:
265
+ def oauth_refresh_token_expiry_time(self) -> Optional[pulumi.Input[_builtins.str]]:
267
266
  """
268
267
  Specifies the timestamp as a string when the OAuth refresh token expires. Accepted string formats: YYYY-MM-DD, YYYY-MM-DD HH:MI, YYYY-MM-DD HH:MI:SS, YYYY-MM-DD HH:MI \\n\\n
269
268
  """
270
269
  return pulumi.get(self, "oauth_refresh_token_expiry_time")
271
270
 
272
271
  @oauth_refresh_token_expiry_time.setter
273
- def oauth_refresh_token_expiry_time(self, value: Optional[pulumi.Input[builtins.str]]):
272
+ def oauth_refresh_token_expiry_time(self, value: Optional[pulumi.Input[_builtins.str]]):
274
273
  pulumi.set(self, "oauth_refresh_token_expiry_time", value)
275
274
 
276
- @property
275
+ @_builtins.property
277
276
  @pulumi.getter
278
- def schema(self) -> Optional[pulumi.Input[builtins.str]]:
277
+ def schema(self) -> Optional[pulumi.Input[_builtins.str]]:
279
278
  """
280
279
  The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
281
280
  """
282
281
  return pulumi.get(self, "schema")
283
282
 
284
283
  @schema.setter
285
- def schema(self, value: Optional[pulumi.Input[builtins.str]]):
284
+ def schema(self, value: Optional[pulumi.Input[_builtins.str]]):
286
285
  pulumi.set(self, "schema", value)
287
286
 
288
- @property
287
+ @_builtins.property
289
288
  @pulumi.getter(name="secretType")
290
- def secret_type(self) -> Optional[pulumi.Input[builtins.str]]:
289
+ def secret_type(self) -> Optional[pulumi.Input[_builtins.str]]:
291
290
  """
292
291
  Specifies a type for the secret. This field is used for checking external changes and recreating the resources if needed.
293
292
  """
294
293
  return pulumi.get(self, "secret_type")
295
294
 
296
295
  @secret_type.setter
297
- def secret_type(self, value: Optional[pulumi.Input[builtins.str]]):
296
+ def secret_type(self, value: Optional[pulumi.Input[_builtins.str]]):
298
297
  pulumi.set(self, "secret_type", value)
299
298
 
300
- @property
299
+ @_builtins.property
301
300
  @pulumi.getter(name="showOutputs")
302
301
  def show_outputs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SecretWithAuthorizationCodeGrantShowOutputArgs']]]]:
303
302
  """
@@ -316,13 +315,13 @@ class SecretWithAuthorizationCodeGrant(pulumi.CustomResource):
316
315
  def __init__(__self__,
317
316
  resource_name: str,
318
317
  opts: Optional[pulumi.ResourceOptions] = None,
319
- api_authentication: Optional[pulumi.Input[builtins.str]] = None,
320
- comment: Optional[pulumi.Input[builtins.str]] = None,
321
- database: Optional[pulumi.Input[builtins.str]] = None,
322
- name: Optional[pulumi.Input[builtins.str]] = None,
323
- oauth_refresh_token: Optional[pulumi.Input[builtins.str]] = None,
324
- oauth_refresh_token_expiry_time: Optional[pulumi.Input[builtins.str]] = None,
325
- schema: Optional[pulumi.Input[builtins.str]] = None,
318
+ api_authentication: Optional[pulumi.Input[_builtins.str]] = None,
319
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
320
+ database: Optional[pulumi.Input[_builtins.str]] = None,
321
+ name: Optional[pulumi.Input[_builtins.str]] = None,
322
+ oauth_refresh_token: Optional[pulumi.Input[_builtins.str]] = None,
323
+ oauth_refresh_token_expiry_time: Optional[pulumi.Input[_builtins.str]] = None,
324
+ schema: Optional[pulumi.Input[_builtins.str]] = None,
326
325
  __props__=None):
327
326
  """
328
327
  ## Import
@@ -333,12 +332,12 @@ class SecretWithAuthorizationCodeGrant(pulumi.CustomResource):
333
332
 
334
333
  :param str resource_name: The name of the resource.
335
334
  :param pulumi.ResourceOptions opts: Options for the resource.
336
- :param pulumi.Input[builtins.str] api_authentication: Specifies the name value of the Snowflake security integration that connects Snowflake to an external service. For more information about this resource, see docs.
337
- :param pulumi.Input[builtins.str] comment: Specifies a comment for the secret.
338
- :param pulumi.Input[builtins.str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
339
- :param pulumi.Input[builtins.str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
340
- :param pulumi.Input[builtins.str] oauth_refresh_token_expiry_time: Specifies the timestamp as a string when the OAuth refresh token expires. Accepted string formats: YYYY-MM-DD, YYYY-MM-DD HH:MI, YYYY-MM-DD HH:MI:SS, YYYY-MM-DD HH:MI \\n\\n
341
- :param pulumi.Input[builtins.str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
335
+ :param pulumi.Input[_builtins.str] api_authentication: Specifies the name value of the Snowflake security integration that connects Snowflake to an external service. For more information about this resource, see docs.
336
+ :param pulumi.Input[_builtins.str] comment: Specifies a comment for the secret.
337
+ :param pulumi.Input[_builtins.str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
338
+ :param pulumi.Input[_builtins.str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
339
+ :param pulumi.Input[_builtins.str] oauth_refresh_token_expiry_time: Specifies the timestamp as a string when the OAuth refresh token expires. Accepted string formats: YYYY-MM-DD, YYYY-MM-DD HH:MI, YYYY-MM-DD HH:MI:SS, YYYY-MM-DD HH:MI \\n\\n
340
+ :param pulumi.Input[_builtins.str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
342
341
  """
343
342
  ...
344
343
  @overload
@@ -368,13 +367,13 @@ class SecretWithAuthorizationCodeGrant(pulumi.CustomResource):
368
367
  def _internal_init(__self__,
369
368
  resource_name: str,
370
369
  opts: Optional[pulumi.ResourceOptions] = None,
371
- api_authentication: Optional[pulumi.Input[builtins.str]] = None,
372
- comment: Optional[pulumi.Input[builtins.str]] = None,
373
- database: Optional[pulumi.Input[builtins.str]] = None,
374
- name: Optional[pulumi.Input[builtins.str]] = None,
375
- oauth_refresh_token: Optional[pulumi.Input[builtins.str]] = None,
376
- oauth_refresh_token_expiry_time: Optional[pulumi.Input[builtins.str]] = None,
377
- schema: Optional[pulumi.Input[builtins.str]] = None,
370
+ api_authentication: Optional[pulumi.Input[_builtins.str]] = None,
371
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
372
+ database: Optional[pulumi.Input[_builtins.str]] = None,
373
+ name: Optional[pulumi.Input[_builtins.str]] = None,
374
+ oauth_refresh_token: Optional[pulumi.Input[_builtins.str]] = None,
375
+ oauth_refresh_token_expiry_time: Optional[pulumi.Input[_builtins.str]] = None,
376
+ schema: Optional[pulumi.Input[_builtins.str]] = None,
378
377
  __props__=None):
379
378
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
380
379
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -417,16 +416,16 @@ class SecretWithAuthorizationCodeGrant(pulumi.CustomResource):
417
416
  def get(resource_name: str,
418
417
  id: pulumi.Input[str],
419
418
  opts: Optional[pulumi.ResourceOptions] = None,
420
- api_authentication: Optional[pulumi.Input[builtins.str]] = None,
421
- comment: Optional[pulumi.Input[builtins.str]] = None,
422
- database: Optional[pulumi.Input[builtins.str]] = None,
419
+ api_authentication: Optional[pulumi.Input[_builtins.str]] = None,
420
+ comment: Optional[pulumi.Input[_builtins.str]] = None,
421
+ database: Optional[pulumi.Input[_builtins.str]] = None,
423
422
  describe_outputs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SecretWithAuthorizationCodeGrantDescribeOutputArgs', 'SecretWithAuthorizationCodeGrantDescribeOutputArgsDict']]]]] = None,
424
- fully_qualified_name: Optional[pulumi.Input[builtins.str]] = None,
425
- name: Optional[pulumi.Input[builtins.str]] = None,
426
- oauth_refresh_token: Optional[pulumi.Input[builtins.str]] = None,
427
- oauth_refresh_token_expiry_time: Optional[pulumi.Input[builtins.str]] = None,
428
- schema: Optional[pulumi.Input[builtins.str]] = None,
429
- secret_type: Optional[pulumi.Input[builtins.str]] = None,
423
+ fully_qualified_name: Optional[pulumi.Input[_builtins.str]] = None,
424
+ name: Optional[pulumi.Input[_builtins.str]] = None,
425
+ oauth_refresh_token: Optional[pulumi.Input[_builtins.str]] = None,
426
+ oauth_refresh_token_expiry_time: Optional[pulumi.Input[_builtins.str]] = None,
427
+ schema: Optional[pulumi.Input[_builtins.str]] = None,
428
+ secret_type: Optional[pulumi.Input[_builtins.str]] = None,
430
429
  show_outputs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SecretWithAuthorizationCodeGrantShowOutputArgs', 'SecretWithAuthorizationCodeGrantShowOutputArgsDict']]]]] = None) -> 'SecretWithAuthorizationCodeGrant':
431
430
  """
432
431
  Get an existing SecretWithAuthorizationCodeGrant resource's state with the given name, id, and optional extra
@@ -435,15 +434,15 @@ class SecretWithAuthorizationCodeGrant(pulumi.CustomResource):
435
434
  :param str resource_name: The unique name of the resulting resource.
436
435
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
437
436
  :param pulumi.ResourceOptions opts: Options for the resource.
438
- :param pulumi.Input[builtins.str] api_authentication: Specifies the name value of the Snowflake security integration that connects Snowflake to an external service. For more information about this resource, see docs.
439
- :param pulumi.Input[builtins.str] comment: Specifies a comment for the secret.
440
- :param pulumi.Input[builtins.str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
437
+ :param pulumi.Input[_builtins.str] api_authentication: Specifies the name value of the Snowflake security integration that connects Snowflake to an external service. For more information about this resource, see docs.
438
+ :param pulumi.Input[_builtins.str] comment: Specifies a comment for the secret.
439
+ :param pulumi.Input[_builtins.str] database: The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
441
440
  :param pulumi.Input[Sequence[pulumi.Input[Union['SecretWithAuthorizationCodeGrantDescribeOutputArgs', 'SecretWithAuthorizationCodeGrantDescribeOutputArgsDict']]]] describe_outputs: Outputs the result of `DESCRIBE SECRET` for the given secret.
442
- :param pulumi.Input[builtins.str] fully_qualified_name: Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
443
- :param pulumi.Input[builtins.str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
444
- :param pulumi.Input[builtins.str] oauth_refresh_token_expiry_time: Specifies the timestamp as a string when the OAuth refresh token expires. Accepted string formats: YYYY-MM-DD, YYYY-MM-DD HH:MI, YYYY-MM-DD HH:MI:SS, YYYY-MM-DD HH:MI \\n\\n
445
- :param pulumi.Input[builtins.str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
446
- :param pulumi.Input[builtins.str] secret_type: Specifies a type for the secret. This field is used for checking external changes and recreating the resources if needed.
441
+ :param pulumi.Input[_builtins.str] fully_qualified_name: Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
442
+ :param pulumi.Input[_builtins.str] name: String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
443
+ :param pulumi.Input[_builtins.str] oauth_refresh_token_expiry_time: Specifies the timestamp as a string when the OAuth refresh token expires. Accepted string formats: YYYY-MM-DD, YYYY-MM-DD HH:MI, YYYY-MM-DD HH:MI:SS, YYYY-MM-DD HH:MI \\n\\n
444
+ :param pulumi.Input[_builtins.str] schema: The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
445
+ :param pulumi.Input[_builtins.str] secret_type: Specifies a type for the secret. This field is used for checking external changes and recreating the resources if needed.
447
446
  :param pulumi.Input[Sequence[pulumi.Input[Union['SecretWithAuthorizationCodeGrantShowOutputArgs', 'SecretWithAuthorizationCodeGrantShowOutputArgsDict']]]] show_outputs: Outputs the result of `SHOW SECRETS` for the given secret.
448
447
  """
449
448
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -463,31 +462,31 @@ class SecretWithAuthorizationCodeGrant(pulumi.CustomResource):
463
462
  __props__.__dict__["show_outputs"] = show_outputs
464
463
  return SecretWithAuthorizationCodeGrant(resource_name, opts=opts, __props__=__props__)
465
464
 
466
- @property
465
+ @_builtins.property
467
466
  @pulumi.getter(name="apiAuthentication")
468
- def api_authentication(self) -> pulumi.Output[builtins.str]:
467
+ def api_authentication(self) -> pulumi.Output[_builtins.str]:
469
468
  """
470
469
  Specifies the name value of the Snowflake security integration that connects Snowflake to an external service. For more information about this resource, see docs.
471
470
  """
472
471
  return pulumi.get(self, "api_authentication")
473
472
 
474
- @property
473
+ @_builtins.property
475
474
  @pulumi.getter
476
- def comment(self) -> pulumi.Output[Optional[builtins.str]]:
475
+ def comment(self) -> pulumi.Output[Optional[_builtins.str]]:
477
476
  """
478
477
  Specifies a comment for the secret.
479
478
  """
480
479
  return pulumi.get(self, "comment")
481
480
 
482
- @property
481
+ @_builtins.property
483
482
  @pulumi.getter
484
- def database(self) -> pulumi.Output[builtins.str]:
483
+ def database(self) -> pulumi.Output[_builtins.str]:
485
484
  """
486
485
  The database in which to create the secret Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
487
486
  """
488
487
  return pulumi.get(self, "database")
489
488
 
490
- @property
489
+ @_builtins.property
491
490
  @pulumi.getter(name="describeOutputs")
492
491
  def describe_outputs(self) -> pulumi.Output[Sequence['outputs.SecretWithAuthorizationCodeGrantDescribeOutput']]:
493
492
  """
@@ -495,52 +494,52 @@ class SecretWithAuthorizationCodeGrant(pulumi.CustomResource):
495
494
  """
496
495
  return pulumi.get(self, "describe_outputs")
497
496
 
498
- @property
497
+ @_builtins.property
499
498
  @pulumi.getter(name="fullyQualifiedName")
500
- def fully_qualified_name(self) -> pulumi.Output[builtins.str]:
499
+ def fully_qualified_name(self) -> pulumi.Output[_builtins.str]:
501
500
  """
502
501
  Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
503
502
  """
504
503
  return pulumi.get(self, "fully_qualified_name")
505
504
 
506
- @property
505
+ @_builtins.property
507
506
  @pulumi.getter
508
- def name(self) -> pulumi.Output[builtins.str]:
507
+ def name(self) -> pulumi.Output[_builtins.str]:
509
508
  """
510
509
  String that specifies the identifier (i.e. name) for the secret, must be unique in your schema. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
511
510
  """
512
511
  return pulumi.get(self, "name")
513
512
 
514
- @property
513
+ @_builtins.property
515
514
  @pulumi.getter(name="oauthRefreshToken")
516
- def oauth_refresh_token(self) -> pulumi.Output[builtins.str]:
515
+ def oauth_refresh_token(self) -> pulumi.Output[_builtins.str]:
517
516
  return pulumi.get(self, "oauth_refresh_token")
518
517
 
519
- @property
518
+ @_builtins.property
520
519
  @pulumi.getter(name="oauthRefreshTokenExpiryTime")
521
- def oauth_refresh_token_expiry_time(self) -> pulumi.Output[builtins.str]:
520
+ def oauth_refresh_token_expiry_time(self) -> pulumi.Output[_builtins.str]:
522
521
  """
523
522
  Specifies the timestamp as a string when the OAuth refresh token expires. Accepted string formats: YYYY-MM-DD, YYYY-MM-DD HH:MI, YYYY-MM-DD HH:MI:SS, YYYY-MM-DD HH:MI \\n\\n
524
523
  """
525
524
  return pulumi.get(self, "oauth_refresh_token_expiry_time")
526
525
 
527
- @property
526
+ @_builtins.property
528
527
  @pulumi.getter
529
- def schema(self) -> pulumi.Output[builtins.str]:
528
+ def schema(self) -> pulumi.Output[_builtins.str]:
530
529
  """
531
530
  The schema in which to create the secret. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
532
531
  """
533
532
  return pulumi.get(self, "schema")
534
533
 
535
- @property
534
+ @_builtins.property
536
535
  @pulumi.getter(name="secretType")
537
- def secret_type(self) -> pulumi.Output[builtins.str]:
536
+ def secret_type(self) -> pulumi.Output[_builtins.str]:
538
537
  """
539
538
  Specifies a type for the secret. This field is used for checking external changes and recreating the resources if needed.
540
539
  """
541
540
  return pulumi.get(self, "secret_type")
542
541
 
543
- @property
542
+ @_builtins.property
544
543
  @pulumi.getter(name="showOutputs")
545
544
  def show_outputs(self) -> pulumi.Output[Sequence['outputs.SecretWithAuthorizationCodeGrantShowOutput']]:
546
545
  """