You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <summary>The timestamp of when the password expiration policy was last enabled. (read-only)</summary>
4464
+
publicDateTime?policy_enabled_at{get;set;}=null;
4441
4465
}
4442
4466
4443
4467
/// Specifies the time frame for the comparison. Valid values are: "year", "fiscal_year", "quarter", "fiscal_quarter", "month", "week", "date". (Enum defined in LookmlModelExploreFieldPeriodOverPeriodParams)
@@ -4576,6 +4600,8 @@ public class Project : SdkModel
4576
4600
publicbool?allow_warnings{get;set;}=null;
4577
4601
/// <summary>If true the project is an example project and cannot be modified (read-only)</summary>
4578
4602
publicbool?is_example{get;set;}=null;
4603
+
/// <summary>If true the project has been pushed to production. (read-only)</summary>
/// <summary>Status of dependencies in your manifest & lockfile</summary>
4580
4606
publicstring?dependency_status{get;set;}=null;
4581
4607
}
@@ -4983,6 +5009,8 @@ public class Role : SdkModel
4983
5009
publicModelSet?model_set{get;set;}
4984
5010
/// <summary>(Write-Only) Id of model set</summary>
4985
5011
publicstring?model_set_id{get;set;}=null;
5012
+
/// <summary>Is this a Looker internal role (read-only)</summary>
5013
+
publicbool?@internal{get;set;}=null;
4986
5014
/// <summary>Link to get this item (read-only)</summary>
4987
5015
publicstring?url{get;set;}=null;
4988
5016
/// <summary>Link to get list of users with this role (read-only)</summary>
@@ -5003,6 +5031,8 @@ public class RoleSearch : SdkModel
5003
5031
publicModelSet?model_set{get;set;}
5004
5032
/// <summary>(Write-Only) Id of model set</summary>
5005
5033
publicstring?model_set_id{get;set;}=null;
5034
+
/// <summary>Is this a Looker internal role (read-only)</summary>
5035
+
publicbool?@internal{get;set;}=null;
5006
5036
/// <summary>Count of users with this role (read-only)</summary>
5007
5037
publiclong?user_count{get;set;}=null;
5008
5038
/// <summary>Link to get this item (read-only)</summary>
@@ -5108,6 +5138,9 @@ public class SamlConfig : SdkModel
5108
5138
publicbool?enabled{get;set;}=null;
5109
5139
/// <summary>Identity Provider Certificate (provided by IdP)</summary>
5110
5140
publicstring?idp_cert{get;set;}=null;
5141
+
publicSamlIdpCertMulti?idp_cert_multi{get;set;}
5142
+
/// <summary>Indicates whether this SAML configuration is set up to use multiple Identity Provider certificates (idp_cert_multi) or a single certificate (idp_cert). When true, idp_cert_multi is used; otherwise, idp_cert is used.</summary>
5143
+
publicbool?multi_certs_supported{get;set;}=null;
5111
5144
/// <summary>Identity Provider Url (provided by IdP)</summary>
5112
5145
publicstring?idp_url{get;set;}=null;
5113
5146
/// <summary>Identity Provider Issuer (provided by IdP)</summary>
@@ -5202,6 +5235,12 @@ public class SamlGroupWrite : SdkModel
5202
5235
publicstring?url{get;set;}=null;
5203
5236
}
5204
5237
5238
+
publicclassSamlIdpCertMulti:SdkModel
5239
+
{
5240
+
/// <summary>List of signing certificates. Values should be without pre-encapsulation and post-encapsulation boundaries</summary>
5241
+
publicstring[]?signing{get;set;}=null;
5242
+
}
5243
+
5205
5244
publicclassSamlMetadataParseResult:SdkModel
5206
5245
{
5207
5246
/// <summary>Operations the current user is able to perform on this object (read-only)</summary>
@@ -5212,6 +5251,7 @@ public class SamlMetadataParseResult : SdkModel
@@ -6120,9 +6162,9 @@ public class User : SdkModel
6120
6162
publicbool?is_iam_admin{get;set;}=null;
6121
6163
/// <summary>Indicates if the user can manage API3 credentials. This field may only be applicable for [Looker (Google Cloud core)](https://cloud.google.com/looker/docs/r/looker-core/overview). This is an experimental feature and may not yet be available on your instance.</summary>
6122
6164
publicbool?can_manage_api3_creds{get;set;}=null;
6123
-
/// <summary>Indicates if this user is a service account. This field may only be applicable for [Looker (Google Cloud core)](https://cloud.google.com/looker/docs/r/looker-core/overview). This is an experimental feature and may not yet be available on your instance. (read-only)</summary>
6165
+
/// <summary>Indicates if this user is a service account. (read-only)</summary>
6124
6166
publicbool?is_service_account{get;set;}=null;
6125
-
/// <summary>The display name of the service account. This field is omitted for non service account users. This field may only be applicable for [Looker (Google Cloud core)](https://cloud.google.com/looker/docs/r/looker-core/overview). This is an experimental feature and may not yet be available on your instance. (read-only)</summary>
6167
+
/// <summary>The display name of the service account. This field is omitted for non service account users. (read-only)</summary>
6126
6168
publicstring?service_account_name{get;set;}=null;
6127
6169
/// <summary>Link to get this item (read-only)</summary>
6128
6170
publicstring?url{get;set;}=null;
@@ -6693,6 +6735,8 @@ public class WriteDashboard : SdkModel
6693
6735
/// <summary>Title color</summary>
6694
6736
publicstring?title_color{get;set;}=null;
6695
6737
publicDashboardAppearance?appearance{get;set;}
6738
+
/// <summary>The layout granularity to apply to this dashboard (ie: default or granular)</summary>
6739
+
publicstring?layout_granularity{get;set;}=null;
6696
6740
}
6697
6741
6698
6742
/// Dynamic writeable type for DashboardBase removes:
@@ -6838,6 +6882,14 @@ public class WriteDashboardLayoutComponent : SdkModel
6838
6882
publiclong?width{get;set;}=null;
6839
6883
/// <summary>Height</summary>
6840
6884
publiclong?height{get;set;}=null;
6885
+
/// <summary>Row (granular layout)</summary>
6886
+
publiclong?granular_row{get;set;}=null;
6887
+
/// <summary>Column (granular layout)</summary>
6888
+
publiclong?granular_column{get;set;}=null;
6889
+
/// <summary>Width (granular layout)</summary>
6890
+
publiclong?granular_width{get;set;}=null;
6891
+
/// <summary>Height (granular layout)</summary>
6892
+
publiclong?granular_height{get;set;}=null;
6841
6893
}
6842
6894
6843
6895
/// Dynamic writeable type for DashboardLookml removes:
@@ -6861,7 +6913,7 @@ public class WriteDatagroup : SdkModel
6861
6913
}
6862
6914
6863
6915
/// Dynamic writeable type for DBConnection removes:
@@ -7574,7 +7630,7 @@ public class WriteResultMakerWithIdVisConfigAndDynamicFields : SdkModel
7574
7630
}
7575
7631
7576
7632
/// Dynamic writeable type for Role removes:
7577
-
/// can, id, url, users_url
7633
+
/// can, id, internal, url, users_url
7578
7634
publicclassWriteRole:SdkModel
7579
7635
{
7580
7636
/// <summary>Name of Role</summary>
@@ -7603,6 +7659,9 @@ public class WriteSamlConfig : SdkModel
7603
7659
publicbool?enabled{get;set;}=null;
7604
7660
/// <summary>Identity Provider Certificate (provided by IdP)</summary>
7605
7661
publicstring?idp_cert{get;set;}=null;
7662
+
publicSamlIdpCertMulti?idp_cert_multi{get;set;}
7663
+
/// <summary>Indicates whether this SAML configuration is set up to use multiple Identity Provider certificates (idp_cert_multi) or a single certificate (idp_cert). When true, idp_cert_multi is used; otherwise, idp_cert is used.</summary>
7664
+
publicbool?multi_certs_supported{get;set;}=null;
7606
7665
/// <summary>Identity Provider Url (provided by IdP)</summary>
7607
7666
publicstring?idp_url{get;set;}=null;
7608
7667
/// <summary>Identity Provider Issuer (provided by IdP)</summary>
@@ -7789,6 +7848,8 @@ public class WriteSetting : SdkModel
0 commit comments