@@ -3106,6 +3106,21 @@ public enum Components {
31063106 ///
31073107 /// - Remark: Generated from `#/components/schemas/code-scanning-default-setup-update/state`.
31083108 public var state : Components . Schemas . code_hyphen_scanning_hyphen_default_hyphen_setup_hyphen_update . statePayload ?
3109+ /// Runner type to be used.
3110+ ///
3111+ /// - Remark: Generated from `#/components/schemas/code-scanning-default-setup-update/runner_type`.
3112+ @frozen public enum runner_typePayload : String , Codable , Hashable , Sendable {
3113+ case standard = " standard "
3114+ case labeled = " labeled "
3115+ }
3116+ /// Runner type to be used.
3117+ ///
3118+ /// - Remark: Generated from `#/components/schemas/code-scanning-default-setup-update/runner_type`.
3119+ public var runner_type : Components . Schemas . code_hyphen_scanning_hyphen_default_hyphen_setup_hyphen_update . runner_typePayload ?
3120+ /// Runner label to be used if the runner type is labeled.
3121+ ///
3122+ /// - Remark: Generated from `#/components/schemas/code-scanning-default-setup-update/runner_label`.
3123+ public var runner_label : Swift . String ?
31093124 /// CodeQL query suite to be used.
31103125 ///
31113126 /// - Remark: Generated from `#/components/schemas/code-scanning-default-setup-update/query_suite`.
@@ -3140,19 +3155,27 @@ public enum Components {
31403155 ///
31413156 /// - Parameters:
31423157 /// - state: The desired state of code scanning default setup.
3158+ /// - runner_type: Runner type to be used.
3159+ /// - runner_label: Runner label to be used if the runner type is labeled.
31433160 /// - query_suite: CodeQL query suite to be used.
31443161 /// - languages: CodeQL languages to be analyzed.
31453162 public init (
31463163 state: Components . Schemas . code_hyphen_scanning_hyphen_default_hyphen_setup_hyphen_update . statePayload ? = nil ,
3164+ runner_type: Components . Schemas . code_hyphen_scanning_hyphen_default_hyphen_setup_hyphen_update . runner_typePayload ? = nil ,
3165+ runner_label: Swift . String ? = nil ,
31473166 query_suite: Components . Schemas . code_hyphen_scanning_hyphen_default_hyphen_setup_hyphen_update . query_suitePayload ? = nil ,
31483167 languages: Components . Schemas . code_hyphen_scanning_hyphen_default_hyphen_setup_hyphen_update . languagesPayload ? = nil
31493168 ) {
31503169 self . state = state
3170+ self . runner_type = runner_type
3171+ self . runner_label = runner_label
31513172 self . query_suite = query_suite
31523173 self . languages = languages
31533174 }
31543175 public enum CodingKeys : String , CodingKey {
31553176 case state
3177+ case runner_type
3178+ case runner_label
31563179 case query_suite
31573180 case languages
31583181 }
@@ -3162,6 +3185,14 @@ public enum Components {
31623185 Components . Schemas. code_hyphen_scanning_hyphen_default_hyphen_setup_hyphen_update. statePayload. self,
31633186 forKey: . state
31643187 )
3188+ runner_type = try container. decodeIfPresent (
3189+ Components . Schemas. code_hyphen_scanning_hyphen_default_hyphen_setup_hyphen_update. runner_typePayload. self,
3190+ forKey: . runner_type
3191+ )
3192+ runner_label = try container. decodeIfPresent (
3193+ Swift . String. self,
3194+ forKey: . runner_label
3195+ )
31653196 query_suite = try container. decodeIfPresent (
31663197 Components . Schemas. code_hyphen_scanning_hyphen_default_hyphen_setup_hyphen_update. query_suitePayload. self,
31673198 forKey: . query_suite
@@ -3172,6 +3203,8 @@ public enum Components {
31723203 )
31733204 try decoder. ensureNoAdditionalProperties ( knownKeys: [
31743205 " state " ,
3206+ " runner_type " ,
3207+ " runner_label " ,
31753208 " query_suite " ,
31763209 " languages "
31773210 ] )
0 commit comments