Class: Google::Apis::ServiceusageV1beta1::GoogleApiService

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/serviceusage_v1beta1/classes.rb,
generated/google/apis/serviceusage_v1beta1/representations.rb,
generated/google/apis/serviceusage_v1beta1/representations.rb

Overview

Service is the root object of Google service configuration schema. It describes basic information about a service, such as the name and the title, and delegates other aspects to sub-sections. Each sub-section is either a proto message or a repeated proto message that configures a specific aspect, such as auth. See each proto message definition for details. Example: type: google.api.Service config_version: 3 name: calendar.googleapis.com title: Google Calendar API apis:

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleApiService

Returns a new instance of GoogleApiService.



1728
1729
1730
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 1728

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#apisArray<Google::Apis::ServiceusageV1beta1::Api>

A list of API interfaces exported by this service. Only the name field of the google.protobuf.Api needs to be provided by the configuration author, as the remaining fields will be derived from the IDL during the normalization process. It is an error to specify an API interface here which cannot be resolved against the associated IDL files. Corresponds to the JSON property apis



1350
1351
1352
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 1350

def apis
  @apis
end

#authenticationGoogle::Apis::ServiceusageV1beta1::Authentication

Authentication defines the authentication configuration for an API. Example for an API targeted for external use: name: calendar.googleapis.com authentication: providers:



1366
1367
1368
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 1366

def authentication
  @authentication
end

#backendGoogle::Apis::ServiceusageV1beta1::Backend

Backend defines the backend configuration for a service. Corresponds to the JSON property backend



1371
1372
1373
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 1371

def backend
  @backend
end

#billingGoogle::Apis::ServiceusageV1beta1::Billing

Billing related configuration of the service. The following example shows how to configure monitored resources and metrics for billing: monitored_resources:

  • type: library.googleapis.com/branch labels:
  • key: /city description: The city where the library branch is located in.
  • key: /name description: The name of the branch. metrics:
  • name: library.googleapis.com/book/borrowed_count metric_kind: DELTA value_type: INT64 billing: consumer_destinations:
  • monitored_resource: library.googleapis.com/branch metrics:
  • library.googleapis.com/book/borrowed_count Corresponds to the JSON property billing


1394
1395
1396
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 1394

def billing
  @billing
end

#config_versionFixnum

The semantic version of the service configuration. The config version affects the interpretation of the service configuration. For example, certain features are enabled by default for certain config versions. The latest config version is 3. Corresponds to the JSON property configVersion

Returns:

  • (Fixnum)


1402
1403
1404
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 1402

def config_version
  @config_version
end

#contextGoogle::Apis::ServiceusageV1beta1::Context

Context defines which contexts an API requests. Example: context: rules:

  • selector: "*" requested:
  • google.rpc.context.ProjectContext
  • google.rpc.context.OriginContext The above specifies that all methods in the API request google.rpc.context.ProjectContext and google.rpc.context.OriginContext. Available context types are defined in package google.rpc.context. This also provides mechanism to whitelist any protobuf message extension that can be sent in grpc metadata using “x-goog-ext--bin” and “x-goog-ext--jspb” format. For example, list any service specific protobuf types that can appear in grpc metadata as follows in your yaml file: Example: context: rules:
  • selector: "google.example.library.v1.LibraryService.CreateBook" allowed_request_extensions:
  • google.foo.v1.NewExtension allowed_response_extensions:
  • google.foo.v1.NewExtension You can also specify extension ID instead of fully qualified extension name here. Corresponds to the JSON property context


1434
1435
1436
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 1434

def context
  @context
end

#controlGoogle::Apis::ServiceusageV1beta1::Control

Selects and configures the service controller used by the service. The service controller handles features like abuse, quota, billing, logging, monitoring, etc. Corresponds to the JSON property control



1441
1442
1443
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 1441

def control
  @control
end

#custom_errorGoogle::Apis::ServiceusageV1beta1::CustomError

