Skip to content

Commit

Permalink
feat(chromepolicy): update the api
Browse files Browse the repository at this point in the history
#### chromepolicy:v1

The following keys were added:
- schemas.GoogleChromePolicyV1PolicySchemaFieldDependencies (Total Keys: 4)
  • Loading branch information
yoshi-automation committed Aug 3, 2021
1 parent 8ad80b2 commit 5654776
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
12 changes: 12 additions & 0 deletions docs/dyn/chromepolicy_v1.customers.policySchemas.html
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,12 @@ <h3>Method Details</h3>
{ # Provides detailed information for a particular field that is part of a PolicySchema.
&quot;description&quot;: &quot;A String&quot;, # Output only. The description for the field.
&quot;field&quot;: &quot;A String&quot;, # Output only. The name of the field for associated with this description.
&quot;fieldDependencies&quot;: [ # Output only. Provides a list of fields and the values they must have for this field to be allowed to be set.
{ # The field and the value it must have for another field to be allowed to be set.
&quot;sourceField&quot;: &quot;A String&quot;, # The source field which this field depends on.
&quot;sourceFieldValue&quot;: &quot;A String&quot;, # The value which the source field must have for this field to be allowed to be set.
},
],
&quot;inputConstraint&quot;: &quot;A String&quot;, # Output only. Any input constraints associated on the values for the field.
&quot;knownValueDescriptions&quot;: [ # Output only. If the field has a set of know values, this field will provide a description for these values.
{ # Provides detailed information about a known value that is allowed for a particular field in a PolicySchema.
Expand Down Expand Up @@ -287,6 +293,12 @@ <h3>Method Details</h3>
{ # Provides detailed information for a particular field that is part of a PolicySchema.
&quot;description&quot;: &quot;A String&quot;, # Output only. The description for the field.
&quot;field&quot;: &quot;A String&quot;, # Output only. The name of the field for associated with this description.
&quot;fieldDependencies&quot;: [ # Output only. Provides a list of fields and the values they must have for this field to be allowed to be set.
{ # The field and the value it must have for another field to be allowed to be set.
&quot;sourceField&quot;: &quot;A String&quot;, # The source field which this field depends on.
&quot;sourceFieldValue&quot;: &quot;A String&quot;, # The value which the source field must have for this field to be allowed to be set.
},
],
&quot;inputConstraint&quot;: &quot;A String&quot;, # Output only. Any input constraints associated on the values for the field.
&quot;knownValueDescriptions&quot;: [ # Output only. If the field has a set of know values, this field will provide a description for these values.
{ # Provides detailed information about a known value that is allowed for a particular field in a PolicySchema.
Expand Down
25 changes: 24 additions & 1 deletion googleapiclient/discovery_cache/documents/chromepolicy.v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@
}
}
},
"revision": "20210723",
"revision": "20210731",
"rootUrl": "https://chromepolicy.googleapis.com/",
"schemas": {
"GoogleChromePolicyV1AdditionalTargetKeyName": {
Expand Down Expand Up @@ -485,6 +485,21 @@
},
"type": "object"
},
"GoogleChromePolicyV1PolicySchemaFieldDependencies": {
"description": "The field and the value it must have for another field to be allowed to be set.",
"id": "GoogleChromePolicyV1PolicySchemaFieldDependencies",
"properties": {
"sourceField": {
"description": "The source field which this field depends on.",
"type": "string"
},
"sourceFieldValue": {
"description": "The value which the source field must have for this field to be allowed to be set.",
"type": "string"
}
},
"type": "object"
},
"GoogleChromePolicyV1PolicySchemaFieldDescription": {
"description": "Provides detailed information for a particular field that is part of a PolicySchema.",
"id": "GoogleChromePolicyV1PolicySchemaFieldDescription",
Expand All @@ -499,6 +514,14 @@
"readOnly": true,
"type": "string"
},
"fieldDependencies": {
"description": "Output only. Provides a list of fields and the values they must have for this field to be allowed to be set.",
"items": {
"$ref": "GoogleChromePolicyV1PolicySchemaFieldDependencies"
},
"readOnly": true,
"type": "array"
},
"inputConstraint": {
"description": "Output only. Any input constraints associated on the values for the field.",
"readOnly": true,
Expand Down

0 comments on commit 5654776

Please sign in to comment.