Class: Google::Apis::ProdTtSasportalV1alpha1::SasPortalDeployment
- Inherits:
-
Object
- Object
- Google::Apis::ProdTtSasportalV1alpha1::SasPortalDeployment
- 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
The Deployment.
Instance Attribute Summary collapse
-
#display_name ⇒ String
The deployment's display name.
-
#frns ⇒ Array<String>
Output only.
-
#name ⇒ String
Output only.
-
#sas_user_ids ⇒ Array<String>
User ID used by the devices belonging to this deployment.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SasPortalDeployment
constructor
A new instance of SasPortalDeployment.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SasPortalDeployment
Returns a new instance of SasPortalDeployment.
183 184 185 |
# File 'lib/google/apis/prod_tt_sasportal_v1alpha1/classes.rb', line 183 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
The deployment's display name.
Corresponds to the JSON property displayName
165 166 167 |
# File 'lib/google/apis/prod_tt_sasportal_v1alpha1/classes.rb', line 165 def display_name @display_name end |
#frns ⇒ Array<String>
Output only. The FCC Registration Numbers (FRNs) copied from its direct parent.
Corresponds to the JSON property frns
170 171 172 |
# File 'lib/google/apis/prod_tt_sasportal_v1alpha1/classes.rb', line 170 def frns @frns end |
#name ⇒ String
Output only. Resource name.
Corresponds to the JSON property name
175 176 177 |
# File 'lib/google/apis/prod_tt_sasportal_v1alpha1/classes.rb', line 175 def name @name end |
#sas_user_ids ⇒ Array<String>
User ID used by the devices belonging to this deployment. Each deployment
should be associated with one unique user ID.
Corresponds to the JSON property sasUserIds
181 182 183 |
# File 'lib/google/apis/prod_tt_sasportal_v1alpha1/classes.rb', line 181 def sas_user_ids @sas_user_ids end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
188 189 190 191 192 193 |
# File 'lib/google/apis/prod_tt_sasportal_v1alpha1/classes.rb', line 188 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @frns = args[:frns] if args.key?(:frns) @name = args[:name] if args.key?(:name) @sas_user_ids = args[:sas_user_ids] if args.key?(:sas_user_ids) end |