/** * @type MRTRulesetPatchRequest: PATCH request for updating the MRT environment hostname or adding MRT rules to route to an existing MRT environment. * * @property oldMrtHostname: The customer\'s current MRT instance hostname. * - **Pattern:** /^.*$/ * * @property mrtHostname: The customer\'s MRT instance hostname. * - **Pattern:** /^.*$/ * * @property expressions: An array containing the expressions for each MRT rule. * * @property descriptions: An array containing the descriptions for each MRT rule. The number of descriptions provided must match the number of expressions provided. Optional. * */ export type MRTRulesetPatchRequest = { oldMrtHostname?: string; mrtHostname: string; expressions?: Array; descriptions?: Array; } & { [key: string]: any; };