Class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaTenant
- Inherits:
-
Object
- Object
- Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaTenant
- 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
-
#create_time ⇒ String
Output only.
-
#display_name ⇒ String
Optional.
-
#google_group_email ⇒ String
Optional.
-
#google_group_id ⇒ String
Optional.
-
#name ⇒ String
Output only.
-
#partner_metadata ⇒ Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerMetadata
Metadata associated with PartnerTenant and is provided by the Partner.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudBeyondcorpPartnerservicesV1alphaTenant
constructor
A new instance of GoogleCloudBeyondcorpPartnerservicesV1alphaTenant.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudBeyondcorpPartnerservicesV1alphaTenant
Returns a new instance of GoogleCloudBeyondcorpPartnerservicesV1alphaTenant.
2407 2408 2409 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2407 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. Timestamp when the resource was created.
Corresponds to the JSON property createTime
2373 2374 2375 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2373 def create_time @create_time end |
#display_name ⇒ String
Optional. An arbitrary caller-provided name for the Tenant. Cannot exceed 64
characters.
Corresponds to the JSON property displayName
2379 2380 2381 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2379 def display_name @display_name end |
#google_group_email ⇒ String
Optional. Google group email to which the Tenant is enabled.
Corresponds to the JSON property googleGroupEmail
2384 2385 2386 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2384 def google_group_email @google_group_email end |
#google_group_id ⇒ String
Optional. Google group ID to which the Tenant is enabled.
Corresponds to the JSON property googleGroupId
2389 2390 2391 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2389 def google_group_id @google_group_id end |
#name ⇒ String
Output only. Unique resource name of the Tenant. The name is ignored when
creating Tenant.
Corresponds to the JSON property name
2395 2396 2397 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2395 def name @name end |
#partner_metadata ⇒ Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerMetadata
Metadata associated with PartnerTenant and is provided by the Partner.
Corresponds to the JSON property partnerMetadata
2400 2401 2402 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2400 def @partner_metadata end |
#update_time ⇒ String
Output only. Timestamp when the resource was last modified.
Corresponds to the JSON property updateTime
2405 2406 2407 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2405 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2412 2413 2414 2415 2416 2417 2418 2419 2420 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2412 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 |