# TypeScript typings for Google Service Management API v1 Google Service Management allows service producers to publish their services on Google Cloud Platform so that they can be discovered and used by service consumers. For detailed description please check [documentation](https://cloud.google.com/service-management/). ## Installing Install typings for Google Service Management API: ``` npm install @types/gapi.client.servicemanagement@v1 --save-dev ``` ## Usage You need to initialize Google API client in your code: ```typescript gapi.load("client", () => { // now we can use gapi.client // ... }); ``` Then load api client wrapper: ```typescript gapi.client.load('servicemanagement', 'v1', () => { // now we can use gapi.client.servicemanagement // ... }); ``` Don't forget to authenticate your client before sending any request to resources: ```typescript // declare client_id registered in Google Developers Console var client_id = '', scope = [ // View and manage your data across Google Cloud Platform services 'https://www.googleapis.com/auth/cloud-platform', // View your data across Google Cloud Platform services 'https://www.googleapis.com/auth/cloud-platform.read-only', // Manage your Google API service configuration 'https://www.googleapis.com/auth/service.management', // View your Google API service configuration 'https://www.googleapis.com/auth/service.management.readonly', ], immediate = true; // ... gapi.auth.authorize({ client_id: client_id, scope: scope, immediate: immediate }, authResult => { if (authResult && !authResult.error) { /* handle succesfull authorization */ } else { /* handle authorization error */ } }); ``` After that you can use Google Service Management API resources: ```typescript /* Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service. */ await gapi.client.operations.get({ name: "name", }); /* Lists service operations that match the specified filter in the request. */ await gapi.client.operations.list({ }); /* Creates a new managed service. Please note one producer project can own no more than 20 services. Operation */ await gapi.client.services.create({ }); /* Deletes a managed service. This method will change the service to the `Soft-Delete` state for 30 days. Within this period, service producers may call UndeleteService to restore the service. After 30 days, the service will be permanently deleted. Operation */ await gapi.client.services.delete({ serviceName: "serviceName", }); /* Disables a service for a project, so it can no longer be be used for the project. It prevents accidental usage that may cause unexpected billing charges or security leaks. Operation */ await gapi.client.services.disable({ serviceName: "serviceName", }); /* Enables a service for a project, so it can be used for the project. See [Cloud Auth Guide](https://cloud.google.com/docs/authentication) for more information. Operation */ await gapi.client.services.enable({ serviceName: "serviceName", }); /* Generates and returns a report (errors, warnings and changes from existing configurations) associated with GenerateConfigReportRequest.new_value If GenerateConfigReportRequest.old_value is specified, GenerateConfigReportRequest will contain a single ChangeReport based on the comparison between GenerateConfigReportRequest.new_value and GenerateConfigReportRequest.old_value. If GenerateConfigReportRequest.old_value is not specified, this method will compare GenerateConfigReportRequest.new_value with the last pushed service configuration. */ await gapi.client.services.generateConfigReport({ }); /* Gets a managed service. Authentication is required unless the service is public. */ await gapi.client.services.get({ serviceName: "serviceName", }); /* Gets a service configuration (version) for a managed service. */ await gapi.client.services.getConfig({ serviceName: "serviceName", }); /* Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */ await gapi.client.services.getIamPolicy({ resource: "resource", }); /* Lists managed services. Returns all public services. For authenticated users, also returns all services the calling user has "servicemanagement.services.get" permission for. **BETA:** If the caller specifies the `consumer_id`, it returns only the services enabled on the consumer. The `consumer_id` must have the format of "project:{PROJECT-ID}". */ await gapi.client.services.list({ }); /* Sets the access control policy on the specified resource. Replaces any existing policy. */ await gapi.client.services.setIamPolicy({ resource: "resource", }); /* Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a NOT_FOUND error. Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning. */ await gapi.client.services.testIamPermissions({ resource: "resource", }); /* Revives a previously deleted managed service. The method restores the service using the configuration at the time the service was deleted. The target service must exist and must have been deleted within the last 30 days. Operation */ await gapi.client.services.undelete({ serviceName: "serviceName", }); ```