looker-sdk 24.8.0__py3-none-any.whl → 24.10.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.
- looker_sdk/sdk/api40/methods.py +1 -0
- looker_sdk/sdk/api40/models.py +14 -2
- looker_sdk/sdk/constants.py +1 -1
- looker_sdk/version.py +1 -1
- {looker_sdk-24.8.0.dist-info → looker_sdk-24.10.0.dist-info}/METADATA +1 -1
- {looker_sdk-24.8.0.dist-info → looker_sdk-24.10.0.dist-info}/RECORD +9 -9
- {looker_sdk-24.8.0.dist-info → looker_sdk-24.10.0.dist-info}/LICENSE.txt +0 -0
- {looker_sdk-24.8.0.dist-info → looker_sdk-24.10.0.dist-info}/WHEEL +0 -0
- {looker_sdk-24.8.0.dist-info → looker_sdk-24.10.0.dist-info}/top_level.txt +0 -0
looker_sdk/sdk/api40/methods.py
CHANGED
|
@@ -12874,6 +12874,7 @@ class Looker40SDK(api_methods.APIMethods):
|
|
|
12874
12874
|
# associated credentials. Will overwrite all associated email addresses with
|
|
12875
12875
|
# the value supplied in the 'email' body param.
|
|
12876
12876
|
# The user's 'is_disabled' status must be true.
|
|
12877
|
+
# If the user has a credential email, they will receive a verification email and the user will be disabled until they verify the email
|
|
12877
12878
|
#
|
|
12878
12879
|
# Calls to this endpoint may be denied by [Looker (Google Cloud core)](https://cloud.google.com/looker/docs/r/looker-core/overview).
|
|
12879
12880
|
#
|
looker_sdk/sdk/api40/models.py
CHANGED
|
@@ -4069,6 +4069,7 @@ class DialectInfo(model.Model):
|
|
|
4069
4069
|
installed: Is the supporting driver installed
|
|
4070
4070
|
label: The human-readable label of the connection
|
|
4071
4071
|
label_for_database_equivalent: What the dialect calls the equivalent of a normal SQL table
|
|
4072
|
+
label_for_schema_equivalent: What the dialect calls the equivalent of a schema-level namespace
|
|
4072
4073
|
name: The name of the dialect
|
|
4073
4074
|
supported_options:
|
|
4074
4075
|
"""
|
|
@@ -4079,6 +4080,7 @@ class DialectInfo(model.Model):
|
|
|
4079
4080
|
installed: Optional[bool] = None
|
|
4080
4081
|
label: Optional[str] = None
|
|
4081
4082
|
label_for_database_equivalent: Optional[str] = None
|
|
4083
|
+
label_for_schema_equivalent: Optional[str] = None
|
|
4082
4084
|
name: Optional[str] = None
|
|
4083
4085
|
supported_options: Optional["DialectInfoOptions"] = None
|
|
4084
4086
|
|
|
@@ -4091,6 +4093,7 @@ class DialectInfo(model.Model):
|
|
|
4091
4093
|
installed: Optional[bool] = None,
|
|
4092
4094
|
label: Optional[str] = None,
|
|
4093
4095
|
label_for_database_equivalent: Optional[str] = None,
|
|
4096
|
+
label_for_schema_equivalent: Optional[str] = None,
|
|
4094
4097
|
name: Optional[str] = None,
|
|
4095
4098
|
supported_options: Optional["DialectInfoOptions"] = None
|
|
4096
4099
|
):
|
|
@@ -4100,6 +4103,7 @@ class DialectInfo(model.Model):
|
|
|
4100
4103
|
self.installed = installed
|
|
4101
4104
|
self.label = label
|
|
4102
4105
|
self.label_for_database_equivalent = label_for_database_equivalent
|
|
4106
|
+
self.label_for_schema_equivalent = label_for_schema_equivalent
|
|
4103
4107
|
self.name = name
|
|
4104
4108
|
self.supported_options = supported_options
|
|
4105
4109
|
|
|
@@ -4675,6 +4679,7 @@ class ExternalOauthApplication(model.Model):
|
|
|
4675
4679
|
name: The name of this application. For Snowflake connections, this should be the name of the host database.
|
|
4676
4680
|
client_id: The OAuth Client ID for this application
|
|
4677
4681
|
client_secret: (Write-Only) The OAuth Client Secret for this application
|
|
4682
|
+
tenant_id: The OAuth Tenant ID for this application
|
|
4678
4683
|
dialect_name: The database dialect for this application.
|
|
4679
4684
|
created_at: Creation time for this application
|
|
4680
4685
|
"""
|
|
@@ -4684,6 +4689,7 @@ class ExternalOauthApplication(model.Model):
|
|
|
4684
4689
|
name: Optional[str] = None
|
|
4685
4690
|
client_id: Optional[str] = None
|
|
4686
4691
|
client_secret: Optional[str] = None
|
|
4692
|
+
tenant_id: Optional[str] = None
|
|
4687
4693
|
dialect_name: Optional[str] = None
|
|
4688
4694
|
created_at: Optional[datetime.datetime] = None
|
|
4689
4695
|
|
|
@@ -4695,6 +4701,7 @@ class ExternalOauthApplication(model.Model):
|
|
|
4695
4701
|
name: Optional[str] = None,
|
|
4696
4702
|
client_id: Optional[str] = None,
|
|
4697
4703
|
client_secret: Optional[str] = None,
|
|
4704
|
+
tenant_id: Optional[str] = None,
|
|
4698
4705
|
dialect_name: Optional[str] = None,
|
|
4699
4706
|
created_at: Optional[datetime.datetime] = None
|
|
4700
4707
|
):
|
|
@@ -4703,6 +4710,7 @@ class ExternalOauthApplication(model.Model):
|
|
|
4703
4710
|
self.name = name
|
|
4704
4711
|
self.client_id = client_id
|
|
4705
4712
|
self.client_secret = client_secret
|
|
4713
|
+
self.tenant_id = tenant_id
|
|
4706
4714
|
self.dialect_name = dialect_name
|
|
4707
4715
|
self.created_at = created_at
|
|
4708
4716
|
|
|
@@ -9288,7 +9296,7 @@ class Query(model.Model):
|
|
|
9288
9296
|
fields: Fields
|
|
9289
9297
|
pivots: Pivots
|
|
9290
9298
|
fill_fields: Fill Fields
|
|
9291
|
-
filters: Filters
|
|
9299
|
+
filters: Filters will contain data pertaining to complex filters that do not contain "or" conditions. When "or" conditions are present, filter data will be found on the `filter_expression` property.
|
|
9292
9300
|
filter_expression: Filter Expression
|
|
9293
9301
|
sorts: Sorting for the query results. Use the format `["view.field", ...]` to sort on fields in ascending order. Use the format `["view.field desc", ...]` to sort on fields in descending order. Use `["__UNSORTED__"]` (2 underscores before and after) to disable sorting entirely. Empty sorts `[]` will trigger a default sort.
|
|
9294
9302
|
limit: Limit
|
|
@@ -13675,12 +13683,14 @@ class WriteExternalOauthApplication(model.Model):
|
|
|
13675
13683
|
name: The name of this application. For Snowflake connections, this should be the name of the host database.
|
|
13676
13684
|
client_id: The OAuth Client ID for this application
|
|
13677
13685
|
client_secret: (Write-Only) The OAuth Client Secret for this application
|
|
13686
|
+
tenant_id: The OAuth Tenant ID for this application
|
|
13678
13687
|
dialect_name: The database dialect for this application.
|
|
13679
13688
|
"""
|
|
13680
13689
|
|
|
13681
13690
|
name: Optional[str] = None
|
|
13682
13691
|
client_id: Optional[str] = None
|
|
13683
13692
|
client_secret: Optional[str] = None
|
|
13693
|
+
tenant_id: Optional[str] = None
|
|
13684
13694
|
dialect_name: Optional[str] = None
|
|
13685
13695
|
|
|
13686
13696
|
def __init__(
|
|
@@ -13689,11 +13699,13 @@ class WriteExternalOauthApplication(model.Model):
|
|
|
13689
13699
|
name: Optional[str] = None,
|
|
13690
13700
|
client_id: Optional[str] = None,
|
|
13691
13701
|
client_secret: Optional[str] = None,
|
|
13702
|
+
tenant_id: Optional[str] = None,
|
|
13692
13703
|
dialect_name: Optional[str] = None
|
|
13693
13704
|
):
|
|
13694
13705
|
self.name = name
|
|
13695
13706
|
self.client_id = client_id
|
|
13696
13707
|
self.client_secret = client_secret
|
|
13708
|
+
self.tenant_id = tenant_id
|
|
13697
13709
|
self.dialect_name = dialect_name
|
|
13698
13710
|
|
|
13699
13711
|
|
|
@@ -14576,7 +14588,7 @@ class WriteQuery(model.Model):
|
|
|
14576
14588
|
fields: Fields
|
|
14577
14589
|
pivots: Pivots
|
|
14578
14590
|
fill_fields: Fill Fields
|
|
14579
|
-
filters: Filters
|
|
14591
|
+
filters: Filters will contain data pertaining to complex filters that do not contain "or" conditions. When "or" conditions are present, filter data will be found on the `filter_expression` property.
|
|
14580
14592
|
filter_expression: Filter Expression
|
|
14581
14593
|
sorts: Sorting for the query results. Use the format `["view.field", ...]` to sort on fields in ascending order. Use the format `["view.field desc", ...]` to sort on fields in descending order. Use `["__UNSORTED__"]` (2 underscores before and after) to disable sorting entirely. Empty sorts `[]` will trigger a default sort.
|
|
14582
14594
|
limit: Limit
|
looker_sdk/sdk/constants.py
CHANGED
looker_sdk/version.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
looker_sdk/__init__.py,sha256=0UOw2v-BP1bNoBIIm-BnyKUpGQB3Zx-JZRmpYyLiIuY,2589
|
|
2
2
|
looker_sdk/error.py,sha256=_FqZUxPXZtBazXQh0vT2QJCwe2NCUacZNaTtGf_o9Xg,4917
|
|
3
3
|
looker_sdk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
looker_sdk/version.py,sha256=
|
|
4
|
+
looker_sdk/version.py,sha256=cT7RIB_33Go3w_XbHoOoWMpsRMfYHti1fQaTlkNVunI,1156
|
|
5
5
|
looker_sdk/rtl/__init__.py,sha256=hgj6CO_Du2XcJ4bRYbhaVS3dvLxjCqPQDR8KwD9IPTQ,1132
|
|
6
6
|
looker_sdk/rtl/api_methods.py,sha256=J-dm7UMyJajsJDCB0JMpGUmp80I8oPMs7cggdIaCWng,8862
|
|
7
7
|
looker_sdk/rtl/api_settings.py,sha256=0QbmNhfgjBJNnr1CNEMxCHoiu908jT8amAtSAha1xS8,6953
|
|
@@ -14,10 +14,10 @@ looker_sdk/rtl/requests_transport.py,sha256=2lckuJyjeySAuAn7v-RA_xTjjWe53uCCLSWg
|
|
|
14
14
|
looker_sdk/rtl/serialize.py,sha256=Arm26aGLOhW-uUW4qgV1tTna83A3gNMYcF9YwRvf0gQ,4418
|
|
15
15
|
looker_sdk/rtl/transport.py,sha256=zNCaGmmJBtF87iLS6xtSTwiyEXP0BDdMJafPn0_tIrk,3911
|
|
16
16
|
looker_sdk/sdk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
-
looker_sdk/sdk/constants.py,sha256=
|
|
17
|
+
looker_sdk/sdk/constants.py,sha256=2o4ARJeemt34EiQrUqVcigqIwqX1TBynTSG9CbQVadI,1187
|
|
18
18
|
looker_sdk/sdk/api40/__init__.py,sha256=Dvx1t9vDBvgEl-p1eeP7ebEC6Q6wb6rASPi7nx3z7dg,18
|
|
19
|
-
looker_sdk/sdk/api40/methods.py,sha256=
|
|
20
|
-
looker_sdk/sdk/api40/models.py,sha256=
|
|
19
|
+
looker_sdk/sdk/api40/methods.py,sha256=I9V1LwknHljUKDJ1gDMG-VLi_M7B-R1BXXtfHpSBS5Y,511852
|
|
20
|
+
looker_sdk/sdk/api40/models.py,sha256=PsZecyyYGZt_4xxx2vtxvGCCQl3cFjdx2xldTl8J5Gw,624989
|
|
21
21
|
tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
22
|
tests/conftest.py,sha256=ZLymw2rfMVus_CRBbbcxpK3_rEpMJRMQX9A5m2aQgQs,3895
|
|
23
23
|
tests/integration/__init__.py,sha256=K4tvUu8CgFRwtDhDNixHKDDb8uubXgevQBq8JmZvf8Y,63
|
|
@@ -31,8 +31,8 @@ tests/rtl/test_auth_token.py,sha256=Ep4u0ushHqKiIkGgw-XVn1lSzPeH6pVmDB2bw-MXNAo,
|
|
|
31
31
|
tests/rtl/test_requests_transport.py,sha256=mSsxudpAkKe-uSVOIzDrV0XCFlj_ACt6T1yzbUbuwG0,5442
|
|
32
32
|
tests/rtl/test_serialize.py,sha256=1SC8jigZFFL3mrU2oSTnc2nbDxXve224_r3GaxEeU90,25917
|
|
33
33
|
tests/rtl/test_transport.py,sha256=tI83LYOeuWEmkngXyRqMjW-pv-ipLPLj4t0hGD8zqL8,1555
|
|
34
|
-
looker_sdk-24.
|
|
35
|
-
looker_sdk-24.
|
|
36
|
-
looker_sdk-24.
|
|
37
|
-
looker_sdk-24.
|
|
38
|
-
looker_sdk-24.
|
|
34
|
+
looker_sdk-24.10.0.dist-info/LICENSE.txt,sha256=N4Rmmbuo5EryYSCXcvjuXL1ZXwyXanRzuGP-dJzwsoE,1094
|
|
35
|
+
looker_sdk-24.10.0.dist-info/METADATA,sha256=q2O6uD1Mk5OnjR-8rhh1rDihZlvS7Qjn5gEPLS3btNA,7028
|
|
36
|
+
looker_sdk-24.10.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
37
|
+
looker_sdk-24.10.0.dist-info/top_level.txt,sha256=tDPNJRQM_A_Oncxlgxwvnzq7hZDWZaadt_nR8DmORTI,17
|
|
38
|
+
looker_sdk-24.10.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|