Class: Google::Apis::ChromepolicyV1::GoogleChromePolicyV1PolicySchema

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

Overview

Resource representing a policy schema. Next ID: 12

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleChromePolicyV1PolicySchema

Returns a new instance of GoogleChromePolicyV1PolicySchema.



291
292
293
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 291

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

Instance Attribute Details

#access_restrictionsArray<String>

Output only. Specific access restrictions related to this policy. Corresponds to the JSON property accessRestrictions

Returns:

  • (Array<String>)


234
235
236
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 234

def access_restrictions
  @access_restrictions
end

#additional_target_key_namesArray<Google::Apis::ChromepolicyV1::GoogleChromePolicyV1AdditionalTargetKeyName>

Output only. Additional key names that will be used to identify the target of the policy value. When specifying a policyTargetKey, each of the additional keys specified here will have to be included in the additionalTargetKeys map. Corresponds to the JSON property additionalTargetKeyNames



241
242
243
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 241

def additional_target_key_names
  @additional_target_key_names
end

#definitionGoogle::Apis::ChromepolicyV1::Proto2FileDescriptorProto

Describes a complete .proto file. Corresponds to the JSON property definition



246
247
248
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 246

def definition
  @definition
end

#field_descriptionsArray<Google::Apis::ChromepolicyV1::GoogleChromePolicyV1PolicySchemaFieldDescription>

Output only. Detailed description of each field that is part of the schema. Corresponds to the JSON property fieldDescriptions



251
252
253
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 251

def field_descriptions
  @field_descriptions
end

#nameString

Format: name=customers/customer/policySchemas/schema_namespace Corresponds to the JSON property name

Returns:

  • (String)


256
257
258
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 256

def name
  @name
end

#noticesArray<Google::Apis::ChromepolicyV1::GoogleChromePolicyV1PolicySchemaNoticeDescription>

Output only. Special notice messages related to setting certain values in certain fields in the schema. Corresponds to the JSON property notices



262
263
264
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 262

def notices
  @notices
end

#policy_api_lifeycleGoogle::Apis::ChromepolicyV1::ChromeCrosDpanelAutosettingsProtoPolicyApiLifecycle

Output only. Current life cycle information. Corresponds to the JSON property policyApiLifeycle



267
268
269
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 267

def policy_api_lifeycle
  @policy_api_lifeycle
end

#policy_descriptionString

Output only. Description about the policy schema for user consumption. Corresponds to the JSON property policyDescription

Returns:

  • (String)


272
273
274
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 272

def policy_description
  @policy_description
end

#schema_nameString

Output only. The fully qualified name of the policy schema. This value is used to fill the field policy_schema in PolicyValue when calling BatchInheritOrgUnitPolicies or BatchModifyOrgUnitPolicies Corresponds to the JSON property schemaName

Returns:

  • (String)


279
280
281
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 279

def schema_name
  @schema_name
end

#support_uriString

Output only. URI to related support article for this schema. Corresponds to the JSON property supportUri

Returns:

  • (String)


284
285
286
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 284

def support_uri
  @support_uri
end

#valid_target_resourcesArray<String>

Output only. Information about applicable target resources for the policy. Corresponds to the JSON property validTargetResources

Returns:

  • (Array<String>)


289
290
291
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 289

def valid_target_resources
  @valid_target_resources
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



296
297
298
299
300
301
302
303
304
305
306
307
308
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 296

def update!(**args)
  @access_restrictions = args[:access_restrictions] if args.key?(:access_restrictions)
  @additional_target_key_names = args[:additional_target_key_names] if args.key?(:additional_target_key_names)
  @definition = args[:definition] if args.key?(:definition)
  @field_descriptions = args[:field_descriptions] if args.key?(:field_descriptions)
  @name = args[:name] if args.key?(:name)
  @notices = args[:notices] if args.key?(:notices)
  @policy_api_lifeycle = args[:policy_api_lifeycle] if args.key?(:policy_api_lifeycle)
  @policy_description = args[:policy_description] if args.key?(:policy_description)
  @schema_name = args[:schema_name] if args.key?(:schema_name)
  @support_uri = args[:support_uri] if args.key?(:support_uri)
  @valid_target_resources = args[:valid_target_resources] if args.key?(:valid_target_resources)
end