Class: Google::Apis::ConnectorsV1::Provider
- Inherits:
-
Object
- Object
- Google::Apis::ConnectorsV1::Provider
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/connectors_v1/classes.rb,
lib/google/apis/connectors_v1/representations.rb,
lib/google/apis/connectors_v1/representations.rb
Overview
Provider indicates the owner who provides the connectors.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#description ⇒ String
Output only.
-
#display_name ⇒ String
Output only.
-
#documentation_uri ⇒ String
Output only.
-
#external_uri ⇒ String
Output only.
-
#labels ⇒ Hash<String,String>
Output only.
-
#launch_stage ⇒ String
Output only.
-
#name ⇒ String
Output only.
-
#update_time ⇒ String
Output only.
-
#web_assets_location ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Provider
constructor
A new instance of Provider.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Provider
Returns a new instance of Provider.
4299 4300 4301 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 4299 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. Created time.
Corresponds to the JSON property createTime
4248 4249 4250 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 4248 def create_time @create_time end |
#description ⇒ String
Output only. Description of the resource.
Corresponds to the JSON property description
4253 4254 4255 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 4253 def description @description end |
#display_name ⇒ String
Output only. Display name.
Corresponds to the JSON property displayName
4258 4259 4260 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 4258 def display_name @display_name end |
#documentation_uri ⇒ String
Output only. Link to documentation page.
Corresponds to the JSON property documentationUri
4263 4264 4265 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 4263 def documentation_uri @documentation_uri end |
#external_uri ⇒ String
Output only. Link to external page.
Corresponds to the JSON property externalUri
4268 4269 4270 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 4268 def external_uri @external_uri end |
#labels ⇒ Hash<String,String>
Output only. Resource labels to represent user-provided metadata. Refer to
cloud documentation on labels for more details. https://cloud.google.com/
compute/docs/labeling-resources
Corresponds to the JSON property labels
4275 4276 4277 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 4275 def labels @labels end |
#launch_stage ⇒ String
Output only. Flag to mark the version indicating the launch stage.
Corresponds to the JSON property launchStage
4280 4281 4282 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 4280 def launch_stage @launch_stage end |
#name ⇒ String
Output only. Resource name of the Provider. Format: projects/project/
locations/location/providers/provider Only global location is supported
for Provider resource.
Corresponds to the JSON property name
4287 4288 4289 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 4287 def name @name end |
#update_time ⇒ String
Output only. Updated time.
Corresponds to the JSON property updateTime
4292 4293 4294 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 4292 def update_time @update_time end |
#web_assets_location ⇒ String
Output only. Cloud storage location of icons etc consumed by UI.
Corresponds to the JSON property webAssetsLocation
4297 4298 4299 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 4297 def web_assets_location @web_assets_location end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 4304 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @description = args[:description] if args.key?(:description) @display_name = args[:display_name] if args.key?(:display_name) @documentation_uri = args[:documentation_uri] if args.key?(:documentation_uri) @external_uri = args[:external_uri] if args.key?(:external_uri) @labels = args[:labels] if args.key?(:labels) @launch_stage = args[:launch_stage] if args.key?(:launch_stage) @name = args[:name] if args.key?(:name) @update_time = args[:update_time] if args.key?(:update_time) @web_assets_location = args[:web_assets_location] if args.key?(:web_assets_location) end |