Get desktop application:
View/edit binary Protocol Buffers messages
[Google Service Management API](/service-management/overview)
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}".
Request message for `ListServices` method.
Include services produced by the specified project.
Requested size of the next page of data.
Token identifying which result to start with; returned by a previous list call.
Include services consumed by the specified consumer. The Google Service Management implementation accepts the following forms: - project:<project_id>
Response message for `ListServices` method.
The returned services will only have the name field set.
Token that can be passed to `ListServices` to resume a paginated query.
Gets a managed service. Authentication is required unless the service is public.
Request message for `GetService` method.
The name of the service. See the `ServiceManager` overview for naming requirements. For example: `example.googleapis.com`.
Creates a new managed service. Please note one producer project can own no more than 20 services. Operation<response: ManagedService>
Request message for CreateService method.
Initial values for the service resource.
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][google.api.servicemanagement.v1.ServiceManager.UndeleteService] to restore the service. After 30 days, the service will be permanently deleted. Operation<response: google.protobuf.Empty>
Request message for DeleteService method.
The name of the service. See the [overview](/service-management/overview) for naming requirements. For example: `example.googleapis.com`.
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<response: UndeleteServiceResponse>
Request message for UndeleteService method.
The name of the service. See the [overview](/service-management/overview) for naming requirements. For example: `example.googleapis.com`.
Lists the history of the service configuration for a managed service, from the newest to the oldest.
Request message for ListServiceConfigs method.
The name of the service. See the [overview](/service-management/overview) for naming requirements. For example: `example.googleapis.com`.
The token of the page to retrieve.
The max number of items to include in the response list.
Response message for ListServiceConfigs method.
The list of service configuration resources.
The token of the next page of results.
Gets a service configuration (version) for a managed service.
Request message for GetServiceConfig method.
The name of the service. See the [overview](/service-management/overview) for naming requirements. For example: `example.googleapis.com`.
The id of the service configuration resource.
Specifies which parts of the Service Config should be returned in the response.
Creates a new service configuration (version) for a managed service. This method only stores the service configuration. To roll out the service configuration to backend systems please call [CreateServiceRollout][google.api.servicemanagement.v1.ServiceManager.CreateServiceRollout]. Only the 100 most recent service configurations and ones referenced by existing rollouts are kept for each service. The rest will be deleted eventually.
Request message for CreateServiceConfig method.
The name of the service. See the [overview](/service-management/overview) for naming requirements. For example: `example.googleapis.com`.
The service configuration resource.
Creates a new service configuration (version) for a managed service based on user-supplied configuration source files (for example: OpenAPI Specification). This method stores the source configurations as well as the generated service configuration. To rollout the service configuration to other services, please call [CreateServiceRollout][google.api.servicemanagement.v1.ServiceManager.CreateServiceRollout]. Only the 100 most recent configuration sources and ones referenced by existing service configurtions are kept for each service. The rest will be deleted eventually. Operation<response: SubmitConfigSourceResponse>
Request message for SubmitConfigSource method.
The name of the service. See the [overview](/service-management/overview) for naming requirements. For example: `example.googleapis.com`.
The source configuration for the service.
Optional. If set, this will result in the generation of a `google.api.Service` configuration based on the `ConfigSource` provided, but the generated config and the sources will NOT be persisted.
Lists the history of the service configuration rollouts for a managed service, from the newest to the oldest.
Request message for 'ListServiceRollouts'
The name of the service. See the [overview](/service-management/overview) for naming requirements. For example: `example.googleapis.com`.
The token of the page to retrieve.
The max number of items to include in the response list.
Use `filter` to return subset of rollouts. The following filters are supported: -- To limit the results to only those in [status](google.api.servicemanagement.v1.RolloutStatus) 'SUCCESS', use filter='status=SUCCESS' -- To limit the results to those in [status](google.api.servicemanagement.v1.RolloutStatus) 'CANCELLED' or 'FAILED', use filter='status=CANCELLED OR status=FAILED'
Response message for ListServiceRollouts method.
The list of rollout resources.
The token of the next page of results.
Gets a service configuration [rollout][google.api.servicemanagement.v1.Rollout].
Request message for GetServiceRollout method.
The name of the service. See the [overview](/service-management/overview) for naming requirements. For example: `example.googleapis.com`.
The id of the rollout resource.
Creates a new service configuration rollout. Based on rollout, the Google Service Management will roll out the service configurations to different backend services. For example, the logging configuration will be pushed to Google Cloud Logging. Please note that any previous pending and running Rollouts and associated Operations will be automatically cancelled so that the latest Rollout will not be blocked by previous Rollouts. Only the 100 most recent (in any state) and the last 10 successful (if not already part of the set of 100 most recent) rollouts are kept for each service. The rest will be deleted eventually. Operation<response: Rollout>
Request message for 'CreateServiceRollout'
The name of the service. See the [overview](/service-management/overview) for naming requirements. For example: `example.googleapis.com`.
The rollout resource. The `service_name` field is output only.
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.
Request message for GenerateConfigReport method.
Service configuration for which we want to generate the report. For this version of API, the supported types are [google.api.servicemanagement.v1.ConfigRef][google.api.servicemanagement.v1.ConfigRef], [google.api.servicemanagement.v1.ConfigSource][google.api.servicemanagement.v1.ConfigSource], and [google.api.Service][google.api.Service]
Service configuration against which the comparison will be done. For this version of API, the supported types are [google.api.servicemanagement.v1.ConfigRef][google.api.servicemanagement.v1.ConfigRef], [google.api.servicemanagement.v1.ConfigSource][google.api.servicemanagement.v1.ConfigSource], and [google.api.Service][google.api.Service]
Response message for GenerateConfigReport method.
Name of the service this report belongs to.
ID of the service configuration this report belongs to.
list of ChangeReport, each corresponding to comparison between two service configurations.
Errors / Linter warnings associated with the service definition this report belongs to.
Enables a [service][google.api.servicemanagement.v1.ManagedService] 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<response: EnableServiceResponse>
Request message for EnableService method.
Name of the service to enable. Specifying an unknown service name will cause the request to fail.
The identity of consumer resource which service enablement will be applied to. The Google Service Management implementation accepts the following forms: - "project:<project_id>" Note: this is made compatible with google.api.servicecontrol.v1.Operation.consumer_id.
Disables a [service][google.api.servicemanagement.v1.ManagedService] 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<response: DisableServiceResponse>
Request message for DisableService method.
Name of the service to disable. Specifying an unknown service name will cause the request to fail.
The identity of consumer resource which service disablement will be applied to. The Google Service Management implementation accepts the following forms: - "project:<project_id>" Note: this is made compatible with google.api.servicecontrol.v1.Operation.consumer_id.
Change report associated with a particular service configuration. It contains a list of ConfigChanges based on the comparison between two service configurations.
Used in:
List of changes between two service configurations. The changes will be alphabetically sorted based on the identifier of each change. A ConfigChange identifier is a dot separated path to the configuration. Example: visibility.rules[selector='LibraryService.CreateBook'].restriction
Generic specification of a source configuration file
Used in:
The file name of the configuration file (full or relative path).
The bytes that constitute the file.
The type of configuration file this represents.
Used in:
Unknown file type.
YAML-specification of service.
OpenAPI specification, serialized in JSON.
OpenAPI specification, serialized in YAML.
FileDescriptorSet, generated by protoc. To generate, use protoc with imports and source info included. For an example test.proto file, the following command would put the value in a new file named out.pb. $protoc --include_imports --include_source_info test.proto -o out.pb
Uncompiled Proto file. Used for storage and display purposes only, currently server-side compilation is not supported. Should match the inputs to 'protoc' command used to generated FILE_DESCRIPTOR_SET_PROTO. A file of this type can only be included if at least one file of type FILE_DESCRIPTOR_SET_PROTO is included.
Represents a service configuration with its name and id.
Resource name of a service config. It must have the following format: "services/{service name}/configs/{config id}".
Represents a source file which is used to generate the service configuration defined by `google.api.Service`.
Used in:
A unique ID for a specific instance of this message, typically assigned by the client for tracking purpose. If empty, the server may choose to generate one instead.
Set of source configuration files that are used to generate a service configuration (`google.api.Service`).
Represents a diagnostic message (error or warning)
Used in:
File name and line number of the error or warning.
The kind of diagnostic information provided.
Message describing the error or warning.
The kind of diagnostic information possible.
Used in:
Warnings and errors
Only errors
Used in:
Server response includes all fields except SourceInfo.
Server response includes all fields including SourceInfo. SourceFiles are of type 'google.api.servicemanagement.v1.ConfigFile' and are only available for configs created using the SubmitConfigSource method.
The full representation of a Service that is managed by Google Service Management.
Used as response type in: ServiceManager.GetService
Used as field type in:
, ,The name of the service. See the [overview](/service-management/overview) for naming requirements.
ID of the project that produces and owns this service.
The metadata associated with a long running operation resource.
The full name of the resources that this operation is directly associated with.
Detailed status information for each step. The order is undetermined.
Percentage of completion of this operation, ranging from 0 to 100.
The start time of the operation.
Code describes the status of the operation (or one of its steps).
Used in:
Unspecifed code.
The operation or step has completed without errors.
The operation or step has not started yet.
The operation or step is in progress.
The operation or step has completed with errors. If the operation is rollbackable, the rollback completed with errors too.
The operation or step has completed with cancellation.
Represents the status of one operation step.
Used in:
The short description of the step.
The status code.
A rollout resource that defines how service configuration versions are pushed to control plane systems. Typically, you create a new version of the service config, and then create a Rollout to push the service config.
Used as response type in: ServiceManager.GetServiceRollout
Used as field type in:
,Optional unique identifier of this Rollout. Only lower case letters, digits and '-' are allowed. If not specified by client, the server will generate one. The generated id will have the form of <date><revision number>, where "date" is the create date in ISO 8601 format. "revision number" is a monotonically increasing positive number that is reset every day for each service. An example of the generated rollout_id is '2016-02-16r1'
Creation time of the rollout. Readonly.
The user who created the Rollout. Readonly.
The status of this rollout. Readonly. In case of a failed rollout, the system will automatically rollback to the current Rollout version. Readonly.
Strategy that defines which versions of service configurations should be pushed and how they should be used at runtime.
Google Service Control selects service configurations based on traffic percentage.
The strategy associated with a rollout to delete a `ManagedService`. Readonly.
The name of the service associated with this Rollout.
Strategy used to delete a service. This strategy is a placeholder only used by the system generated rollout to delete a service.
Used in:
(message has no fields)
Status of a Rollout.
Used in:
No status specified.
The Rollout is in progress.
The Rollout has completed successfully.
The Rollout has been cancelled. This can happen if you have overlapping Rollout pushes, and the previous ones will be cancelled.
The Rollout has failed and the rollback attempt has failed too.
The Rollout has not started yet and is pending for execution.
The Rollout has failed and rolled back to the previous successful Rollout.
Strategy that specifies how clients of Google Service Controller want to send traffic to use different config versions. This is generally used by API proxy to split traffic based on your configured precentage for each config version. One example of how to gradually rollout a new service configuration using this strategy: Day 1 Rollout { id: "example.googleapis.com/rollout_20160206" traffic_percent_strategy { percentages: { "example.googleapis.com/20160201": 70.00 "example.googleapis.com/20160206": 30.00 } } } Day 2 Rollout { id: "example.googleapis.com/rollout_20160207" traffic_percent_strategy: { percentages: { "example.googleapis.com/20160206": 100.00 } } }
Used in:
Maps service configuration IDs to their corresponding traffic percentage. Key is the service configuration ID, Value is the traffic percentage which must be greater than 0.0 and the sum must equal to 100.0.
Response message for SubmitConfigSource method.
The generated service configuration.
Response message for UndeleteService method.
Revived service resource.