Customize service error responses. For example, list any service specific protobuf types that can appear in error detail lists of error responses. Example: custom_error: types:

  • google.foo.v1.CustomError
  • google.foo.v1.AnotherError Corresponds to the JSON property customError


1453
1454
1455
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 1453

def custom_error
  @custom_error
end

#documentationGoogle::Apis::ServiceusageV1beta1::Documentation

Documentation provides the information for describing a service. Example:

documentation:
summary: >
The Google Calendar API gives access
to most calendar features.
pages:
- name: Overview
content: (== include google/foo/overview.md ==)
- name: Tutorial
content: (== include google/foo/tutorial.md ==)
subpages;
- name: Java
content: (== include google/foo/tutorial_java.md ==)
rules:
- selector: google.calendar.Calendar.Get
description: >
...
- selector: google.calendar.Calendar.Put
description: >
...

Documentation is provided in markdown syntax. In addition to standard markdown features, definition lists, tables and fenced code blocks are supported. Section headers can be provided and are interpreted relative to the section nesting of the context where a documentation fragment is embedded. Documentation from the IDL is merged with documentation defined via the config at normalization time, where documentation provided by config rules overrides IDL provided. A number of constructs specific to the API platform are supported in documentation text. In order to reference a proto element, the following notation can be used:

[fully.qualified.proto.name][]

To override the display text used for the link, this can be used:

[display text][fully.qualified.proto.name]

Text can be excluded from doc using the following notation:

(-- internal comment --)

A few directives are available in documentation. Note that directives must appear on a single line to be properly identified. The include directive includes a markdown file from an external source:

(== include path/to/file ==)

The resource_for directive marks a message to be the resource of a collection in REST view. If it is not specified, tools attempt to infer the resource from the operations in a collection:

(== resource_for v1.shelves.books ==)

The directive suppress_warning does not directly affect documentation and is documented together with service config validation. Corresponds to the JSON property documentation



1507
1508
1509
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 1507

def documentation
  @documentation
end

#endpointsArray<Google::Apis::ServiceusageV1beta1::Endpoint>

Configuration for network endpoints. If this is empty, then an endpoint with the same name as the service is automatically generated to service all defined APIs. Corresponds to the JSON property endpoints



1514
1515
1516
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 1514

def endpoints
  @endpoints
end

#enumsArray<Google::Apis::ServiceusageV1beta1::Enum>

A list of all enum types included in this API service. Enums referenced directly or indirectly by the apis are automatically included. Enums which are not referenced but shall be included should be listed here by name. Example: enums:

  • name: google.someapi.v1.SomeEnum Corresponds to the JSON property enums


1524
1525
1526
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 1524

def enums
  @enums
end

#httpGoogle::Apis::ServiceusageV1beta1::Http

Defines the HTTP configuration for an API service. It contains a list of HttpRule, each specifying the mapping of an RPC method to one or more HTTP REST API methods. Corresponds to the JSON property http



1531
1532
1533
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 1531

def http
  @http
end

#idString

A unique ID for a specific instance of this message, typically assigned by the client for tracking purpose. Must be no longer than 63 characters and only lower case letters, digits, '.', '_' and '-' are allowed. If empty, the server may choose to generate one instead. Corresponds to the JSON property id

Returns:

  • (String)


1539
1540
1541
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 1539

def id
  @id
end

#loggingGoogle::Apis::ServiceusageV1beta1::Logging

Logging configuration of the service. The following example shows how to configure logs to be sent to the producer and consumer projects. In the example, the activity_history log is sent to both the producer and consumer projects, whereas the purchase_history log is only sent to the producer project. monitored_resources:

  • type: library.googleapis.com/branch labels:
  • key: /city description: The city where the library branch is located in.
  • key: /name description: The name of the branch. logs:
  • name: activity_history labels:
  • key: /customer_id
  • name: purchase_history logging: producer_destinations:
  • monitored_resource: library.googleapis.com/branch logs:
  • activity_history
  • purchase_history consumer_destinations:
  • monitored_resource: library.googleapis.com/branch logs:
  • activity_history Corresponds to the JSON property logging


