সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
অ্যাডমিন SDK এন্টারপ্রাইজ লাইসেন্স ম্যানেজার পরিষেবা আপনাকে Apps স্ক্রিপ্টে অ্যাডমিন SDK এন্টারপ্রাইজ লাইসেন্স ম্যানেজার API ব্যবহার করতে দেয়। এই API ডোমেন প্রশাসকদের ব্যবহারকারী লাইসেন্স বরাদ্দ, আপডেট, পুনরুদ্ধার এবং মুছে ফেলার অনুমতি দেয়।
রেফারেন্স
এই পরিষেবার বিস্তারিত তথ্যের জন্য, অ্যাডমিন SDK এন্টারপ্রাইজ লাইসেন্স ম্যানেজার API-এর রেফারেন্স ডকুমেন্টেশন দেখুন। Apps স্ক্রিপ্টের সমস্ত উন্নত পরিষেবাগুলির মতো, অ্যাডমিন SDK এন্টারপ্রাইজ লাইসেন্স ম্যানেজার পরিষেবা সর্বজনীন API হিসাবে একই বস্তু, পদ্ধতি এবং পরামিতিগুলি ব্যবহার করে৷ আরও তথ্যের জন্য, দেখুন কিভাবে পদ্ধতি স্বাক্ষর নির্ধারণ করা হয় ।
ডোমেনের জন্য লাইসেন্স অ্যাসাইনমেন্টের একটি তালিকা পান
এই নমুনাটি ডোমেনের ব্যবহারকারীদের জন্য পণ্য ID এবং sku ID সহ লাইসেন্স অ্যাসাইনমেন্টগুলি লগ করে৷ ফলাফলের সম্পূর্ণ তালিকা অ্যাক্সেস করতে পৃষ্ঠা টোকেন ব্যবহার লক্ষ্য করুন।
/** * Logs the license assignments, including the product ID and the sku ID, for * the users in the domain. Notice the use of page tokens to access the full * list of results. */functiongetLicenseAssignments(){constproductId='Google-Apps';constcustomerId='example.com';letassignments=[];letpageToken=null;do{constresponse=AdminLicenseManager.LicenseAssignments.listForProduct(productId,customerId,{maxResults:500,pageToken:pageToken});assignments=assignments.concat(response.items);pageToken=response.nextPageToken;}while(pageToken);// Print the productId and skuIdfor(constassignmentofassignments){console.log('userId:%s,productId:%s,skuId:%s',assignment.userId,assignment.productId,assignment.skuId);}}
একজন ব্যবহারকারীর জন্য একটি লাইসেন্স অ্যাসাইনমেন্ট সন্নিবেশ করান
এই নমুনাটি প্রদর্শন করে যে কিভাবে একটি ব্যবহারকারীর জন্য একটি লাইসেন্স অ্যাসাইনমেন্ট সন্নিবেশ করাতে হয়, একটি প্রদত্ত পণ্য আইডি এবং sku আইডি সমন্বয়ের জন্য।
/** * Insert a license assignment for a user, for a given product ID and sku ID * combination. * For more details follow the link * https://developers.google.com/admin-sdk/licensing/reference/rest/v1/licenseAssignments/insert */functioninsertLicenseAssignment(){constproductId='Google-Apps';constskuId='Google-Vault';constuserId='marty@hoverboard.net';try{constresults=AdminLicenseManager.LicenseAssignments.insert({userId:userId},productId,skuId);console.log(results);}catch(e){// TODO (developer) - Handle exception.console.log('Failedwithanerror%s',e.message);}}
[[["সহজে বোঝা যায়","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-06-05 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["The Admin SDK Enterprise License Manager service enables domain admins to manage user licenses within Apps Script using the Admin SDK Enterprise License Manager API."],["It allows for assigning, updating, retrieving, and deleting user licenses for various products."],["This is an advanced service that requires enabling before use and utilizes the same structure as the public API."],["Provided sample code demonstrates how to retrieve and assign licenses using the API."]]],[]]