@servicenow/sdk - v4.4.1
    Preparing search index...

    Variable alm_hardwareConst

    alm_hardware: {
        actions: ["read", "update", "create"];
        allowClientScripts: true;
        allowNewFields: true;
        allowUiActions: true;
        allowWebServiceAccess: true;
        attributes: { kagami_csindex_enabled: true };
        audit: true;
        extends: "alm_asset";
        label: "Hardware";
        name: "alm_hardware";
        schema: {
            eligible_for_refresh: Typed<
                boolean,
                {
                    attributes: { no_text_index: true };
                    default: false;
                    label: [
                        {
                            hint: "Is the asset eligible for refresh?";
                            label: "Eligible for refresh";
                            language: "en";
                            plural: "Eligible for refreshes";
                        },
                    ];
                    readOnly: true;
                    readOnlyOption: "instance_configured";
                },
            >;
            sys_id: Typed<
                string,
                {
                    label: [{ label: "Sys ID"; language: "en"; plural: "Sys IDs" }];
                    primary: true;
                },
            >;
        };
    } = ...

    Type Declaration

    • Readonlyactions: ["read", "update", "create"]
    • ReadonlyallowClientScripts: true
    • ReadonlyallowNewFields: true
    • ReadonlyallowUiActions: true
    • ReadonlyallowWebServiceAccess: true
    • Readonlyattributes: { kagami_csindex_enabled: true }
    • Readonlyaudit: true
    • Readonlyextends: "alm_asset"
    • Readonlylabel: "Hardware"
    • Readonlyname: "alm_hardware"
    • Readonlyschema: {
          eligible_for_refresh: Typed<
              boolean,
              {
                  attributes: { no_text_index: true };
                  default: false;
                  label: [
                      {
                          hint: "Is the asset eligible for refresh?";
                          label: "Eligible for refresh";
                          language: "en";
                          plural: "Eligible for refreshes";
                      },
                  ];
                  readOnly: true;
                  readOnlyOption: "instance_configured";
              },
          >;
          sys_id: Typed<
              string,
              {
                  label: [{ label: "Sys ID"; language: "en"; plural: "Sys IDs" }];
                  primary: true;
              },
          >;
      }