class Google::Apis::ServicemanagementV1::ManagedService
The full representation of a Service
that is managed by Google
Service
Management.
Attributes
producer_project_id[RW]
ID of the project that produces and owns this service. Corresponds to the JSON property `producerProjectId` @return [String]
service_name[RW]
The name of the service. See the [overview](/service-management/overview) for naming requirements. Corresponds to the JSON property `serviceName` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/servicemanagement_v1/classes.rb, line 2088 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/servicemanagement_v1/classes.rb, line 2093 def update!(**args) @producer_project_id = args[:producer_project_id] if args.key?(:producer_project_id) @service_name = args[:service_name] if args.key?(:service_name) end