google-apis-chromepolicy_v1 0.25.0 → 0.26.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: aa28c7592c288f13a0733d2ed0fa342251f9b5cae15b025092770b27e1ced7f0
4
- data.tar.gz: ee00ef073254ab54cd92d82215ff71ad0997c24704571524013cfbe623a8136e
3
+ metadata.gz: ef4010cf9ece45819dff5e5d8ace5406b4c6c38f37b1043688a2dced7296e909
4
+ data.tar.gz: bb747877be23d51a82c747498c7c7ef2bbaadf5cc0d0585ff65149e525b4625a
5
5
  SHA512:
6
- metadata.gz: 59142d8278c8f950bdb39c70a9296cfcd30af7e22997f331b3919a472580b57762991bb2a04dabd254d40d3b59b055f1ea7bf965e50704736e606592c94fb94b
7
- data.tar.gz: 1c5f567553193e9b9ff66b898bd1f8c532cb76538537165a61abfbebfbe97e953adeec933680999575e557bcbde85664aa015fce4750e9794141da915b6197e8
6
+ metadata.gz: 3117a61d914fb1515f3a7666748de09f49a4ddb4afc6e3273f1e3f4a7efe14583c1ec4c71d1613e2706feda1a718fe18469fb675d2c3c938d2031b821dced4f6
7
+ data.tar.gz: '067288e33a97984d9f37ceefb94aade4db02bbfd0a571435469e6070c60cc361cc3080f5ca3a32424d3ee3e027101e03e44f194225a84c90f0589bdfd54dc99e'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-chromepolicy_v1
2
2
 
3
+ ### v0.26.0 (2022-09-10)
4
+
5
+ * Regenerated from discovery document revision 20220908
6
+
3
7
  ### v0.25.0 (2022-08-31)
4
8
 
5
9
  * Regenerated from discovery document revision 20220827
@@ -516,7 +516,8 @@ module Google
516
516
  class GoogleChromePolicyV1PolicySchemaFieldDescription
517
517
  include Google::Apis::Core::Hashable
518
518
 
519
- # Output only. The description for the field.
519
+ # Deprecated. Use name and field_description instead. The description for the
520
+ # field.
520
521
  # Corresponds to the JSON property `description`
521
522
  # @return [String]
522
523
  attr_accessor :description
@@ -533,6 +534,11 @@ module Google
533
534
  # @return [Array<Google::Apis::ChromepolicyV1::GoogleChromePolicyV1PolicySchemaFieldDependencies>]
534
535
  attr_accessor :field_dependencies
535
536
 
537
+ # Output only. The description of the field.
538
+ # Corresponds to the JSON property `fieldDescription`
539
+ # @return [String]
540
+ attr_accessor :field_description
541
+
536
542
  # Output only. Any input constraints associated on the values for the field.
537
543
  # Corresponds to the JSON property `inputConstraint`
538
544
  # @return [String]
@@ -544,6 +550,11 @@ module Google
544
550
  # @return [Array<Google::Apis::ChromepolicyV1::GoogleChromePolicyV1PolicySchemaFieldKnownValueDescription>]
545
551
  attr_accessor :known_value_descriptions
546
552
 
553
+ # Output only. The name of the field.
554
+ # Corresponds to the JSON property `name`
555
+ # @return [String]
556
+ attr_accessor :name
557
+
547
558
  # Output only. Provides the description of the fields nested in this field, if
548
559
  # the field is a message type that defines multiple fields.
549
560
  # Corresponds to the JSON property `nestedFieldDescriptions`
@@ -565,8 +576,10 @@ module Google
565
576
  @description = args[:description] if args.key?(:description)
566
577
  @field = args[:field] if args.key?(:field)
567
578
  @field_dependencies = args[:field_dependencies] if args.key?(:field_dependencies)
579
+ @field_description = args[:field_description] if args.key?(:field_description)
568
580
  @input_constraint = args[:input_constraint] if args.key?(:input_constraint)
569
581
  @known_value_descriptions = args[:known_value_descriptions] if args.key?(:known_value_descriptions)
582
+ @name = args[:name] if args.key?(:name)
570
583
  @nested_field_descriptions = args[:nested_field_descriptions] if args.key?(:nested_field_descriptions)
571
584
  @required_items = args[:required_items] if args.key?(:required_items)
572
585
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ChromepolicyV1
18
18
  # Version of the google-apis-chromepolicy_v1 gem
19
- GEM_VERSION = "0.25.0"
19
+ GEM_VERSION = "0.26.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220827"
25
+ REVISION = "20220908"
26
26
  end
27
27
  end
28
28
  end
@@ -390,9 +390,11 @@ module Google
390
390
  property :field, as: 'field'
391
391
  collection :field_dependencies, as: 'fieldDependencies', class: Google::Apis::ChromepolicyV1::GoogleChromePolicyV1PolicySchemaFieldDependencies, decorator: Google::Apis::ChromepolicyV1::GoogleChromePolicyV1PolicySchemaFieldDependencies::Representation
392
392
 
393
+ property :field_description, as: 'fieldDescription'
393
394
  property :input_constraint, as: 'inputConstraint'
394
395
  collection :known_value_descriptions, as: 'knownValueDescriptions', class: Google::Apis::ChromepolicyV1::GoogleChromePolicyV1PolicySchemaFieldKnownValueDescription, decorator: Google::Apis::ChromepolicyV1::GoogleChromePolicyV1PolicySchemaFieldKnownValueDescription::Representation
395
396
 
397
+ property :name, as: 'name'
396
398
  collection :nested_field_descriptions, as: 'nestedFieldDescriptions', class: Google::Apis::ChromepolicyV1::GoogleChromePolicyV1PolicySchemaFieldDescription, decorator: Google::Apis::ChromepolicyV1::GoogleChromePolicyV1PolicySchemaFieldDescription::Representation
397
399
 
398
400
  collection :required_items, as: 'requiredItems', class: Google::Apis::ChromepolicyV1::GoogleChromePolicyV1PolicySchemaRequiredItems, decorator: Google::Apis::ChromepolicyV1::GoogleChromePolicyV1PolicySchemaRequiredItems::Representation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-chromepolicy_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.25.0
4
+ version: 0.26.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-09-05 00:00:00.000000000 Z
11
+ date: 2022-09-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-chromepolicy_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-chromepolicy_v1/v0.25.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-chromepolicy_v1/v0.26.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-chromepolicy_v1
63
63
  post_install_message:
64
64
  rdoc_options: []