Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityAssessmentResultResourceApiHubDeploymentDetails

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

Overview

Additional details if the resource is an API Hub deployment.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1SecurityAssessmentResultResourceApiHubDeploymentDetails

Returns a new instance of GoogleCloudApigeeV1SecurityAssessmentResultResourceApiHubDeploymentDetails.



11132
11133
11134
# File 'lib/google/apis/apigee_v1/classes.rb', line 11132

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

Instance Attribute Details

#display_nameString

The display name of the API Hub deployment. Corresponds to the JSON property displayName

Returns:

  • (String)


11109
11110
11111
# File 'lib/google/apis/apigee_v1/classes.rb', line 11109

def display_name
  @display_name
end

#gatewayString

The gateway for the API Hub deployment. Format: projects/project/locations/ location/plugins/plugin/instances/instance` Corresponds to the JSON propertygateway`

Returns:

  • (String)


11115
11116
11117
# File 'lib/google/apis/apigee_v1/classes.rb', line 11115

def gateway
  @gateway
end

#gateway_typeString

The gateway type for the API Hub deployment. Corresponds to the JSON property gatewayType

Returns:

  • (String)


11120
11121
11122
# File 'lib/google/apis/apigee_v1/classes.rb', line 11120

def gateway_type
  @gateway_type
end

#resource_uriString

The resource uri for the API Hub deployment. Corresponds to the JSON property resourceUri

Returns:

  • (String)


11125
11126
11127
# File 'lib/google/apis/apigee_v1/classes.rb', line 11125

def resource_uri
  @resource_uri
end

#source_projectString

The source project for the API Hub deployment. Corresponds to the JSON property sourceProject

Returns:

  • (String)


11130
11131
11132
# File 'lib/google/apis/apigee_v1/classes.rb', line 11130

def source_project
  @source_project
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



11137
11138
11139
11140
11141
11142
11143
# File 'lib/google/apis/apigee_v1/classes.rb', line 11137

def update!(**args)
  @display_name = args[:display_name] if args.key?(:display_name)
  @gateway = args[:gateway] if args.key?(:gateway)
  @gateway_type = args[:gateway_type] if args.key?(:gateway_type)
  @resource_uri = args[:resource_uri] if args.key?(:resource_uri)
  @source_project = args[:source_project] if args.key?(:source_project)
end