1570
1571
1572
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 1570

def logging
  @logging
end

#logsArray<Google::Apis::ServiceusageV1beta1::LogDescriptor>

Defines the logs used by this service. Corresponds to the JSON property logs



1575
1576
1577
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 1575

def logs
  @logs
end

#metricsArray<Google::Apis::ServiceusageV1beta1::MetricDescriptor>

Defines the metrics used by this service. Corresponds to the JSON property metrics



1580
1581
1582
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 1580

def metrics
  @metrics
end

#monitored_resourcesArray<Google::Apis::ServiceusageV1beta1::MonitoredResourceDescriptor>

Defines the monitored resources used by this service. This is required by the Service.monitoring and Service.logging configurations. Corresponds to the JSON property monitoredResources



1586
1587
1588
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 1586

def monitored_resources
  @monitored_resources
end

#monitoringGoogle::Apis::ServiceusageV1beta1::Monitoring

Monitoring configuration of the service. The example below shows how to configure monitored resources and metrics for monitoring. In the example, a monitored resource and two metrics are defined. The library.googleapis.com/book/returned_count metric is sent to both producer and consumer projects, whereas the library.googleapis.com/book/overdue_count metric is only sent to the consumer project. monitored_resources:

  • type: library.googleapis.com/branch labels:
  • key: /city description: The city where the library branch is located in.
  • key: /name description: The name of the branch. metrics:
  • name: library.googleapis.com/book/returned_count metric_kind: DELTA value_type: INT64 labels:
  • key: /customer_id
  • name: library.googleapis.com/book/overdue_count metric_kind: GAUGE value_type: INT64 labels:
  • key: /customer_id monitoring: producer_destinations:
  • monitored_resource: library.googleapis.com/branch metrics:
  • library.googleapis.com/book/returned_count consumer_destinations:
  • monitored_resource: library.googleapis.com/branch metrics:
  • library.googleapis.com/book/returned_count
  • library.googleapis.com/book/overdue_count Corresponds to the JSON property monitoring


1625
1626
1627
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 1625

def monitoring
  @monitoring
end

#nameString

The service name, which is a DNS-like logical identifier for the service, such as calendar.googleapis.com. The service name typically goes through DNS verification to make sure the owner of the service also owns the DNS name. Corresponds to the JSON property name

Returns:

  • (String)


1633
1634
1635
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 1633

def name
  @name
end

#producer_project_idString

The Google project that owns this service. Corresponds to the JSON property producerProjectId

Returns:

  • (String)


1638
1639
1640
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 1638

def producer_project_id
  @producer_project_id
end

#quotaGoogle::Apis::ServiceusageV1beta1::Quota

Quota configuration helps to achieve fairness and budgeting in service usage. The metric based quota configuration works this way:

  • The service configuration defines a set of metrics.
  • For API calls, the quota.metric_rules maps methods to metrics with corresponding costs.
  • The quota.limits defines limits on the metrics, which will be used for quota checks at runtime. An example quota configuration in yaml format: quota: limits:
  • name: apiWriteQpsPerProject metric: library.googleapis.com/write_calls unit: "1/min/project" # rate limit for consumer projects values: STANDARD: 10000 # The metric rules bind all methods to the read_calls metric, # except for the UpdateBook and DeleteBook methods. These two methods # are mapped to the write_calls metric, with the UpdateBook method # consuming at twice rate as the DeleteBook method. metric_rules:
  • selector: "*" metric_costs: library.googleapis.com/read_calls: 1
  • selector: google.example.library.v1.LibraryService.UpdateBook metric_costs: library.googleapis.com/write_calls: 2
  • selector: google.example.library.v1.LibraryService.DeleteBook metric_costs: library.googleapis.com/write_calls: 1 Corresponding Metric definition: metrics:
  • name: library.googleapis.com/read_calls display_name: Read requests metric_kind: DELTA value_type: INT64
  • name: library.googleapis.com/write_calls display_name: Write requests metric_kind: DELTA value_type: INT64 Corresponds to the JSON property quota


