Class: Google::Apis::ProdTtSasportalV1alpha1::SasPortalProvisionDeploymentRequest
- Inherits:
-
Object
- Object
- Google::Apis::ProdTtSasportalV1alpha1::SasPortalProvisionDeploymentRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/prod_tt_sasportal_v1alpha1/classes.rb,
lib/google/apis/prod_tt_sasportal_v1alpha1/representations.rb,
lib/google/apis/prod_tt_sasportal_v1alpha1/representations.rb
Overview
Request for [ProvisionDeployment]. [spectrum.sas.portal.v1alpha1.Provisioning. ProvisionDeployment]. GCP Project, Organization Info, and caller’s GAIA ID should be retrieved from the RPC handler, and used as inputs to create a new SAS organization (if not exists) and a new SAS deployment.
Instance Attribute Summary collapse
-
#new_deployment_display_name ⇒ String
Optional.
-
#new_organization_display_name ⇒ String
Optional.
-
#organization_id ⇒ Fixnum
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SasPortalProvisionDeploymentRequest
constructor
A new instance of SasPortalProvisionDeploymentRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SasPortalProvisionDeploymentRequest
Returns a new instance of SasPortalProvisionDeploymentRequest.
1247 1248 1249 |
# File 'lib/google/apis/prod_tt_sasportal_v1alpha1/classes.rb', line 1247 def initialize(**args) update!(**args) end |
Instance Attribute Details
#new_deployment_display_name ⇒ String
Optional. If this field is set, and a new SAS Portal Deployment needs to be
created, its display name will be set to the value of this field.
Corresponds to the JSON property newDeploymentDisplayName
1233 1234 1235 |
# File 'lib/google/apis/prod_tt_sasportal_v1alpha1/classes.rb', line 1233 def new_deployment_display_name @new_deployment_display_name end |
#new_organization_display_name ⇒ String
Optional. If this field is set, and a new SAS Portal Organization needs to be
created, its display name will be set to the value of this field.
Corresponds to the JSON property newOrganizationDisplayName
1239 1240 1241 |
# File 'lib/google/apis/prod_tt_sasportal_v1alpha1/classes.rb', line 1239 def new_organization_display_name @new_organization_display_name end |
#organization_id ⇒ Fixnum
Optional. If this field is set then a new deployment will be created under the
organization specified by this id.
Corresponds to the JSON property organizationId
1245 1246 1247 |
# File 'lib/google/apis/prod_tt_sasportal_v1alpha1/classes.rb', line 1245 def organization_id @organization_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1252 1253 1254 1255 1256 |
# File 'lib/google/apis/prod_tt_sasportal_v1alpha1/classes.rb', line 1252 def update!(**args) @new_deployment_display_name = args[:new_deployment_display_name] if args.key?(:new_deployment_display_name) @new_organization_display_name = args[:new_organization_display_name] if args.key?(:new_organization_display_name) @organization_id = args[:organization_id] if args.key?(:organization_id) end |