Class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerTenant

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 PartnerTenant.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerTenant

Returns a new instance of GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerTenant.



2098
2099
2100
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2098

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)


2069
2070
2071
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2069

def create_time
  @create_time
end

#display_nameString

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

Returns:

  • (String)


2075
2076
2077
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2075

def display_name
  @display_name
end

#groupGoogle::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaGroup

Message to capture group information Corresponds to the JSON property group



2080
2081
2082
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2080

def group
  @group
end

#nameString

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

Returns:

  • (String)


2086
2087
2088
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2086

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



2091
2092
2093
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2091

def 
  @partner_metadata
end

#update_timeString

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

Returns:

  • (String)


2096
2097
2098
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2096

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2103
2104
2105
2106
2107
2108
2109
2110
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2103

def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @display_name = args[:display_name] if args.key?(:display_name)
  @group = args[:group] if args.key?(:group)
  @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