1682
1683
1684
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 1682

def quota
  @quota
end

#source_infoGoogle::Apis::ServiceusageV1beta1::SourceInfo

Source information used to create a Service Config Corresponds to the JSON property sourceInfo



1687
1688
1689
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 1687

def source_info
  @source_info
end

#system_parametersGoogle::Apis::ServiceusageV1beta1::SystemParameters

System parameter configuration

A system parameter is a special kind of parameter defined by the API system, not by an individual API. It is typically mapped to an HTTP header and/or a URL query parameter. This configuration specifies which methods change the names of the system parameters. Corresponds to the JSON property systemParameters



1696
1697
1698
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 1696

def system_parameters
  @system_parameters
end

#system_typesArray<Google::Apis::ServiceusageV1beta1::Type>

A list of all proto message types included in this API service. It serves similar purpose as [google.api.Service.types], except that these types are not needed by user-defined APIs. Therefore, they will not show up in the generated discovery doc. This field should only be used to define system APIs in ESF. Corresponds to the JSON property systemTypes



1705
1706
1707
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 1705

def system_types
  @system_types
end

#titleString

The product title for this service. Corresponds to the JSON property title

Returns:

  • (String)


1710
1711
1712
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 1710

def title
  @title
end

#typesArray<Google::Apis::ServiceusageV1beta1::Type>

A list of all proto message types included in this API service. Types referenced directly or indirectly by the apis are automatically included. Messages which are not referenced but shall be included, such as types used by the google.protobuf.Any type, should be listed here by name. Example: types:

  • name: google.protobuf.Int32 Corresponds to the JSON property types


1721
1722
1723
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 1721

def types
  @types
end

#usageGoogle::Apis::ServiceusageV1beta1::Usage

Configuration controlling usage of a service. Corresponds to the JSON property usage



1726
1727
1728
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 1726

def usage
  @usage
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 1733

def update!(**args)
  @apis = args[:apis] if args.key?(:apis)
  @authentication = args[:authentication] if args.key?(:authentication)
  @backend = args[:backend] if args.key?(:backend)
  @billing = args[:billing] if args.key?(:billing)
  @config_version = args[:config_version] if args.key?(:config_version)
  @context = args[:context] if args.key?(:context)
  @control = args[:control] if args.key?(:control)
  @custom_error = args[:custom_error] if args.key?(:custom_error)
  @documentation = args[:documentation] if args.key?(:documentation)
  @endpoints = args[:endpoints] if args.key?(:endpoints)
  @enums = args[:enums] if args.key?(:enums)
  @http = args[:http] if args.key?(:http)
  @id = args[:id] if args.key?(:id)
  @logging = args[:logging] if args.key?(:logging)
  @logs = args[:logs] if args.key?(:logs)
  @metrics = args[:metrics] if args.key?(:metrics)
  @monitored_resources = args[:monitored_resources] if args.key?(:monitored_resources)
  @monitoring = args[:monitoring] if args.key?(:monitoring)
  @name = args[:name] if args.key?(:name)
  @producer_project_id = args[:producer_project_id] if args.key?(:producer_project_id)
  @quota = args[:quota] if args.key?(:quota)
  @source_info = args[:source_info] if args.key?(:source_info)
  @system_parameters = args[:system_parameters] if args.key?(:system_parameters)
  @system_types = args[:system_types] if args.key?(:system_types)
  @title = args[:title] if args.key?(:title)
  @types = args[:types] if args.key?(:types)
  @usage = args[:usage] if args.key?(:usage)
end