वेब ऐप्लिकेशन और एपीआई एक्ज़ीक्यूटेबल मेनिफ़ेस्ट संसाधन
संग्रह की मदद से व्यवस्थित रहें अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
वेब ऐप्लिकेशन और एपीआई के एक्ज़ीक्यूटेबल की जानकारी देने के लिए इस्तेमाल किए जाने वाले संसाधन कॉन्फ़िगरेशन.
वेब ऐप्लिकेशन
स्क्रिप्ट प्रोजेक्ट का वेब ऐप्लिकेशन कॉन्फ़िगरेशन, जिसका इस्तेमाल सिर्फ़ तब किया जाता है, जब को वेब ऐप्लिकेशन के तौर पर डिप्लॉय किया जाता है.
JSON के काेड में दिखाना
{ "access": string, "executeAs": string }
फ़ील्ड
access
string
वेब ऐप्लिकेशन को चलाने की अनुमति के लेवल. मान्य सेटिंग निम्नलिखित हैं:
MYSELF से सिर्फ़ उस उपयोगकर्ता की जानकारी मिलती है जिसने ऐप्लिकेशन को डिप्लॉय किया है उसे चला सकते हैं.
DOMAIN सिर्फ़ एक ही डोमेन के उपयोगकर्ताओं को यह बताता है डिप्लॉय करने वाला उपयोगकर्ता इसे चला सकता है.
ANYONE का मतलब है, किसी भी उपयोगकर्ता ने लॉग इन किया हुआ है.
ANYONE_ANONYMOUS किसी उपयोगकर्ता का संकेत देता है, भले ही ऐसा न हो ने लॉग इन किया है.
executeAs
string
वह पहचान जिसके तहत वेब ऐप्लिकेशन काम करता है. मान्य सेटिंग के बारे में यहां बताया गया है:
USER_ACCESSING से पता चलता है कि वेब ऐप्लिकेशन इस तौर पर चलता है तो कोई व्यक्ति इसे ऐक्सेस कर रहा है.
USER_DEPLOYING से पता चलता है कि वेब ऐप्लिकेशन इस तौर पर चलता है उपयोगकर्ता ने इसे डिप्लॉय किया है.
ExecutionApi
स्क्रिप्ट प्रोजेक्ट का एपीआई एक्ज़ीक्यूटेबल कॉन्फ़िगरेशन. इसका इस्तेमाल सिर्फ़ तब किया जाता है, जब प्रोजेक्ट को एपीआई लागू करने के लिए डिप्लॉय किया गया है.
JSON के काेड में दिखाना
{ "access": string }
फ़ील्ड
access
string
इससे यह तय किया जाता है कि एपीआई से स्क्रिप्ट चलाने की अनुमति किसके पास है. कॉन्टेंट बनाने मान्य सेटिंग के नतीजे नीचे दिए गए हैं:
MYSELF सिर्फ़ उस उपयोगकर्ता के बारे में बताता है जिसने इसे डिप्लॉय किया है स्क्रिप्ट इसे चला सकती है.
DOMAIN सिर्फ़ एक ही डोमेन के उपयोगकर्ताओं को यह बताता है डिप्लॉय करने वाला उपयोगकर्ता इसे चला सकता है.
ANYONE का मतलब है, किसी भी उपयोगकर्ता ने लॉग इन किया हुआ है.
ANYONE_ANONYMOUS किसी उपयोगकर्ता का संकेत देता है, भले ही ऐसा न हो ने लॉग इन किया है.
[[["समझने में आसान है","easyToUnderstand","thumb-up"],["मेरी समस्या हल हो गई","solvedMyProblem","thumb-up"],["अन्य","otherUp","thumb-up"]],[["वह जानकारी मौजूद नहीं है जो मुझे चाहिए","missingTheInformationINeed","thumb-down"],["बहुत मुश्किल है / बहुत सारे चरण हैं","tooComplicatedTooManySteps","thumb-down"],["पुराना","outOfDate","thumb-down"],["अनुवाद से जुड़ी समस्या","translationIssue","thumb-down"],["सैंपल / कोड से जुड़ी समस्या","samplesCodeIssue","thumb-down"],["अन्य","otherDown","thumb-down"]],["आखिरी बार 2025-07-26 (UTC) को अपडेट किया गया."],[[["\u003cp\u003eResource configurations define how web apps and APIs execute within a project.\u003c/p\u003e\n"],["\u003cp\u003eWeb app configurations control access levels (MYSELF, DOMAIN, ANYONE, ANYONE_ANONYMOUS) and execution identity (USER_ACCESSING, USER_DEPLOYING).\u003c/p\u003e\n"],["\u003cp\u003eAPI executable configurations manage access permissions for running scripts via the API, using similar access levels as web apps.\u003c/p\u003e\n"]]],[],null,["# Web apps and API executables manifest resource\n\nThe resource configurations used to define web apps and API executables.\n\nWebapp\n------\n\nThe script project's web app configuration, which is only used if the project\nis deployed as a web app.\n\n| JSON representation |\n|-------------------------------------------------------|\n| ```text { \"access\": string, \"executeAs\": string } ``` |\n\n| Fields ||\n|-------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `access` | `string` The levels of permission for running the web app. The valid settings are the following: - `MYSELF` indicates only the user who deployed the app can run it. - `DOMAIN` indicates only users in the same domain as the deploying user can run it. - `ANYONE` indicates any user who is logged in. - `ANYONE_ANONYMOUS` indicates any user, even if not logged in. |\n| `executeAs` | `string` The identity under which the web app executes. The valid settings are the following: - `USER_ACCESSING` indicates the web app runs as the user accessing it. - `USER_DEPLOYING` indicates the web app runs as the user who deployed it. |\n\nExecutionApi\n------------\n\nThe script project's API executable configuration. This is only used if the\nproject is deployed for API execution.\n\n| JSON representation |\n|----------------------------------|\n| ```text { \"access\": string } ``` |\n\n| Fields ||\n|----------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `access` | `string` Determines who has permission to run the script from the API. The valid settings are the following: - `MYSELF` indicates only the user who deployed the script can run it. - `DOMAIN` indicates only users in the same domain as the deploying user can run it. - `ANYONE` indicates any user who is logged in. - `ANYONE_ANONYMOUS` indicates any user, even if not logged in. |"]]