Class: Google::Apis::NetworkservicesV1::ServiceBinding
- Inherits:
-
Object
- Object
- Google::Apis::NetworkservicesV1::ServiceBinding
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/networkservices_v1/classes.rb,
lib/google/apis/networkservices_v1/representations.rb,
lib/google/apis/networkservices_v1/representations.rb
Overview
ServiceBinding is the resource that defines a Service Directory Service to be used in a BackendService resource.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#description ⇒ String
Optional.
-
#labels ⇒ Hash<String,String>
Optional.
-
#name ⇒ String
Identifier.
-
#service ⇒ String
Required.
-
#service_id ⇒ String
Output only.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ServiceBinding
constructor
A new instance of ServiceBinding.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ServiceBinding
Returns a new instance of ServiceBinding.
3092 3093 3094 |
# File 'lib/google/apis/networkservices_v1/classes.rb', line 3092 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. The timestamp when the resource was created.
Corresponds to the JSON property createTime
3055 3056 3057 |
# File 'lib/google/apis/networkservices_v1/classes.rb', line 3055 def create_time @create_time end |
#description ⇒ String
Optional. A free-text description of the resource. Max length 1024 characters.
Corresponds to the JSON property description
3060 3061 3062 |
# File 'lib/google/apis/networkservices_v1/classes.rb', line 3060 def description @description end |
#labels ⇒ Hash<String,String>
Optional. Set of label tags associated with the ServiceBinding resource.
Corresponds to the JSON property labels
3065 3066 3067 |
# File 'lib/google/apis/networkservices_v1/classes.rb', line 3065 def labels @labels end |
#name ⇒ String
Identifier. Name of the ServiceBinding resource. It matches pattern projects/*
/locations/global/serviceBindings/service_binding_name
.
Corresponds to the JSON property name
3071 3072 3073 |
# File 'lib/google/apis/networkservices_v1/classes.rb', line 3071 def name @name end |
#service ⇒ String
Required. The full Service Directory Service name of the format projects//
locations//namespaces//services/
Corresponds to the JSON property service
3077 3078 3079 |
# File 'lib/google/apis/networkservices_v1/classes.rb', line 3077 def service @service end |
#service_id ⇒ String
Output only. The unique identifier of the Service Directory Service against
which the Service Binding resource is validated. This is populated when the
Service Binding resource is used in another resource (like Backend Service).
This is of the UUID4 format.
Corresponds to the JSON property serviceId
3085 3086 3087 |
# File 'lib/google/apis/networkservices_v1/classes.rb', line 3085 def service_id @service_id end |
#update_time ⇒ String
Output only. The timestamp when the resource was updated.
Corresponds to the JSON property updateTime
3090 3091 3092 |
# File 'lib/google/apis/networkservices_v1/classes.rb', line 3090 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3097 3098 3099 3100 3101 3102 3103 3104 3105 |
# File 'lib/google/apis/networkservices_v1/classes.rb', line 3097 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @description = args[:description] if args.key?(:description) @labels = args[:labels] if args.key?(:labels) @name = args[:name] if args.key?(:name) @service = args[:service] if args.key?(:service) @service_id = args[:service_id] if args.key?(:service_id) @update_time = args[:update_time] if args.key?(:update_time) end |