Class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaTenant

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

Overview

Information about a BeyoncCorp Enterprise Tenant.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudBeyondcorpPartnerservicesV1alphaTenant

Returns a new instance of GoogleCloudBeyondcorpPartnerservicesV1alphaTenant.



2246
2247
2248
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2246

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

Instance Attribute Details

#create_timeString

Output only. Timestamp when the resource was created. Corresponds to the JSON property createTime

Returns:

  • (String)


2212
2213
2214
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2212

def create_time
  @create_time
end

#display_nameString

Optional. An arbitrary caller-provided name for the Tenant. Cannot exceed 64 characters. Corresponds to the JSON property displayName

Returns:

  • (String)


2218
2219
2220
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2218

def display_name
  @display_name
end

#google_group_emailString

Optional. Google group email to which the Tenant is enabled. Corresponds to the JSON property googleGroupEmail

Returns:

  • (String)


2223
2224
2225
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2223

def google_group_email
  @google_group_email
end

#google_group_idString

Optional. Google group ID to which the Tenant is enabled. Corresponds to the JSON property googleGroupId

Returns:

  • (String)


2228
2229
2230
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2228

def google_group_id
  @google_group_id
end

#nameString

Output only. Unique resource name of the Tenant. The name is ignored when creating Tenant. Corresponds to the JSON property name

Returns:

  • (String)


2234
2235
2236
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2234

def name
  @name
end

#partner_metadataGoogle::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerMetadata

Metadata associated with PartnerTenant and is provided by the Partner. Corresponds to the JSON property partnerMetadata



2239
2240
2241
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2239

def 
  @partner_metadata
end

#update_timeString

Output only. Timestamp when the resource was last modified. Corresponds to the JSON property updateTime

Returns:

  • (String)


2244
2245
2246
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2244

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2251
2252
2253
2254
2255
2256
2257
2258
2259
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2251

def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @display_name = args[:display_name] if args.key?(:display_name)
  @google_group_email = args[:google_group_email] if args.key?(:google_group_email)
  @google_group_id = args[:google_group_id] if args.key?(:google_group_id)
  @name = args[:name] if args.key?(:name)
  @partner_metadata = args[:partner_metadata] if args.key?(:partner_metadata)
  @update_time = args[:update_time] if args.key?(:update_time)
end