Class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerTenant
- Inherits:
-
Object
- Object
- Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerTenant
- 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
-
#create_time ⇒ String
Output only.
-
#display_name ⇒ String
Optional.
-
#group ⇒ Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaGroup
Message to capture group information Corresponds to the JSON property
group. -
#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) ⇒ GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerTenant
constructor
A new instance of GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerTenant.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerTenant
Returns a new instance of GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerTenant.
2084 2085 2086 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2084 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
2055 2056 2057 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2055 def create_time @create_time end |
#display_name ⇒ String
Optional. An arbitrary caller-provided name for the PartnerTenant. Cannot
exceed 64 characters.
Corresponds to the JSON property displayName
2061 2062 2063 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2061 def display_name @display_name end |
#group ⇒ Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaGroup
Message to capture group information
Corresponds to the JSON property group
2066 2067 2068 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2066 def group @group end |
#name ⇒ String
Output only. Unique resource name of the PartnerTenant. The name is ignored
when creating PartnerTenant.
Corresponds to the JSON property name
2072 2073 2074 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2072 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
2077 2078 2079 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2077 def @partner_metadata end |
#update_time ⇒ String
Output only. Timestamp when the resource was last modified.
Corresponds to the JSON property updateTime
2082 2083 2084 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2082 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2089 2090 2091 2092 2093 2094 2095 2096 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2089 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 |