Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityAssessmentResultResourceApiHubDeploymentDetails
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityAssessmentResultResourceApiHubDeploymentDetails
- 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
-
#display_name ⇒ String
The display name of the API Hub deployment.
-
#gateway ⇒ String
The gateway for the API Hub deployment.
-
#gateway_type ⇒ String
The gateway type for the API Hub deployment.
-
#resource_uri ⇒ String
The resource uri for the API Hub deployment.
-
#source_project ⇒ String
The source project for the API Hub deployment.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1SecurityAssessmentResultResourceApiHubDeploymentDetails
constructor
A new instance of GoogleCloudApigeeV1SecurityAssessmentResultResourceApiHubDeploymentDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1SecurityAssessmentResultResourceApiHubDeploymentDetails
Returns a new instance of GoogleCloudApigeeV1SecurityAssessmentResultResourceApiHubDeploymentDetails.
11199 11200 11201 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 11199 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
The display name of the API Hub deployment.
Corresponds to the JSON property displayName
11176 11177 11178 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 11176 def display_name @display_name end |
#gateway ⇒ String
The gateway for the API Hub deployment. Format: projects/project/locations/
location/plugins/plugin/instances/instance`
Corresponds to the JSON propertygateway`
11182 11183 11184 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 11182 def gateway @gateway end |
#gateway_type ⇒ String
The gateway type for the API Hub deployment.
Corresponds to the JSON property gatewayType
11187 11188 11189 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 11187 def gateway_type @gateway_type end |
#resource_uri ⇒ String
The resource uri for the API Hub deployment.
Corresponds to the JSON property resourceUri
11192 11193 11194 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 11192 def resource_uri @resource_uri end |
#source_project ⇒ String
The source project for the API Hub deployment.
Corresponds to the JSON property sourceProject
11197 11198 11199 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 11197 def source_project @source_project end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11204 11205 11206 11207 11208 11209 11210 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 11204 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 |